Back

SVG Drawing Match #225

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A clock melting over a tree branch, with birds nesting in the clock's hands"

SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Sky -->
  <rect x="0" y="0" width="300" height="300" fill="url(#skyGradient)" rx="20" />
  <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
    <stop offset="0" stop-color="#87CEEB" />
    <stop offset="1" stop-color="#6495ED" />
  </linearGradient>

  <!-- Tree branch -->
  <path d="M150 150 L200 100 L250 150" stroke="#663300" stroke-width="10" fill="none" />
  <path d="M150 150 L200 100 L250 150" stroke="#663300" stroke-width="8" fill="none" />
  <path d="M150 150 L200 100 L250 150" stroke="#663300" stroke-width="6" fill="none" />

  <!-- Clock -->
  <g transform="translate(150 150) scale(0.8)">
    <!-- Clock face -->
    <circle cx="0" cy="0" r="60" fill="#FFFFFF" />
    <circle cx="0" cy="0" r="59" fill="none" stroke="#000000" stroke-width="2" />
    <!-- Clock hands -->
    <path d="M0 0 L-40 -40" stroke="#000000" stroke-width="6" fill="none" />
    <path d="M0 0 L40 40" stroke="#000000" stroke-width="6" fill="none" />
    <!-- Melting effect -->
    <g transform="scale(1.2)">
      <path d="M-40 -40 L-30 -50 L-20 -40 L-30 -30 Z" fill="#FFD700" />
      <path d="M40 40 L30 50 L20 40 L30 30 Z" fill="#FFD700" />
    </g>
    <!-- Birds nesting -->
    <g transform="translate(-40 -40)">
      <circle cx="0" cy="0" r="10" fill="#FFC080" />
      <circle cx="0" cy="0" r="9" fill="none" stroke="#000000" stroke-width="1" />
      <path d="M-5 -5 L5 5" stroke="#000000" stroke-width="1" fill="none" />
      <path d="M-5 5 L5 -5" stroke="#000000" stroke-width="1" fill="none" />
    </g>
    <g transform="translate(40 40)">
      <circle cx="0" cy="0" r="10" fill="#FFC080" />
      <circle cx="0" cy="0" r="9" fill="none" stroke="#000000" stroke-width="1" />
      <path d="M-5 -5 L5 5" stroke="#000000" stroke-width="1" fill="none" />
      <path d="M-5 5 L5 -5" stroke="#000000" stroke-width="1" fill="none" />
    </g>
  </g>
