Back

SVG Drawing Match #2273

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A mouse riding a unicycle on a tightrope over a cup of steaming tea."

SVG by GPT-4.1 nano (2025-04-14)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background gradient -->
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#87CEFA"/>
      <stop offset="100%" stop-color="#E0FFFF"/>
    </linearGradient>
    <!-- Steam gradient -->
    <radialGradient id="steamGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#FFFFFF" stop-opacity="0.6"/>
      <stop offset="100%" stop-color="#FFFFFF" stop-opacity="0"/>
    </radialGradient>
    <!-- Cup gradient -->
    <linearGradient id="cupGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#FF6347"/>
      <stop offset="100%" stop-color="#8B0000"/>
    </linearGradient>
    <!-- Mouse fur gradient -->
    <linearGradient id="mouseGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#C0C0C0"/>
      <stop offset="100%" stop-color="#808080"/>
    </linearGradient>
    <!-- Unicycle wheel pattern -->
    <pattern id="wheelPattern" patternUnits="userSpaceOnUse" width="20" height="20">
      <circle cx="10" cy="10" r="8" stroke="#222" stroke-width="2" fill="none"/>
    </pattern>
  </defs>

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

  <!-- Tightrope -->
  <line x1="50" y1="100" x2="250" y2="100" stroke="#654321" stroke-width="4" stroke-linecap="round"/>

  <!-- Mouse representation -->
  <!-- Head -->
  <circle cx="150" cy="70" r="10" fill="url(#mouseGradient)" stroke="#555" stroke-width="1"/>
  <!-- Ears -->
  <ellipse cx="155" cy="65" rx="3" ry="4" fill="#FFD700" stroke="#555" stroke-width="0.5"/>
  <ellipse cx="145" cy="65" rx="3" ry="4" fill="#FFD700" stroke="#555" stroke-width="0.5"/>
  <!-- Body -->
  <ellipse cx="150" cy="90" rx="10" ry="15" fill="#C0C0C0" stroke="#555" stroke-width="1"/>
  <!-- Legs -->
  <line x1="150" y1="105" x2="140" y2="115" stroke="#555" stroke-width="1"/>
  <line x1="150" y1="105" x2="160" y2="115" stroke="#555" stroke-width="1"/>
  <line x1="150" y1="105" x2="140" y2="105" stroke="#555" stroke-width="1"/>
  <line x1="150" y1="105" x2="160" y2="105" stroke="#555" stroke-width="1"/>
  <!-- Tail -->
  <line x1="160" y1="90" x2="170" y2="100" stroke="#555" stroke-width="1"/>

  <!-- Unicycle -->
  <!-- Wheel -->
  <circle cx="150" cy="125" r="25" fill="none" stroke="#222" stroke-width="4" stroke-pattern="url(#wheelPattern)" />
  <circle cx="150" cy="125" r="25" fill="none" stroke="#222" stroke-width="4"/>
  <!-- Axle -->
  <circle cx="150" cy="125" r="2" fill="#222"/>

  <!-- Seat -->
  <rect x="140" y="115" width="20" height="4" fill="#8B0000" rx="1" ry="1"/>
  <!-- Support -->
  <line x1="150" y1="115" x2="150" y2="125" stroke="#555" stroke-width="1"/>
  <line x1="140" y1="117" x2="150" y2="125" stroke="#555" stroke-width="1"/>
  <line x1="160" y1="117" x2="150" y2="125" stroke="#555" stroke-width="1"/>

  <!-- Mouse riding the unicycle -->
  <circle cx="150" cy="135" r="5" fill="#C0C0C0" stroke="#555" stroke-width="0.5"/>
  <!-- Arms (holding the seat/handle) -->
  <line x1="150" y1="135" x2="140" y2="125" stroke="#555" stroke-width="1"/>
  <line x1="150" y1="135" x2="160" y2="125" stroke="#555" stroke-width="1"/>

  <!-- Cup of steaming tea -->
  <!-- Cup -->
  <ellipse cx="80" cy="200" rx="40" ry="20" fill="url(#cupGradient)" stroke="#444" stroke-width="1"/>
  <!-- Cup handle -->
  <path d="M120,200 Q130,200 130,210 Q130,220 120,220" fill="none" stroke="#444" stroke-width="2"/>
  <!-- Tea liquid -->
  <ellipse cx="80" cy="195" rx="35" ry="10" fill="#D2691E" opacity="0.8"/>

  <!-- Steam rising from the tea -->
  <g fill="url(#steamGradient)" stroke="none">
    <circle cx="70" cy="185" r="3" opacity="0.5"/>
    <circle cx="90" cy="185" r="3" opacity="0.5"/>
    <circle cx="80" cy="180" r="2" opacity="0.4"/>
    <circle cx="75" cy="175" r="2" opacity="0.3"/>
    <circle cx="85" cy="175" r="2" opacity="0.3"/>
    <circle cx="78" cy="170" r="1.5" opacity="0.2"/>
    <circle cx="82" cy="170" r="1.5" opacity="0.2"/>
  </g>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background with a gradient sky -->
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  
  <!-- Tea Cup -->
  <defs>
    <linearGradient id="tea" x1="0" y1="0" x2="0" y2="1" >
      <stop offset="0" style="stop-color:#8B4513;stop-opacity:1" />
      <stop offset="1" style="stop-color:#654321;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="steam" x1="0" y1="0" x2="0" y2="1" >
      <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.8" />
      <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0" />
    </linearGradient>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1" >
      <stop offset="0" style="stop-color:#87CEEB;stop-opacity:1" />
      <stop offset="1" style="stop-color:#4682B4;stop-opacity:1" />
    </linearGradient>
  </defs>

  <!-- Tea Cup Body -->
  <path d="M150,200 L120,240 Q120,250 130,250 L170,250 Q180,250 180,240 L150,200 Z" fill="url(#tea)"/>
  <!-- Tea Cup Handle -->
  <path d="M185,220 Q190,210 195,220 L195,230 Q190,230 185,220 Z" fill="#8B4513"/>
  
  <!-- Steam -->
  <path d="M155,190 Q160,180 170,175 Q175,170 175,170 L175,170" fill="none" stroke="url(#steam)" stroke-width="2"/>
  
  <!-- Tightrope -->
  <line x1="50" y1="160" x2="250" y2="160" stroke="#8B4513" stroke-width="4"/>
  <!-- Tightrope Ends -->
  <line x1="50" y1="150" x2="50" y2="170" stroke="#8B4513" stroke-width="2"/>
  <line x1="250" y1="150" x2="250" y2="170" stroke="#8B4513" stroke-width="2"/>
  
  <!-- Unicycle Wheel -->
  <circle cx="150" cy="160" r="20" fill="none" stroke="#666666" stroke-width="2"/>
  <!-- Unicycle Spokes -->
  <path d="M150,140 L150,160 M150,160 L150,180 M130,160 L170,160" stroke="#666666" stroke-width="1"/>
  <!-- Unicycle Pedals -->
  <circle cx="145" cy="160" r="5" fill="#666666"/>
  <circle cx="155" cy="160" r="5" fill="#666666"/>
  <!-- Unicycle Seat -->
  <rect x="148" y="130" width="4" height="10" fill="#666666"/>
  
  <!-- Mouse Body -->
  <path d="M140,150 Q150,135 160,150 Q165,155 160,160 L160,160" fill="#FFD700" stroke="#8B4513" stroke-width="1"/>
  <!-- Mouse Head -->
  <path d="M155,145 Q160,140 165,145 L165,155 Q160,150 155,145 Z" fill="#FFD700" stroke="#8B4513" stroke-width="1"/>
  <!-- Mouse Ears -->
  <path d="M157,137 Q158,135 160,137 L160,138 Q158,137 157,137 Z" fill="#FFD700" stroke="#8B4513" stroke-width="1"/>
  <path d="M162,137 Q163,135 165,137 L165,138 Q163,137 162,137 Z" fill="#FFD700" stroke="#8B4513" stroke-width="1"/>
  <!-- Mouse Eyes -->
  <circle cx="158" cy="142" r="1" fill="#000000"/>
  <circle cx="162" cy="142" r="1" fill="#000000"/>
  <!-- Mouse Tail -->
  <path d="M150,155 Q145,160 140,160" stroke="#8B4513" stroke-width="2" fill="none"/>
</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 submission is more visually appealing and creative, with the mouse clearly depicted riding a unicycle, complete with expressive details like whiskers and movement lines.

    The steaming tea is represented well, with steam rising prominently.

    Player 1's work, while adhering to the prompt, is less detailed and lacks the same level of creativity and technical refinement in its execution.

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
32
Player 2
19
Rectangles

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

Player 1
2
Player 2
2
Circles

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

Player 1
13
Player 2
5
Ellipses

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

Player 1
5
Player 2
Lines

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

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

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

Player 1
1
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
22
Player 2
11

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

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