Back

SVG Drawing Match #634

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Octopus juggling planets while riding a unicycle over a rainbow"

SVG by o3-mini high (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="octoGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#8A2BE2"/>
      <stop offset="100%" stop-color="#FF1493"/>
    </radialGradient>
    <radialGradient id="planet1" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#FF6347"/>
      <stop offset="100%" stop-color="#8B0000"/>
    </radialGradient>
    <radialGradient id="planet2" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#87CEFA"/>
      <stop offset="100%" stop-color="#00008B"/>
    </radialGradient>
    <radialGradient id="planet3" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#7CFC00"/>
      <stop offset="100%" stop-color="#006400"/>
    </radialGradient>
  </defs>
  <g id="rainbow">
    <path d="M20 250 Q150 70 280 250" stroke="red" stroke-width="8" fill="none"/>
    <path d="M25 250 Q150 80 275 250" stroke="orange" stroke-width="8" fill="none"/>
    <path d="M30 250 Q150 90 270 250" stroke="yellow" stroke-width="8" fill="none"/>
    <path d="M35 250 Q150 100 265 250" stroke="green" stroke-width="8" fill="none"/>
    <path d="M40 250 Q150 110 260 250" stroke="blue" stroke-width="8" fill="none"/>
    <path d="M45 250 Q150 120 255 250" stroke="indigo" stroke-width="8" fill="none"/>
    <path d="M50 250 Q150 130 250 250" stroke="violet" stroke-width="8" fill="none"/>
  </g>
  <g id="unicycle">
    <circle cx="150" cy="230" r="20" stroke="black" stroke-width="2" fill="none"/>
    <line x1="150" y1="210" x2="150" y2="230" stroke="black" stroke-width="2"/>
    <rect x="143" y="205" width="14" height="5" fill="saddlebrown" rx="2" ry="2"/>
  </g>
  <g id="octopus">
    <circle cx="150" cy="190" r="18" fill="url(#octoGradient)" stroke="purple" stroke-width="2"/>
    <circle cx="143" cy="185" r="2" fill="white"/>
    <circle cx="157" cy="185" r="2" fill="white"/>
    <path d="M132 190 C100 185, 90 140, 110 120" stroke="purple" stroke-width="3" fill="none" stroke-linecap="round"/>
    <path d="M168 190 C200 185, 210 140, 190 120" stroke="purple" stroke-width="3" fill="none" stroke-linecap="round"/>
    <path d="M150 172 C150 150, 145 110, 150 90" stroke="purple" stroke-width="3" fill="none" stroke-linecap="round"/>
    <path d="M135 205 C120 220, 120 230, 135 240" stroke="purple" stroke-width="3" fill="none" stroke-linecap="round"/>
    <path d="M165 205 C180 220, 180 230, 165 240" stroke="purple" stroke-width="3" fill="none" stroke-linecap="round"/>
    <path d="M150 206 C150 220, 150 230, 150 245" stroke="purple" stroke-width="3" fill="none" stroke-linecap="round"/>
  </g>
  <circle cx="110" cy="120" r="8" fill="url(#planet1)" stroke="darkred" stroke-width="1"/>
  <circle cx="190" cy="120" r="8" fill="url(#planet2)" stroke="darkblue" stroke-width="1"/>
  <circle cx="150" cy="90" r="8" fill="url(#planet3)" stroke="darkgreen" stroke-width="1"/>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background with radial gradient for a dynamic sky -->
  <defs>
    <radialGradient id="skyGradient" gradientUnits="userSpaceOnUse" cx="150" cy="150" r="150" fx="150" fy="150">
      <stop offset="0" stop-color="#1a4377" stop-opacity="1"/>
      <stop offset="1" stop-color="#0b2b4e" stop-opacity="1"/>
    </radialGradient>
    
    <linearGradient id="rainbowGradient" x1="0" y1="0" x2="300" y2="0" gradientUnits="userSpaceOnUse">
      <stop offset="0" stop-color="#ff0000"/>
      <stop offset="0.2" stop-color="#ff9900"/>
      <stop offset="0.4" stop-color="#ffff00"/>
      <stop offset="0.6" stop-color="#33ff00"/>
      <stop offset="0.8" stop-color="#0099ff"/>
      <stop offset="1" stop-color="#4b0082"/>
    </linearGradient>

    <!-- Custom metallic gradient for the unicycle wheel -->
    <linearGradient id="metalGradient" x1="0" y1="0" x2="100%" y2="100%" gradientUnits="userSpaceOnUse">
      <stop offset="0" stop-color="#f3f3f3"/>
      <stop offset="1" stop-color="#888"/>
    </linearGradient>
  </defs>

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

  <!-- Rainbow path -->
  <path d="M0,200 Q150,300 300,200 L300,220 L0,220 Z" fill="url(#rainbowGradient)"/>

  <!-- Unicycle wheel -->
  <g transform="translate(150,220)">
    <circle r="20" fill="url(#metalGradient)"/>
    <circle r="15" fill="#666"/>
  </g>

  <!-- Octopus body -->
  <g transform="translate(150,210)">
    <!-- Octopus main body -->
    <path d="M-40,-40 C-10,-20 0,0 40,0 60,-20 40,-40 0,-60 -40,-40z" 
          fill="#ff9999" stroke="#ff6666" stroke-width="2"/>
    
    <!-- Tentacles -->
    <path d="M0,0 Q-20,-20 -40,-30" stroke="#ff9999" stroke-width="4" fill="none"/>
    <path d="M0,0 Q20,-20 40,-30" stroke="#ff9999" stroke-width="4" fill="none"/>
    
    <!-- Eyes and mouth -->
    <circle cx="-15" cy="-25" r="5" fill="#fff"/>
    <circle cx="15" cy="-25" r="5" fill="#fff"/>
    <path d="M-20,-30 Q0,-40 20,-30" stroke="#ff6666" stroke-width="2" fill="none"/>
  </g>

  <!-- Planets being juggled -->
  <g transform="translate(150,150)">
    <!-- Planet 1 (Earth-like) -->
    <g transform="translate(-100,0)">
      <circle r="25" fill="#3498db">
        <animate attributeName="r" from="25" to="30" dur="2s" repeatCount="indefinite" />
      </circle>
      <circle r="20" fill="#2ecc71">
        <animate attributeName="r" from="20" to="25" dur="2s" repeatCount="indefinite" />
      </circle>
    </g>

    <!-- Planet 2 (Gas giant-like) -->
    <g transform="translate(0,100)">
      <circle r="35" fill="#e74c3c">
        <animate attributeName="r" from="35" to="40" dur="2s" repeatCount="indefinite" />
      </circle>
      <circle r="25" fill="#e67e22">
        <animate attributeName="r" from="25" to="30" dur="2s" repeatCount="indefinite" />
      </circle>
    </g>

    <!-- Planet 3 (Ring-like) -->
    <g transform="translate(100,0)">
      <circle r="30" fill="#f1c40f"/>
      <path d="M-40,0 Q0,-20 40,0 Q0,20 -40,0" fill="none" stroke="#f1c40f" stroke-width="4"/>
    </g>
  </g>

  <!-- Motion lines showing juggling movement -->
  <path d="M120,150 Q150,130 180,150" stroke="#fff" stroke-width="2" opacity="0.7"/>
  <path d="M180,150 Q210,130 240,150" stroke="#fff" stroke-width="2" opacity="0.7"/>
  <path d="M120,240 Q150,260 180,240" stroke="#fff" stroke-width="2" opacity="0.7"/>
  <path d="M180,240 Q210,260 240,240" stroke="#fff" stroke-width="2" opacity="0.7"/>
</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 demonstrates greater creativity and technical quality.

    The octopus is clearly depicted juggling planets while riding a unicycle, with a well-defined rainbow integrated into the scene.

    The composition is visually appealing and adheres closely to the prompt, whereas Player 1's image is less clear and lacks the detailed elements specified 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
22
Player 2
20
Rectangles

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

Player 1
1
Player 2
1
Circles

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

Player 1
7
Player 2
9
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
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
13
Player 2
10
Groups

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

Player 1
3
Player 2
6

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
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
4
Elements with Stroke

The number of elements with stroke attributes in the SVG.

Player 1
19
Player 2
9

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
22
Player 2
19

Interactivity Metrics

Animations

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

Player 1
Player 2
4
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
Player 2
6

Complexity Metrics

Path Commands

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

Player 1
26
Player 2
25
Max Group Nesting

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

Player 1
Player 2
1
Defs Elements

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

Player 1
4
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