Back

SVG Drawing Match #757

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A clock melting over a giant, sentient tree stump"

SVG by Llama 3.1 405B Instruct
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background gradient -->
  <defs>
    <linearGradient id="treeGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#964B00" />
      <stop offset="50%" stop-color="#786C3B" />
      <stop offset="100%" stop-color="#3E8E41" />
    </linearGradient>
    <linearGradient id="clockGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#F7DC6F" />
      <stop offset="50%" stop-color="#F2C464" />
      <stop offset="100%" stop-color="#FF9900" />
    </linearGradient>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="url(#treeGradient)" />
  
  <!-- Tree stump -->
  <g transform="translate(120, 150)">
    <ellipse cx="0" cy="0" rx="50" ry="70" fill="#786C3B" />
    <ellipse cx="0" cy="0" rx="40" ry="50" fill="#964B00" />
    <path d="M 0 -70 C 30 -40 50 0 30 40 C 0 70 -30 40 -50 0 C -30 -40 0 -70 Z" fill="#3E8E41" />
    <circle cx="0" cy="0" r="10" fill="#FFF" />
    <g>
      <circle cx="-15" cy="-15" r="5" fill="#FFF" />
      <circle cx="15" cy="-15" r="5" fill="#FFF" />
    </g>
  </g>
  
  <!-- Melting clock -->
  <g transform="translate(150, 120)">
    <path d="M 0 0 C 30 30 50 0 30 -30 C 0 -60 -30 -30 -50 0 C -30 30 0 0 Z" fill="url(#clockGradient)" />
    <path d="M 30 0 C 50 30 30 60 0 30 C -30 0 -50 -30 -30 -60 C 0 -30 30 0 Z" fill="#F7DC6F" opacity="0.5" />
    <path d="M 0 30 C 30 60 50 30 30 0 C 0 -30 -30 0 -50 30 C -30 60 0 30 Z" fill="#FF9900" opacity="0.8" />
    <g>
      <rect x="-5" y="-30" width="10" height="60" fill="#FFF" />
      <rect x="-30" y="-5" width="60" height="10" fill="#FFF" />
    </g>
  </g>
  
  <!-- Melting effect -->
  <g transform="translate(150, 120)">
    <path d="M 0 0 L 30 30 C 50 0 30 -30 0 0 Z" fill="#FF9900" opacity="0.2" />
    <path d="M 30 0 L 60 30 C 30 60 0 30 -30 0 Z" fill="#F7DC6F" opacity="0.3" />
    <path d="M 0 30 L 30 60 C 0 90 -30 60 -60 30 Z" fill="#F2C464" opacity="0.4" />
  </g>
</svg>
SVG by Qwen-2.5-32B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:rgb(255,153,0);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(255,204,0);stop-opacity:1" />
    </linearGradient>
    <linearGradient id="grad2" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:rgb(34,139,34);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(152,251,152);stop-opacity:1" />
    </linearGradient>
    <pattern id="treePattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <circle cx="5" cy="5" r="5" fill="green" />
    </pattern>
  </defs>
  <rect width="100%" height="100%" fill="#F0F8FF" />
  <path d="M150 0 C100 150, 200 150, 150 300 S50 150, 150 0" fill="url(#grad1)" />
  <path d="M150 0 C120 100, 180 100, 150 200 S180 100, 150 0" fill="url(#grad1)" />
  <circle cx="150" cy="100" r="40" fill="url(#grad1)" />
  <circle cx="150" cy="100" r="20" fill="#FFD700" />
  <circle cx="150" cy="100" r="10" fill="black" />
  <path d="M150 0 C120 100, 180 100, 150 200 S180 100, 150 0" stroke="black" stroke-width="2" fill="none" />
  <path d="M150 100 C120 150, 180 150, 150 200 S180 150, 150 100" stroke="black" stroke-width="2" fill="none" />
  <path d="M150 100 C120 150, 180 150, 150 200 S180 150, 150 100" stroke="black" stroke-width="2" fill="none" />
  <rect x="50" y="150" width="200" height="150" rx="50" ry="50" fill="url(#grad2)" />
  <rect x="50" y="200" width="200" height="100" rx="50" ry="50" fill="url(#treePattern)" />
  <path d="M100 150 C100 100, 200 100, 200 150" stroke="black" stroke-width="2" fill="none" />
  <path d="M100 150 C100 120, 200 120, 200 150" stroke="black" stroke-width="2" fill="none" />
  <path d="M100 150 C100 140, 200 140, 200 150" stroke="black" stroke-width="2" fill="none" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Qwen-2.5-32B Player 2

Judge's Analysis

    Player 2's submission better adheres to the prompt with a clear depiction of a tree stump and a clock element.

    The use of patterns and lines effectively conveys the concept of a melting clock and the sentient nature of the stump.

    In contrast, Player 1's image is more abstract and does not clearly represent the elements described in the prompt.

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
15
Player 2
15
Rectangles

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

Player 1
3
Player 2
3
Circles

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

Player 1
3
Player 2
4
Ellipses

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

Player 1
2
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
7
Player 2
8
Groups

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

Player 1
5
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
6

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2
4

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
3
Player 2

Complexity Metrics

Path Commands

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

Player 1
32
Player 2
21
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
2
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