Back

SVG Drawing Match #18

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Octopus knitting a colorful scarf with coral reef yarn"

SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background Gradient -->
  <defs>
    <linearGradient id="gradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#66CCCC" />
      <stop offset="100%" stop-color="#3399FF" />
    </linearGradient>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="url(#gradient)" />
  
  <!-- Coral Reef Yarn -->
  <g id="yarn">
    <rect x="50" y="100" width="200" height="20" fill="#FFC67D" rx="10" />
    <rect x="50" y="120" width="200" height="20" fill="#FF99CC" rx="10" />
    <rect x="50" y="140" width="200" height="20" fill="#CCFF99" rx="10" />
    <rect x="50" y="160" width="200" height="20" fill="#66CCCC" rx="10" />
  </g>
  
  <!-- Octopus -->
  <g id="octopus">
    <circle cx="150" cy="200" r="50" fill="#CC99FF" />
    <g id="tentacles">
      <path d="M 150 200 L 170 220 L 180 200 Z" fill="#CC99FF" />
      <path d="M 150 200 L 180 220 L 190 200 Z" fill="#CC99FF" />
      <path d="M 150 200 L 160 220 L 170 200 Z" fill="#CC99FF" />
      <path d="M 150 200 L 140 220 L 150 200 Z" fill="#CC99FF" />
      <path d="M 150 200 L 130 220 L 140 200 Z" fill="#CC99FF" />
      <path d="M 150 200 L 120 220 L 130 200 Z" fill="#CC99FF" />
      <path d="M 150 200 L 110 220 L 120 200 Z" fill="#CC99FF" />
      <path d="M 150 200 L 100 220 L 110 200 Z" fill="#CC99FF" />
    </g>
    <g id="eyes">
      <circle cx="140" cy="180" r="10" fill="#FFFFFF" />
      <circle cx="160" cy="180" r="10" fill="#FFFFFF" />
      <circle cx="140" cy="180" r="5" fill="#000000" />
      <circle cx="160" cy="180" r="5" fill="#000000" />
    </g>
  </g>
  
  <!-- Knitting Needles -->
  <g id="needles">
    <rect x="100" y="220" width="5" height="50" fill="#FF0000" />
    <rect x="200" y="220" width="5" height="50" fill="#FF0000" />
  </g>
  
  <!-- Scarf -->
  <g id="scarf">
    <path d="M 100 250 L 150 270 L 200 250 Z" fill="#FFC67D" />
    <path d="M 100 270 L 150 290 L 200 270 Z" fill="#FF99CC" />
    <path d="M 100 290 L 150 310 L 200 290 Z" fill="#CCFF99" />
  </g>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background with gradient and subtle pattern -->
  <rect width="300" height="300" fill="url(#bgGradient)" />
  
  <!-- Custom gradient for background -->
  <defs>
    <linearGradient id="bgGradient" x1="0" y1="0" x2="300" y2="300">
      <stop offset="0" style="stop-color:#87CEEB;stop-opacity:1" />
      <stop offset="1" style="stop-color:#4682B4;stop-opacity:1" />
    </linearGradient>
    
    <!-- Coral reef pattern -->
    <path id="coral" d="M150 200 Q200 250 250 200 Q300 150 250 100 Q200 50 150 0 Q100 -50 50 0 Q0 100 50 150 Q100 200 150 200" fill="url(#coralGradient)" />
    <linearGradient id="coralGradient" x1="0" y1="0" x2="100" y2="100">
      <stop offset="0" style="stop-color:#FFB6C1;stop-opacity:1" />
      <stop offset="1" style="stop-color:#8B0A1A;stop-opacity:1" />
    </linearGradient>
    
    <!-- Octopus body parts -->
    <path id="tentacle" d="M0 0 Q50 -50 100 0 Q150 -50 200 0 Q250 50 300 100" stroke="#34495E" stroke-width="8" fill="none" />
    
    <!-- Yarn and scarf -->
    <path id="yarn" d="M150 150 Q200 100 250 150 Q300 200 250 250" stroke="#E74C3C" stroke-width="6" fill="none" />
    <linearGradient id="scarfGradient" x1="0" y1="0" x2="100" y2="100">
      <stop offset="0" style="stop-color:#F1C40F;stop-opacity:1" />
      <stop offset="0.5" style="stop-color:#E74C3C;stop-opacity:1" />
      <stop offset="1" style="stop-color:#C0392B;stop-opacity:1" />
    </linearGradient>
    
    <!-- Knitting needles -->
    <path d="M250 150 L280 140 L300 150" stroke="#2C3E50" stroke-width="4" fill="none" />
    <path d="M230 160 L250 150 L270 140" stroke="#2C3E50" stroke-width="4" fill="none" />
    
    <!-- Fish and sea creatures -->
    <path d="M100 100 Q150 80 200 100 Q250 120 200 140 Q150 160 100 140" fill="#3498DB" />
    <path d="M200 250 Q220 240 240 250 Q260 260 240 270" fill="#E67E22" />
  </defs>

  <!-- Scene composition -->
  <use xlink:href="#coral" transform="translate(0,0)" />
  <use xlink:href="#tentacle" transform="translate(0,100)" />
  <use xlink:href="#yarn" transform="translate(0,0)" />
  <rect x="50" y="50" width="200" height="100" fill="url(#scarfGradient)" rx="20" />
  <use xlink:href="#tentacle" transform="translate(100,100)" />
  <use xlink:href="#tentacle" transform="translate(-100,100)" />
  
  <!-- Additional decorative elements -->
  <circle cx="150" cy="150" r="40" fill="#FFB6C1" opacity="0.5" />
  <circle cx="150" cy="150" r="20" fill="#8B0A1A" opacity="0.8" />
  
  <!-- Bubbles effect -->
  <circle cx="250" cy="50" r="10" fill="#FFFFFF" opacity="0.6" />
  <circle cx="200" cy="80" r="15" fill="#FFFFFF" opacity="0.6" />
  <circle cx="300" cy="100" r="20" fill="#FFFFFF" opacity="0.6" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Llama 3.1 405B Instruct Player 1

