Back

SVG Drawing Match #2045

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"An octopus wearing a top hat, juggling planets while riding a bicycle"

SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background gradient -->
  <linearGradient id="bgGrad" x1="0%" y1="0%" x2="100%" y2="100%">
    <stop offset="0%" stop-color="#3498db" />
    <stop offset="100%" stop-color="#2ecc40" />
  </linearGradient>
  <rect fill="url(#bgGrad)" width="300" height="300" rx="10" />
  <!-- Octopus -->
  <g transform="translate(100, 120)">
    <circle fill="#9b59b6" cx="0" cy="0" r="40" />
    <path d="M-30,-20 a 20,20 0,0,0 20,30"
          stroke="#2ecc40" stroke-width="4" fill="none" />
    <path d="M-20,-30 a 30,30 0,0,1 40,20"
          stroke="#2ecc40" stroke-width="4" fill="none" />
    <path d="M10,-30 a 20,30 0,0,1 30,30"
          stroke="#2ecc40" stroke-width="4" fill="none" />
    <!-- Arms -->
    <g transform="rotate(45)">
      <path d="M20,0 a 20,20 0,0,0 20,30"
            stroke="#9b59b6" stroke-width="8" fill="none" />
    </g>
    <g transform="rotate(90)">
      <path d="M20,0 a 20,20 0,0,0 20,30"
            stroke="#9b59b6" stroke-width="8" fill="none" />
    </g>
    <g transform="rotate(135)">
      <path d="M20,0 a 20,20 0,0,0 20,30"
            stroke="#9b59b6" stroke-width="8" fill="none" />
    </g>
    <!-- Hands -->
    <circle fill="#9b59b6" cx="40" cy="20" r="10" />
    <circle fill="#9b59b6" cx="20" cy="-20" r="10" />
    <circle fill="#9b59b6" cx="10" cy="40" r="10" />
  </g>
  <!-- Top hat -->
  <rect fill="#3498db" x="80" y="50" width="40" height="20" rx="2" />
  <rect fill="#3498db" x="80" y="20" width="20" height="40" rx="2" />
  <path d="M100,70 a 10,10 0,0,0 20,10"
        stroke="#2ecc40" stroke-width="4" fill="none" />
  <!-- Bicycle -->
  <g transform="translate(120, 180)">
    <circle fill="#2ecc40" cx="0" cy="0" r="20" />
    <path d="M-50,-20 a 30,20 0,0,1 40,20"
          stroke="#9b59b6" stroke-width="4" fill="none" />
    <path d="M50,-20 a 30,20 0,1,0 -40,20"
          stroke="#9b59b6" stroke-width="4" fill="none" />
    <path d="M-30,20 a 20,10 0,0,1 20,10"
          stroke="#9b59b6" stroke-width="4" fill="none" />
    <path d="M30,20 a 20,10 0,1,0 -20,10"
          stroke="#9b59b6" stroke-width="4" fill="none" />
    <circle fill="#9b59b6" cx="10" cy="20" r="10" />
    <circle fill="#9b59b6" cx="-10" cy="20" r="10" />
  </g>
  <!-- Planets -->
  <g transform="translate(180, 80)">
    <circle fill="#e74c3c" cx="0" cy="0" r="20" />
    <path d="M-30,-20 a 10,20 0,0,0 10,10"
          stroke="#9b59b6" stroke-width="2" fill="none" />
    <path d="M30,-20 a 10,20 0,0,1 -10,10"
          stroke="#9b59b6" stroke-width="2" fill="none" />
  </g>
  <g transform="translate(200, 150)">
    <circle fill="#1abc9c" cx="0" cy="0" r="15" />
    <path d="M-20,-15 a 10,15 0,0,0 10,10"
          stroke="#9b59b6" stroke-width="2" fill="none" />
    <path d="M20,-15 a 10,15 0,0,1 -10,10"
          stroke="#9b59b6" stroke-width="2" fill="none" />
  </g>
  <g transform="translate(220, 220)">
    <circle fill="#2ecc71" cx="0" cy="0" r="10" />
    <path d="M-15,-10 a 10,10 0,0,0 10,10"
          stroke="#9b59b6" stroke-width="2" fill="none" />
    <path d="M15,-10 a 10,10 0,0,1 -10,10"
          stroke="#9b59b6" stroke-width="2" fill="none" />
  </g>
