Back

SVG Drawing Match #1797

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Socks hanging like holiday stockings on a giant cactus"

SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="cactusGradient" x1="0" x2="0" y1="0" y2="1">
      <stop offset="0" stop-color="#8B9467" />
      <stop offset="1" stop-color="#3E8E41" />
    </linearGradient>
    <radialGradient id="sockGradient" cx="0.5" cy="0.5" r="0.5" fx="0.5" fy="0.5">
      <stop offset="0" stop-color="#FFC5C5" />
      <stop offset="1" stop-color="#FF99CC" />
    </radialGradient>
    <pattern id="cactusPattern" patternUnits="userSpaceOnUse" width="20" height="20">
      <rect x="0" y="0" width="20" height="20" fill="#3E8E41" rx="2" />
    </pattern>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="#F7F7F7" rx="10" />
  <g transform="translate(150 100)">
    <path d="M 0 0 L -50 50 L -50 150 L 0 200 Z" fill="url(#cactusGradient)" />
    <path d="M 0 0 L 50 50 L 50 150 L 0 200 Z" fill="url(#cactusGradient)" />
    <path d="M -50 50 L -25 75 L -50 100 L -50 50 Z" fill="url(#cactusPattern)" />
    <path d="M 50 50 L 25 75 L 50 100 L 50 50 Z" fill="url(#cactusPattern)" />
    <path d="M -25 75 L 25 75 L 25 125 L -25 125 Z" fill="url(#cactusPattern)" />
    <g transform="translate(-50 150)">
      <rect x="0" y="0" width="20" height="50" fill="#FFC5C5" rx="5" />
      <rect x="5" y="5" width="10" height="40" fill="#FFFFFF" rx="5" />
      <rect x="10" y="10" width="5" height="30" fill="#FFC5C5" rx="5" />
    </g>
    <g transform="translate(50 150)">
      <rect x="0" y="0" width="20" height="50" fill="#FF99CC" rx="5" />
      <rect x="5" y="5" width="10" height="40" fill="#FFFFFF" rx="5" />
      <rect x="10" y="10" width="5" height="30" fill="#FF99CC" rx="5" />
    </g>
    <g transform="translate(-25 125)">
      <rect x="0" y="0" width="20" height="50" fill="url(#sockGradient)" rx="5" />
      <rect x="5" y="5" width="10" height="40" fill="#FFFFFF" rx="5" />
      <rect x="10" y="10" width="5" height="30" fill="url(#sockGradient)" rx="5" />
    </g>
    <g transform="translate(25 125)">
      <rect x="0" y="0" width="20" height="50" fill="url(#sockGradient)" rx="5" />
      <rect x="5" y="5" width="10" height="40" fill="#FFFFFF" rx="5" />
      <rect x="10" y="10" width="5" height="30" fill="url(#sockGradient)" rx="5" />
    </g>
  </g>
</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background -->
  <rect width="300" height="300" fill="#7fd7b9" />
  
  <!-- Sun -->
  <circle cx="250" cy="50" r="30" fill="#ffd700" />
  
  <!-- Cactus body -->
  <path d="M150 200 L120 100 L180 100 Z" fill="#206a5d" />
  <path d="M150 200 L135 120 L165 120 Z" fill="#206a5d" />
  <circle cx="150" cy="200" r="15" fill="#206a5d" />
  
  <!-- Socks -->
  <rect x="110" y="150" width="40" height="40" fill="#c94a48" />
  <rect x="160" y="150" width="40" height="40" fill="#c94a48" />
  
  <!-- Decorations on socks -->
  <circle cx="130" cy="170" r="5" fill="#ffd700" />
  <circle cx="170" cy="170" r="5" fill="#ffd700" />
  
  <!-- Hooks -->
  <path d="M130 150 Q140 140 145 150" stroke="#3d291e" stroke-width="2" fill="none" />
  <path d="M170 150 Q180 140 185 150" stroke="#3d291e" stroke-width="2" fill="none" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Llama 3.0 70B (8192) Player 1

Judge's Analysis

    Player 1's submission more accurately depicts the prompt with socks hanging from what resembles a cactus structure.

    The use of pink socks against the green cactus creates a visually appealing contrast, and the geometric design adds a creative touch.

    Player 2's image lacks clarity in representing the concept of a cactus or socks, resulting in less adherence to 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
19
Player 2
11
Rectangles

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

Player 1
14
Player 2
3
Circles

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

Player 1
Player 2
4
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
5
Player 2
4
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
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
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
5
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
25
Player 2
12
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
3
Player 2
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