Back

SVG Drawing Match #292

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A steampunk octopus playing a brass saxophone underwater"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background with underwater gradient -->
  <rect width="300" height="300" fill="url(#waterGradient)"/>
  
  <!-- Water gradient -->
  <defs>
    <linearGradient id="waterGradient" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0" style="stop-color:#0099CC;stop-opacity:1" />
      <stop offset="1" style="stop-color:#0066AA;stop-opacity:1" />
    </linearGradient>
  </defs>

  <!-- Octopus body (steampunk gear-like shape) -->
  <path d="M150,150 L175,125 Q180,120 185,115 L185,100 Q180,95 175,90 L150,75 L125,90 Q120,95 115,100 L115,115 Q120,120 125,125 L150,150" 
        fill="url(#brassGradient)" stroke="#333" stroke-width="2"/>
  
  <!-- Brass gradient -->
  <defs>
    <linearGradient id="brassGradient" x1="0" y1="0" x2="100%" y2="100%">
      <stop offset="0" style="stop-color:#FFD700;stop-opacity:1" />
      <stop offset="1" style="stop-color:#CD7F32;stop-opacity:1" />
    </linearGradient>
  </defs>

  <!-- Tentacles with rivets -->
  <g transform="rotate(45 150 150)">
    <path d="M0,0 Q50,50 100,0" fill="url(#tentacleGradient)"/>
    <path d="M0,0 Q40,20 80,0" fill="#666"/>
    <path d="M0,0 Q30,10 60,0" fill="#444"/>
  </g>

  <!-- Tentacle gradient -->
  <defs>
    <linearGradient id="tentacleGradient" x1="0" y1="0" x2="100%" y2="100%">
      <stop offset="0" style="stop-color:#8B4513;stop-opacity:1" />
      <stop offset="1" style="stop-color:#6B3E30;stop-opacity:1" />
    </linearGradient>
  </defs>

  <!-- Saxophone -->
  <path d="M220,100 L260,100 Q265,95 270,90 L270,80 Q265,75 260,70 L220,70 L185,75 Q180,70 175,75 L175,80 Q180,85 185,90 L220,90 Q225,95 230,100 L220,100" 
        fill="url(#brassGradient)" stroke="#333" stroke-width="2"/>
  
  <!-- Saxophone mouthpiece with glow -->
  <circle cx="270" cy="90" r="5" fill="#FFD700">
    <filter id="saxGlow">
      <feGaussianBlur stdDeviation="4" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </circle>

  <!-- Gears and mechanical elements -->
  <g transform="translate(150,150)">
    <circle cx="0" cy="0" r="10" fill="#666"/>
    <path d="M0,0 L10,0 Q15,5 10,10 L0,10 Q-5,5 -10,0 L0,0" fill="#444"/>
  </g>

  <!-- Bubbles -->
  <g transform="translate(150,150)">
    <circle cx="20" cy="-50" r="5" fill="#FFFFFF" opacity="0.6"/>
    <circle cx="-20" cy="-40" r="4" fill="#FFFFFF" opacity="0.6"/>
    <circle cx="10" cy="-30" r="3" fill="#FFFFFF" opacity="0.6"/>
  </g>
</svg>
SVG by DeepSeek V3
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="waterGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#1a2a6c" />
      <stop offset="100%" stop-color="#0d47a1" />
    </radialGradient>
    <linearGradient id="metalGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#b87333" />
      <stop offset="50%" stop-color="#ffd700" />
      <stop offset="100%" stop-color="#b87333" />
    </linearGradient>
    <pattern id="gearPattern" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="5" fill="none" stroke="#ffd700" stroke-width="2" />
      <line x1="0" y1="10" x2="20" y2="10" stroke="#ffd700" stroke-width="2" />
      <line x1="10" y1="0" x2="10" y2="20" stroke="#ffd700" stroke-width="2" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#waterGradient)" />
  <ellipse cx="150" cy="150" rx="100" ry="80" fill="#333" />
  <circle cx="150" cy="120" r="40" fill="#555" />
  <polygon points="150,160 170,200 130,200" fill="#777" />
  <path d="M150,80 Q170,100 150,120 Q130,100 150,80" fill="url(#metalGradient)" />
  <path d="M140,100 L160,100 L160,120 L140,120 Z" fill="#444" />
  <path d="M140,100 L150,90 L160,100" fill="#666" />
  <path d="M150,120 L150,140 L160,140 L160,120 Z" fill="#888" />
  <path d="M150,140 L170,160 L150,180 L130,160 Z" fill="#aaa" />
  <path d="M150,180 Q170,200 150,220 Q130,200 150,180" fill="url(#metalGradient)" />
  <path d="M140,200 L160,200 L160,220 L140,220 Z" fill="#444" />
  <path d="M140,200 L150,190 L160,200" fill="#666" />
  <path d="M150,220 L150,240 L160,240 L160,220 Z" fill="#888" />
  <path d="M150,240 L170,260 L150,280 L130,260 Z" fill="#aaa" />
  <circle cx="150" cy="260" r="10" fill="url(#gearPattern)" />
  <circle cx="150" cy="260" r="5" fill="#ffd700" />
  <text x="150" y="280" font-family="'Courier New', monospace" font-size="15" fill="#ffd700" text-anchor="middle">Steampunk Octopus</text>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek V3 Player 2

Judge's Analysis

    Player 2's image better captures the steampunk theme with a clear mechanical aesthetic and a more complex design.

    The visual appeal is enhanced by the underwater setting and the inclusion of text, which adds context.

    Player 1's image lacks detail and complexity, making it less effective in conveying the prompt's theme.

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
12
Player 2
19
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
5
Player 2
4
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
2
Polygons

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

Player 1
Player 2
1
Paths

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

Player 1
6
Player 2
10
Groups

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

Player 1
3
Player 2

Visual Effects Metrics

Gradients

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

Player 1
3
Player 2
2
Patterns

The number of pattern definitions (pattern) in the SVG.

Player 1
Player 2
1
Filters

The number of filter definitions (filter) in the SVG.

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
5
Player 2
11

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

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