Back

SVG Drawing Match #567

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Singing cactus wearing a sombrero under a starry night sky"

SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="sky" x1="0" x2="0" y1="0" y2="1">
      <stop offset="0" stop-color="#3498db" stop-opacity="1" />
      <stop offset="1" stop-color="#2ecc71" stop-opacity="1" />
    </linearGradient>
    <radialGradient id="cactus" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0" stop-color="#f7dc6f" stop-opacity="1" />
      <stop offset="1" stop-color="#ffd700" stop-opacity="1" />
    </radialGradient>
    <pattern id="sombrero" patternUnits="userSpaceOnUse" width="40" height="40">
      <rect x="0" y="0" width="40" height="40" fill="#e67e73" rx="5" />
      <circle cx="20" cy="20" r="10" fill="#ffd700" />
    </pattern>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="url(#sky)" />
  <circle cx="150" cy="100" r="50" fill="url(#cactus)" />
  <path d="M150,150 C150,170 130,190 110,190 L110,210 M110,190 C90,190 70,170 70,150 L70,130 M70,150 C70,170 90,190 110,190" stroke="#fff" stroke-width="5" fill="none" />
  <rect x="90" y="130" width="40" height="40" fill="url(#sombrero)" rx="5" transform="rotate(20 110 150)" />
  <circle cx="150" cy="150" r="10" fill="#fff" />
  <circle cx="150" cy="150" r="5" fill="#ffd700" />
  <g transform="rotate(20 150 150)">
    <path d="M140,160 C140,170 130,180 120,180 L120,200 M120,180 C110,180 100,170 100,160 L100,140 M100,160 C100,170 110,180 120,180" stroke="#fff" stroke-width="3" fill="none" />
  </g>
  <g transform="rotate(-20 150 150)">
    <path d="M160,160 C160,170 170,180 180,180 L180,200 M180,180 C190,180 200,170 200,160 L200,140 M200,160 C200,170 190,180 180,180" stroke="#fff" stroke-width="3" fill="none" />
  </g>
  <g transform="translate(150 150)">
    <circle cx="-10" cy="-10" r="5" fill="#fff" />
    <circle cx="10" cy="-10" r="5" fill="#fff" />
    <circle cx="0" cy="10" r="5" fill="#fff" />
  </g>
  <g transform="translate(150 150) scale(0.5)">
    <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 150) scale(0.25)">
    <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>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Night Sky Background -->
  <defs>
    <radialGradient id="skyGradient" cx="150" cy="150" r="150" fx="150" fy="0">
      <stop offset="0" style="stop-color:#1a2f38;stop-opacity:1" />
      <stop offset="1" style="stop-color:#0a192f;stop-opacity:1" />
    </radialGradient>
    <pattern id="stars" patternUnits="userSpaceOnUse" width="100" height="100">
      <circle cx="50" cy="50" r="1" fill="white"/>
      <circle cx="90" cy="30" r="1" fill="white"/>
      <circle cx="40" cy="90" r="1" fill="white"/>
      <!-- Add more stars as needed -->
    </pattern>
  </defs>

  <!-- Sky with Stars -->
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  <rect width="300" height="300" fill="url(#stars)"/>

  <!-- Cactus Body -->
  <g transform="translate(150,200)">
    <!-- Cactus Main Body -->
    <ellipse cx="0" cy="0" rx="40" ry="60" fill="#8b9467" stroke="#6a6f4c" stroke-width="2"/>
    <!-- Cactus Arm -->
    <ellipse cx="-35" cy="-40" rx="20" ry="30" fill="#8b9467" stroke="#6a6f4c" stroke-width="2"/>
    <!-- Cactus Arm -->
    <ellipse cx="35" cy="-40" rx="20" ry="30" fill="#8b9467" stroke="#6a6f4c" stroke-width="2"/>
  </g>

  <!-- Sombrero -->
  <path d="M150,80 L130,100 Q150,120 170,100 L170,90 L160,85 L150,80" fill="#9e6b4b" stroke="#6a6f4c" stroke-width="2">
    <animateTransform attributeName="transform" type="rotate" from="0 150 150" to="360 150 150" dur="4s" repeatCount="indefinite"/>
  </path>

  <!-- Cactus Face -->
  <g transform="translate(150,170)">
    <circle cx="-10" cy="-30" r="15" fill="white" stroke="#6a6f4c" stroke-width="2"/>
    <circle cx="10" cy="-30" r="15" fill="white" stroke="#6a6f4c" stroke-width="2"/>
    <path d="M-20,-40 Q0,-45 20,-40" fill="#6a6f4c"/>
  </g>

  <!-- Singing Notes -->
  <g transform="translate(220,170)" opacity="0.8">
    <path d="M0,0 Q10,-20 20,0" fill="#ffd700"/>
    <circle cx="15" cy="-15" r="5" fill="#ffd700"/>
    <path d="M25,0 Q35,-15 45,0" fill="#ffd700"/>
    <circle cx="40" cy="-7.5" r="5" fill="#ffd700"/>
  </g>

  <!-- Ground -->
  <rect x="0" y="250" width="300" height="50" fill="#4a4a4a" opacity="0.3"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Llama-70B Player 2

Judge's Analysis

    Player 2's image effectively captures the prompt by depicting a cactus with a sombrero under a starry night sky.

    The technical quality and composition are solid, with clear and distinct elements.

    In contrast, Player 1's image lacks clarity and does not clearly convey the elements of the prompt, such as the cactus, sombrero, or night sky.

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
17
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
13
Player 2
7
Ellipses

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

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

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

Player 1
5
Player 2
3

Visual Effects Metrics

Gradients

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

Player 1
2
Player 2
1
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2
6

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2
6

Interactivity Metrics

Animations

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

Player 1
Player 2
1
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
6
Player 2
3

Complexity Metrics

Path Commands

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

Player 1
24
Player 2
12
Max Group Nesting

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

Player 1
Player 2
Defs Elements

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

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