Back

SVG Drawing Match #687

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Rainbow octopus playing a grand piano underwater"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background with underwater effect -->
  <rect width="300" height="300" fill="url(#oceanGradient)" />
  <defs>
    <linearGradient id="oceanGradient" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0" stop-color="#1a4377" />
      <stop offset="1" stop-color="#0d47a1" />
    </linearGradient>
    <radialGradient id="octoGlow" cx="150" cy="150" r="100" fx="150" fy="150">
      <stop offset="0" stop-color="#ff0000" stop-opacity="0.8" />
      <stop offset="0.5" stop-color="#ff00ff" stop-opacity="0.6" />
      <stop offset="1" stop-color="#00ffff" stop-opacity="0.4" />
    </radialGradient>
    <filter id="octoGlowFilter">
      <feGaussianBlur stdDeviation="4" result="glow" />
      <feMerge>
        <feMergeNode in="glow" />
        <feMergeNode in="SourceGraphic" />
      </feMerge>
    </filter>
  </defs>

  <!-- Piano -->
  <ellipse cx="150" cy="220" rx="100" ry="40" fill="#2c3e50" />
  <rect x="50" y="200" width="200" height="20" fill="#34495e" />
  <rect x="60" y="180" width="20" height="40" fill="#ecf0f1" />
  <rect x="100" y="180" width="20" height="40" fill="#ecf0f1" />
  <rect x="140" y="180" width="20" height="40" fill="#ecf0f1" />
  <rect x="180" y="180" width="20" height="40" fill="#ecf0f1" />
  <rect x="220" y="180" width="20" height="40" fill="#ecf0f1" />

  <!-- Octopus -->
  <path d="M150,150c-40,0-70,-30-70,-70s30-70,70-70 70,30,70,70-30,70-70,70zm0-100c20,0,30,20,30,30s-10,30-30,30-30-20-30-30,10-30,30-30z" 
        fill="url(#octoGlow)" filter="url(#octoGlowFilter)">
    <animate attributeName="d" from="M150,150c-40,0-70,-30-70,-70s30-70,70-70 70,30,70,70-30,70-70,70zm0-100c20,0,30,20,30,30s-10,30-30,30-30-20-30-30,10-30,30-30z"
               to="M150,150c-30,0-50,-20-50,-50s20-50,50-50 50,20,50,50-20,50-50,50zm0-100c15,0,20,15,20,20s-5,20-15,20-15-10-15-15,5-15,15-15z"
               dur="2s" repeatCount="indefinite" />
  </path>

  <!-- Octopus tentacles -->
  <path d="M150,150 Q170,140 190,130 L190,130 Q200,120 210,110 L210,110 Q220,100 230,100 L230,100 Q240,100 250,110 L250,110 Q260,120 270,130 L270,130 Q280,140 280,150 L280,150" 
        fill="#ffffff" opacity="0.7" />
  <path d="M150,150 Q130,140 110,130 L110,130 Q100,120 90,110 L90,110 Q80,100 80,100 L80,100 Q70,100 60,110 L60,110 Q50,120 40,130 L40,130 Q30,140 30,150 L30,150" 
        fill="#ffffff" opacity="0.7" />

  <!-- Bubbles -->
  <circle cx="50" cy="50" r="10" fill="#ffffff" opacity="0.6" />
  <circle cx="200" cy="80" r="15" fill="#ffffff" opacity="0.6" />
  <circle cx="100" cy="100" r="5" fill="#ffffff" opacity="0.6" />
  <circle cx="250" cy="120" r="20" fill="#ffffff" opacity="0.6" />
  <circle cx="150" cy="150" r="25" fill="#ffffff" opacity="0.6" />
</svg>
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="#aad2e9" />
  
  <!-- Sun rays -->
  <circle cx="150" cy="150" r="70" fill="none" stroke="#fff" stroke-width="1" />
  <line x1="150" y1="80" x2="150" y2="40" stroke="#fff" stroke-width="1" />
  <line x1="210" y1="150" x2="250" y2="150" stroke="#fff" stroke-width="1" />
  <line x1="150" y1="220" x2="150" y2="260" stroke="#fff" stroke-width="1" />
  <line x1="90" y1="150" x2="50" y2="150" stroke="#fff" stroke-width="1" />
  
  <!-- Grand piano -->
  <rect x="70" y="100" width="160" height="80" fill="#000" />
  <rect x="70" y="100" width="20" height="80" fill="#454545" />
  <rect x="209" y="100" width="21" height="80" fill="#454545" />
  <rect x="70" y="100" width="60" height="40" fill="#fff" />
  <rect x="130" y="100" width="40" height="40" fill="#fff" />
  <line x1="130" y1="100" x2="130" y2="180" stroke="#000" stroke-width="2" />
  
  <!-- Octopus body -->
  <circle cx="200" cy="250" r="40" fill="url(#grad1)" />
  
  <!-- Octopus eyes -->
  <circle cx="185" cy="240" r="5" fill="#fff" />
  <circle cx="215" cy="240" r="5" fill="#fff" />
  
  <!-- Octopus tentacles -->
  <path d="M190,270 Q200,280 210,270" stroke="#ff7f50" stroke-width="5" fill="none" />
  <path d="M190,260 Q200,270 210,260" stroke="#ff7f50" stroke-width="5" fill="none" />
  <path d="M190,250 Q200,260 210,250" stroke="#ff7f50" stroke-width="5" fill="none" />
  
  <!-- Octopus hat -->
  <path d="M180,210 Q200,180 220,210" fill="#800080" />
  
  <defs>
    <linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#ff0000;stop-opacity:1" />
      <stop offset="50%" style="stop-color:#ff7f00;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ffff00;stop-opacity:1" />
    </linearGradient>
  </defs>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-3.5 turbo (0125) Player 2

Judge's Analysis

    Player 2's image more clearly represents the concept of a rainbow octopus playing a grand piano underwater.

    The use of a colorful element suggestive of an octopus and the presence of a piano motif create a stronger connection to the prompt.

    Player 1's image, while visually appealing, lacks recognizable elements that specifically tie to the 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
16
Player 2
19
Rectangles

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

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

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
9

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
9
Player 2
6

Interactivity Metrics

Animations

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

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