Judge's Analysis

    Player 1's image creatively represents the prompt with a playful octopus and a colorful scarf.

    The simple, vibrant design effectively conveys the idea of knitting with coral reef yarn.

    Player 2's image was not available for evaluation, giving Player 1 the advantage.

These metrics analyze technical aspects of both SVG drawings. Look for differences that might explain the judge's decision. Use the "View Code" button above to see the SVG code for each drawing.

Shapes Metrics

Total Shapes

The total number of shape elements (rect, circle, ellipse, line, polygon, polyline, path) in the SVG.

Player 1
23
Player 2
14
Rectangles

The number of rectangle elements (rect) in the SVG.

Player 1
7
Player 2
2
Circles

The number of circle elements (circle) in the SVG.

Player 1
5
Player 2
5
Ellipses

The number of ellipse elements (ellipse) in the SVG.

Player 1
Player 2
Lines

The number of line elements (line) in the SVG.

Player 1
Player 2
Polygons

The number of polygon elements (polygon) in the SVG.

Player 1
Player 2
Paths

The number of path elements (path) in the SVG.

Player 1
11
Player 2
7
Groups

The number of group elements (g) in the SVG.

Player 1
6
Player 2

Visual Effects Metrics

Gradients

The number of gradient definitions (linearGradient, radialGradient) in the SVG.

Player 1
1
Player 2
3
Patterns

The number of pattern definitions (pattern) in the SVG.

Player 1
Player 2
Filters

The number of filter definitions (filter) in the SVG.

Player 1
Player 2
Masks

The number of mask definitions (mask) in the SVG.

Player 1
Player 2
Clip Paths

The number of clipping path definitions (clipPath) in the SVG.

Player 1
Player 2
Elements with Opacity

The number of elements with opacity attributes in the SVG.

Player 1
Player 2
5
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
9
Player 2
8

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
Player 2
5

Complexity Metrics

Path Commands

The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.

Player 1
44
Player 2
27
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

Player 1
1
Player 2
Defs Elements

The number of elements defined within the defs element in the SVG.

Player 1
1
Player 2
10
Use Elements

The number of use elements (use) in the SVG.

Player 1
Player 2
5

Text Metrics

Text Elements

The number of text elements (text) in the SVG.

Player 1
Player 2

AI Judging Process

Creativity

Originality, innovative use of shapes and unique approach to the prompt.

Prompt Adherence

How accurately the SVG captures the essence of the prompt.

Visual Appeal

Aesthetic quality including composition, color usage and overall visual impact.

How does judging work?

SVG drawings are converted to static PNG images for evaluation. The AI judge receives the original prompt and both images, then determines which drawing better fulfills the evaluation criteria without seeing animations, interactivity, or SVG code.

Similar Challenges