Back

SVG Drawing Match #138

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Octopus DJ spinning records on coral turntables under the sea"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Underwater background -->
  <rect x="0" y="0" width="300" height="300" fill="#0077BE" />
  
  <!-- Coral turntables -->
  <!-- Turntable 1 -->
  <circle cx="100" cy="220" r="40" fill="#FF5E7D" />
  <path d="M80 220 L120 220 L100 260 Z" fill="#FFA07A" />
  
  <!-- Turntable 2 -->
  <circle cx="200" cy="220" r="40" fill="#FF5E7D" />
  <path d="M180 220 L220 220 L200 260 Z" fill="#FFA07A" />
  
  <!-- Octopus DJ -->
  <!-- Body -->
  <circle cx="150" cy="150" r="30" fill="#FFC947" />
  <!-- Eyes -->
  <circle cx="140" cy="140" r="3" fill="#231F20" />
  <circle cx="160" cy="140" r="3" fill="#231F20" />
  <!-- Arms -->
  <path d="M135 150 Q120 170 130 190" stroke="#FFC947" stroke-width="4" fill="none" />
  <path d="M165 150 Q180 170 170 190" stroke="#FFC947" stroke-width="4" fill="none" />
  <path d="M150 150 Q180 130 150 110" stroke="#FFC947" stroke-width="4" fill="none" />
  
  <!-- Records -->
  <!-- Record 1 -->
  <circle cx="100" cy="220" r="15" fill="#F1C40F" />
  <circle cx="100" cy="220" r="10" fill="#FFFFFF" />
  <rect x="95" y="215" width="10" height="10" fill="#231F20" />
  <!-- Record 2 -->
  <circle cx="200" cy="220" r="15" fill="#F1C40F" />
  <circle cx="200" cy="220" r="10" fill="#FFFFFF" />
  <rect x="195" y="215" width="10" height="10" fill="#231F20" />
</svg>
SVG by Llama 3.1 405B Instruct
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background gradient -->
  <defs>
    <linearGradient id="bgGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#032B44" />
      <stop offset="100%" stop-color="#014D5A" />
    </linearGradient>
  </defs>
  <rect width="300" height="300" fill="url(#bgGrad)" rx="10" />
  
  <!-- Coral turntables -->
  <g transform="translate(100 150)">
    <path d="M0-60C0-34 27-17 60 0L0 60C-27-17-34-17 0-60Z" fill="#FFC67D" rx="5" />
    <path d="M0 0C27 17 34 17 60 60L60-60C34-17 27-17 0 0Z" fill="#FF99CC" rx="5" />
  </g>
  <g transform="translate(200 150)">
    <path d="M0-60C0-34 27-17 60 0L0 60C-27-17-34-17 0-60Z" fill="#FFC67D" rx="5" />
    <path d="M0 0C27 17 34 17 60 60L60-60C34-17 27-17 0 0Z" fill="#C2E780" rx="5" />
  </g>
  
  <!-- Records -->
  <g transform="translate(120 170)">
    <circle cx="0" cy="0" r="30" fill="#98A7B2" />
    <path d="M0-25L0 25M-20 0L20 0" stroke="#586B7F" stroke-width="5" />
  </g>
  <g transform="translate(220 170)">
    <circle cx="0" cy="0" r="30" fill="#43AFAD" />
    <path d="M0-25L0 25M-20 0L20 0" stroke="#275907" stroke-width="5" />
  </g>
  
  <!-- Octopus DJ -->
  <g transform="translate(150 100)">
    <path d="M0 0C34-17 67-17 100 0L100-100C67-17 34-17 0 0Z" fill="#F1495F" />
    <path d="M0 0C27-17 60-17 90 5L0-100C-14-29-3 0 0 0Z" fill="#F9CBA4" />
    <path d="M0 0C-14 29 0-100-40-35L100-40C100 29-60 5 0 0Z" fill="#FF7889" />
    <circle cx="45" cy="-20" r="10" fill="#F1495F" />
    <circle cx="55" cy="-30" r="10" fill="#F1495F" />
    <path d="M45-20C36-20 30-28 30-35L55-30C60-23 55-20 45-20Z" stroke="#8B451B" />
  </g>
  
  <!-- Water effects -->
  <path d="M0 250L300 250M150 220L200 240M240 230L260 220M90 230L60 240M45 240L60 230" stroke="#3786B9" stroke-width="2" />
  <path d="M30 240L60 230M45 220L60 240M150 230L200 220M240 240L260 230M90 220L60 230" stroke="#3786B9" stroke-width="2" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-3.5 turbo (0125) Player 1

Judge's Analysis

    Player 1's image creatively captures the concept of an octopus DJ with an engaging and whimsical style.

    The vibrant colors and clear depiction of the octopus and turntables align well with the prompt, whereas Player 2's abstract representation lacks clarity and adherence to the theme.

    The overall composition and visual appeal of Player 1's submission are stronger.

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
17
Player 2
17
Rectangles

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

Player 1
3
Player 2
1
Circles

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

Player 1
9
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
12
Groups

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

Player 1
Player 2
5

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
7
Player 2
14

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
5

Complexity Metrics

Path Commands

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

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