Back

SVG Drawing Match #1432

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Octopus DJ spinning vinyl records under the sea"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#054868" />
  
  <!-- Octopus body -->
  <circle cx="150" cy="150" r="80" fill="#ff8c42" />
  
  <!-- Octopus head -->
  <circle cx="150" cy="110" r="60" fill="#ff8c42" />
  
  <!-- Octopus eyes -->
  <circle cx="130" cy="90" r="7" fill="#fff" />
  <circle cx="170" cy="90" r="7" fill="#fff" />
  
  <!-- Octopus tentacles -->
  <path d="M150,150 Q180,170 210,160 Q200,180 240,200 Q250,230 230,240 Q200,250 180,230 Q150,230 120,240 Q100,230 110,200 Q150,180 150,150" fill="#ff8c42" />
  <path d="M150,150 Q120,130 90,140 Q120,120 100,100 Q90,70 130,60 Q160,60 150,90 Q140,60 170,60 Q210,70 200,100 Q180,120 210,140 Q180,130 150,150" fill="#ff8c42" />
  
  <!-- Vinyl record -->
  <circle cx="150" cy="150" r="40" fill="#333" />
  <circle cx="150" cy="150" r="35" fill="#fff" />
  <circle cx="150" cy="150" r="30" fill="#333" />
  <circle cx="150" cy="150" r="5" fill="#ff8c42" />
  
  <!-- Vinyl record details -->
  <circle cx="150" cy="150" r="15" fill="none" stroke="#ff8c42" stroke-width="2" />
  <line x1="150" y1="150" x2="150" y2="165" stroke="#ff8c42" stroke-width="2" />
  <line x1="150" y1="150" x2="165" y2="150" stroke="#ff8c42" stroke-width="2" />
  
  <!-- Headphones -->
  <path d="M120,90 Q130,70 140,90" fill="none" stroke="#fff" stroke-width="2" />
  <rect x="135" y="84" width="30" height="12" fill="#fff" />
  <rect x="118" y="87" width="15" height="6" fill="#fff" />
  <rect x="167" y="87" width="15" height="6" fill="#fff" />
  
  <!-- Bubbles -->
  <circle cx="100" cy="230" r="5" fill="#fff" />
  <circle cx="200" cy="250" r="7" fill="#fff" />
  <circle cx="250" cy="200" r="6" fill="#fff" />
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background gradient for the ocean -->
  <defs>
    <linearGradient id="seaGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#1a3f6c;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#56a0d8;stop-opacity:1" />
    </linearGradient>
    
    <!-- Tentacle gradient -->
    <linearGradient id="tentacleGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#6c5ce7;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#a8a5e6;stop-opacity:1" />
    </linearGradient>
    
    <!-- Record glow effect -->
    <linearGradient id="recordGlow" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#ffffff;stop-opacity:0.8" />
      <stop offset="100%" style="stop-color:#ffffff;stop-opacity:0" />
    </linearGradient>
  </defs>

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

  <!-- Octopus body -->
  <circle cx="150" cy="150" r="40" fill="#ffffff" opacity="0.9">
    <animate attributeName="r" from="35" to="40" dur="2s" repeatCount="indefinite" />
  </circle>

  <!-- Tentacles -->
  <path d="M150,190 Q160,220 170,210 L170,230 Q165,235 160,240 L160,250 Q155,245 150,240 L150,230 Q145,235 140,240 L140,250 Q135,245 130,240 L130,210" fill="url(#tentacleGradient)" opacity="0.8"/>
  <path d="M150,190 Q140,220 130,210 L130,230 Q135,235 140,240 L140,250 Q145,235 150,240 L150,230 Q155,235 160,240 L160,250 Q165,245 170,240 L170,210" fill="url(#tentacleGradient)" opacity="0.8"/>
  <path d="M150,110 Q160,140 170,130 L170,120 Q165,115 160,110 L160,100 Q155,105 150,100 L150,110 Q145,105 140,110 L140,100 Q135,105 130,110 L130,130" fill="url(#tentacleGradient)" opacity="0.8"/>
  <path d="M150,110 Q140,140 130,130 L130,120 Q135,115 140,110 L140,100 Q145,105 150,100 L150,110 Q155,105 160,110 L160,100 Q165,105 170,110 L170,130" fill="url(#tentacleGradient)" opacity="0.8"/>

  <!-- Turntables -->
  <circle cx="120" cy="170" r="25" fill="#silver">
    <animate attributeName="r" from="20" to="25" dur="2s" repeatCount="indefinite" />
  </circle>
  <circle cx="180" cy="170" r="25" fill="#silver">
    <animate attributeName="r" from="20" to="25" dur="2s" repeatCount="indefinite" />
  </circle>

  <!-- Records -->
  <circle cx="120" cy="170" r="15" fill="url(#recordGlow)" stroke="#gold" stroke-width="2"/>
  <circle cx="180" cy="170" r="15" fill="url(#recordGlow)" stroke="#gold" stroke-width="2"/>
  <circle cx="120" cy="170" r="10" fill="#black" stroke="#gold" stroke-width="1"/>
  <circle cx="180" cy="170" r="10" fill="#black" stroke="#gold" stroke-width="1"/>

  <!-- Spinning animation for records -->
  <animateTransform attributeName="transform" type="rotate" from="0 120 170" to="360 120 170" dur="4s" repeatCount="indefinite" />
  <animateTransform attributeName="transform" type="rotate" from="0 180 170" to="360 180 170" dur="4s" repeatCount="indefinite" />

  <!-- Glow effects -->
  <circle cx="150" cy="150" r="20" fill="url(#recordGlow)" opacity="0.5" />
  <circle cx="120" cy="170" r="10" fill="url(#recordGlow)" opacity="0.5" />
  <circle cx="180" cy="170" r="10" fill="url(#recordGlow)" opacity="0.5" />

  <!-- Bubbles -->
  <circle cx="50" cy="50" r="5" fill="#ffffff" opacity="0.6"/>
  <circle cx="250" cy="50" r="5" fill="#ffffff" opacity="0.6"/>
  <circle cx="150" cy="270" r="5" fill="#ffffff" opacity="0.6"/>
</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 better captures the concept of an 'Octopus DJ spinning vinyl records under the sea' with a clear depiction of an octopus form and a vinyl record.

    The use of color and shapes is effective in conveying the theme, maintaining both creativity and visual appeal.

    Player 2's image lacks clarity in representing the octopus and vinyl elements, making it less adherent to 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
21
Player 2
18
Rectangles

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

Player 1
4
Player 2
1
Circles

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

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

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
4
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
4
Player 2
1

Interactivity Metrics

Animations

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

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