</svg>
SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="octoGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#6fa8dc" />
      <stop offset="100%" stop-color="#073763" />
    </linearGradient>
    <radialGradient id="wheelGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#555555" />
      <stop offset="100%" stop-color="#222222" />
    </radialGradient>
    <radialGradient id="planetGradient1" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ffcc00" />
      <stop offset="100%" stop-color="#ff9900" />
    </radialGradient>
    <radialGradient id="planetGradient2" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#66ccff" />
      <stop offset="100%" stop-color="#3399ff" />
    </radialGradient>
    <radialGradient id="planetGradient3" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#cc6699" />
      <stop offset="100%" stop-color="#993366" />
    </radialGradient>
    <linearGradient id="hatGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#333333" />
      <stop offset="100%" stop-color="#000000" />
    </linearGradient>
    <linearGradient id="bicycleGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#ff6666" />
      <stop offset="100%" stop-color="#cc3333" />
    </linearGradient>
  </defs>
  
  <!-- Bicycle -->
  <g id="bicycle" transform="translate(150, 200)">
    <!-- Back Wheel -->
    <circle cx="-60" cy="0" r="30" fill="url(#wheelGradient)" stroke="#000" stroke-width="2"/>
    <!-- Front Wheel -->
    <circle cx="60" cy="0" r="30" fill="url(#wheelGradient)" stroke="#000" stroke-width="2"/>
    <!-- Frame -->
    <line x1="-60" y1="0" x2="0" y2="-50" stroke="url(#bicycleGradient)" stroke-width="4"/>
    <line x1="0" y1="-50" x2="60" y2="0" stroke="url(#bicycleGradient)" stroke-width="4"/>
    <line x1="-60" y1="0" x2="60" y2="0" stroke="url(#bicycleGradient)" stroke-width="2"/>
    <line x1="0" y1="-50" x2="0" y2="-20" stroke="url(#bicycleGradient)" stroke-width="3"/>
    <!-- Handlebars -->
    <line x1="0" y1="-20" x2="20" y2="-30" stroke="url(#bicycleGradient)" stroke-width="3"/>
    <line x1="0" y1="-20" x2="-20" y2="-30" stroke="url(#bicycleGradient)" stroke-width="3"/>
    <!-- Seat -->
    <line x1="0" y1="-50" x2="0" y2="-60" stroke="url(#bicycleGradient)" stroke-width="3"/>
    <rect x="-10" y="-60" width="20" height="5" fill="#654321" rx="2"/>
  </g>
  
  <!-- Octopus -->
  <g id="octopus" transform="translate(150, 150)">
    <!-- Body -->
    <ellipse cx="0" cy="0" rx="40" ry="50" fill="url(#octoGradient)" stroke="#000" stroke-width="2"/>
    <!-- Eyes -->
    <circle cx="-15" cy="-10" r="5" fill="#ffffff"/>
    <circle cx="-15" cy="-10" r="2.5" fill="#000000"/>
    <circle cx="15" cy="-10" r="5" fill="#ffffff"/>
    <circle cx="15" cy="-10" r="2.5" fill="#000000"/>
    <!-- Top Hat -->
    <g transform="translate(0, -40)">
      <rect x="-20" y="-10" width="40" height="10" fill="url(#hatGradient)" stroke="#000" stroke-width="1"/>
      <rect x="-25" y="0" width="50" height="5" fill="url(#hatGradient)" stroke="#000" stroke-width="1"/>
    </g>
    <!-- Tentacles -->
    <g id="tentacles">
      <path d="M-25,25 C-35,40 -35,60 -25,70" fill="none" stroke="url(#octoGradient)" stroke-width="4"/>
      <path d="M-15,25 C-25,40 -25,60 -15,70" fill="none" stroke="url(#octoGradient)" stroke-width="4"/>
      <path d="M-5,25 C-15,40 -15,60 -5,70" fill="none" stroke="url(#octoGradient)" stroke-width="4"/>
      <path d="M5,25 C15,40 15,60 5,70" fill="none" stroke="url(#octoGradient)" stroke-width="4"/>
      <path d="M15,25 C25,40 25,60 15,70" fill="none" stroke="url(#octoGradient)" stroke-width="4"/>
      <path d="M25,25 C35,40 35,60 25,70" fill="none" stroke="url(#octoGradient)" stroke-width="4"/>
    </g>
  </g>
  
  <!-- Planets -->
  <g id="planets">
    <!-- Planet 1 -->
    <circle cx="80" cy="50" r="10" fill="url(#planetGradient1)" stroke="#000" stroke-width="1"/>
    <!-- Planet 2 -->
    <circle cx="-60" cy="-40" r="15" fill="url(#planetGradient2)" stroke="#000" stroke-width="1"/>
    <!-- Planet 3 -->
    <circle cx="100" cy="-60" r="8" fill="url(#planetGradient3)" stroke="#000" stroke-width="1"/>
    <!-- Planet 4 -->
    <circle cx="-90" cy="30" r="12" fill="#66ff66" stroke="#000" stroke-width="1"/>
  </g>
  
  <!-- Connecting Lines for Juggling Effect -->
  <g id="juggleLines">
    <path d="M150,150 Q160,80 80,50" stroke="#ffffff" stroke-width="1" fill="none"/>
    <path d="M150,150 Q140,70 60, -40" stroke="#ffffff" stroke-width="1" fill="none"/>
    <path d="M150,150 Q170,90 100,-60" stroke="#ffffff" stroke-width="1" fill="none"/>
    <path d="M150,150 Q130,100 30,30" stroke="#ffffff" stroke-width="1" fill="none"/>
  </g>
  
  <!-- Background -->
  <rect width="300" height="300" fill="#1a1a1a"/>
  <circle cx="150" cy="150" r="140" fill="none" stroke="#333" stroke-width="2"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Llama 3.1 405B Instruct Player 1

Judge's Analysis

    Player 1's image captures the whimsical theme of an octopus juggling planets while riding a bicycle with vibrant colors and identifiable elements.

    Although abstract, it adheres more closely to the prompt.

    Player 2's image lacks discernible elements related to the theme, making it less effective in fulfilling the creative criteria.

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
30
Player 2
33
Rectangles

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

Player 1
3
Player 2
4
Circles

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

Player 1
10
Player 2
11
Ellipses

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

Player 1
Player 2
1
Lines

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

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

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

Player 1
8
Player 2
6

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
17
Player 2
27

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2
20

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
8
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
34
Player 2
20
Max Group Nesting

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

Player 1
1
Player 2
1
Defs Elements

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

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