</svg>
SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="clockGradient">
      <stop offset="0%" stop-color="#FF69B4"/>
      <stop offset="100%" stop-color="#4B0082"/>
    </linearGradient>
    <filter id="meltFilter">
      <feGaussianBlur stdDeviation="4"/>
    </filter>
    <pattern id="branchPattern" width="40" height="40" patternUnits="userSpaceOnUse">
      <rect width="40" height="40" fill="#769656"/>
    </pattern>
  </defs>
  <path d="M100,150 Q120,160 140,150 Q160,140 180,150 Q200,160 220,150" stroke="#769656" stroke-width="8" fill="none"/>
  <g transform="translate(150,100)">
    <circle r="60" fill="url(#clockGradient)" filter="url(#meltFilter)"/>
    <circle r="58" fill="none" stroke="#FFD700" stroke-width="2"/>
    <rect x="-20" y="-20" width="40" height="40" rx="20" fill="#FFD700"/>
    <rect x="-10" y="-40" width="20" height="80" rx="10" fill="#FFD700"/>
    <g transform="rotate(60)">
      <rect x="-5" y="-5" width="10" height="100" rx="5" fill="#FFD700"/>
      <circle cx="0" cy="20" r="5" fill="#FF69B4"/>
      <path d="M0,20 Q10,10 20,20" fill="#FFF"/>
    </g>
    <g transform="rotate(-60)">
      <rect x="-5" y="-5" width="10" height="100" rx="5" fill="#FFD700"/>
      <circle cx="0" cy="20" r="5" fill="#FF69B4"/>
      <path d="M0,20 Q-10,10 -20,20" fill="#FFF"/>
    </g>
    <g transform="rotate(180)">
      <rect x="-5" y="-5" width="10" height="100" rx="5" fill="#FFD700"/>
      <circle cx="0" cy="20" r="5" fill="#FF69B4"/>
      <path d="M0,20 Q0,10 0,0" fill="#FFF"/>
    </g>
    <circle cx="0" cy="0" r="5" fill="#FF69B4"/>
    <g transform="rotate(30)">
      <rect x="-5" y="-5" width="10" height="100" rx="5" fill="#FFD700"/>
      <circle cx="0" cy="20" r="5" fill="#FF69B4"/>
      <path d="M0,20 Q5,10 10,20" fill="#FFF"/>
    </g>
  </g>
  <g transform="translate(150,100)">
    <circle cx="30" cy="30" r="10" fill="#FF69B4"/>
    <circle cx="-30" cy="30" r="10" fill="#FF69B4"/>
    <circle cx="0" cy="-30" r="10" fill="#FF69B4"/>
  </g>
  <g transform="translate(150,100)">
    <circle cx="20" cy="20" r="5" fill="#FFF"/>
    <circle cx="-20" cy="20" r="5" fill="#FFF"/>
    <circle cx="0" cy="-20" r="5" fill="#FFF"/>
  </g>
  <g transform="translate(150,100)">
    <circle cx="40" cy="40" r="5" fill="#FF69B4"/>
    <circle cx="-40" cy="40" r="5" fill="#FF69B4"/>
    <circle cx="0" cy="-40" r="5" fill="#FF69B4"/>
  </g>
  <g transform="translate(150,100)">
    <circle cx="30" cy="30" r="5" fill="#FFF"/>
    <circle cx="-30" cy="30" r="5" fill="#FFF"/>
    <circle cx="0" cy="-30" r="5" fill="#FFF"/>
  </g>
  <g transform="translate(150,100)">
    <circle cx="10" cy="10" r="5" fill="#FF69B4"/>
    <circle cx="-10" cy="10" r="5" fill="#FF69B4"/>
    <circle cx="0" cy="-10" r="5" fill="#FF69B4"/>
  </g>
  <path d="M120,180 Q130,190 140,180 Q150,170 160,180" stroke="#769656" stroke-width="6" fill="none"/>
  <g transform="translate(140,170)">
    <circle r="10" fill="#769656"/>
    <circle r="5" fill="#FFD700"/>
  </g>
  <g transform="translate(160,170)">
    <circle r="10" fill="#769656"/>
    <circle r="5" fill="#FFD700"/>
  </g>
  <g transform="translate(150,180)">
    <circle r="10" fill="#769656"/>
    <circle r="5" fill="#FFD700"/>
  </g>
  <g transform="translate(150,190)">
    <circle r="10" fill="#769656"/>
    <circle r="5" fill="#FFD700"/>
  </g>
  <path d="M150,100 Q160,110 170,100 Q180,90 190,100" stroke="#769656" stroke-width="4" fill="none"/>
  <path d="M150,100 Q140,110 130,100 Q120,90 110,100" stroke="#769656" stroke-width="4" fill="none"/>
  <g transform="translate(150,100)">
    <circle r="20" fill="url(#clockGradient)" filter="url(#meltFilter)"/>
  </g>
  <g transform="translate(150,100)">
    <path d="M0,0 Q30,40 60,0" stroke="#FF69B4" stroke-width="4" fill="none"/>
    <path d="M0,0 Q-30,40 -60,0" stroke="#FF69B4" stroke-width="4" fill="none"/>
    <path d="M0,0 Q0,60 0,-60" stroke="#FF69B4" stroke-width="4" fill="none"/>
  </g>
  <g transform="translate(150,100)">
    <circle r="5" fill="#FFF"/>
    <circle r="3" fill="#FF69B4"/>
  </g>
  <g transform="translate(160,100)">
    <circle r="5" fill="#FFF"/>
    <circle r="3" fill="#FF69B4"/>
  </g>
  <g transform="translate(140,100)">
    <circle r="5" fill="#FFF"/>
    <circle r="3" fill="#FF69B4"/>
  </g>
  <g transform="translate(150,90)">
    <circle r="5" fill="#FFF"/>
    <circle r="3" fill="#FF69B4"/>
  </g>
  <g transform="translate(150,110)">
    <circle r="5" fill="#FFF"/>
    <circle r="3" fill="#FF69B4"/>
  </g>
  <g transform="translate(150,120)">
    <circle r="5" fill="#FFF"/>
    <circle r="3" fill="#FF69B4"/>
  </g>
  <g transform="translate(150,80)">
    <circle r="5" fill="#FFF"/>
    <circle r="3" fill="#FF69B4"/>
  </g>
  <g transform="translate(150,70)">
    <circle r="5" fill="#FFF"/>
    <circle r="3" fill="#FF69B4"/>
  </g>
  <g transform="translate(150,130)">
    <circle r="5" fill="#FFF"/>
    <circle r="3" fill="#FF69B4"/>
  </g>
  <g transform="translate(150,140)">
    <circle r="5" fill="#FFF"/>
    <circle r="3" fill="#FF69B4"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Qwen-32B Player 2

Judge's Analysis

    Player 2's submission demonstrates greater creativity and visual appeal with vibrant colors and abstract representation, closely adhering to the prompt's surreal theme.

    The use of color and form suggests a melting clock and nesting birds, while Player 1's image is simpler and lacks the same level of detail and imaginative interpretation.

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
18
Player 2
69
Rectangles

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

Player 1
1
Player 2
7
Circles

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

Player 1
6
Player 2
51
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
11
Groups

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

Player 1
4
Player 2
26

Visual Effects Metrics

Gradients

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

Player 1
1
Player 2
1
Patterns

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

Player 1
Player 2
1
Filters

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

Player 1
Player 2
1
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
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
12
Player 2
8

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2
5

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
4
Player 2
26

Complexity Metrics

Path Commands

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

Player 1
31
Player 2
27
Max Group Nesting

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

Player 1
1
Player 2
1
Defs Elements

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

Player 1
Player 2
3
Use Elements

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

Player 1
Player 2

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