Back

SVG Drawing Match #1734

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Neon jellyfish conducting an underwater orchestra"

SVG by GPT-3.5 turbo (0125)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="gradient1" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:rgb(128,0,128);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(75,0,130);stop-opacity:1" />
    </linearGradient>
  </defs>
  <circle cx="150" cy="150" r="120" fill="url(#gradient1)" />
  <circle cx="140" cy="120" r="5" fill="white" />
  <circle cx="160" cy="110" r="7" fill="white" />
  <circle cx="180" cy="130" r="6" fill="white" />
  <circle cx="130" cy="140" r="4" fill="white" />
  <circle cx="145" cy="155" r="5" fill="white" />
  <circle cx="175" cy="145" r="6" fill="white" />
  <circle cx="155" cy="165" r="5" fill="white" />
  <circle cx="165" cy="140" r="4" fill="white" />
  <path d="M 120 160 Q 150 200 180 160 Z" fill="none" stroke="white" stroke-width="1" />
</svg>
SVG by Claude 3.5 Sonnet (2024-10-22)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="glow" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#ff00ff;stop-opacity:0.8"/>
      <stop offset="100%" style="stop-color:#00ffff;stop-opacity:0"/>
    </radialGradient>
    <filter id="blur">
      <feGaussianBlur stdDeviation="2"/>
    </filter>
  </defs>
  
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#001630"/>
  
  <!-- Musical notes -->
  <g class="notes" fill="#ff88ff" filter="url(#blur)">
    <path d="M180,140 c5,-10 10,-15 15,-20" stroke="#ff00ff" stroke-width="2" fill="none">
      <animate attributeName="opacity" values="0;1;0" dur="3s" repeatCount="indefinite"/>
    </path>
    <circle cx="195" cy="120" r="4">
      <animate attributeName="cy" values="120;110;120" dur="2s" repeatCount="indefinite"/>
    </circle>
    <circle cx="165" cy="140" r="4">
      <animate attributeName="cy" values="140;130;140" dur="2.5s" repeatCount="indefinite"/>
    </circle>
  </g>

  <!-- Jellyfish body -->
  <path d="M150,100 C200,100 220,130 220,160 C220,190 180,220 150,220 C120,220 80,190 80,160 C80,130 100,100 150,100" 
        fill="url(#glow)" opacity="0.8">
    <animate attributeName="d" 
             values="M150,100 C200,100 220,130 220,160 C220,190 180,220 150,220 C120,220 80,190 80,160 C80,130 100,100 150,100;
                     M150,110 C200,110 230,140 230,170 C230,200 180,230 150,230 C120,230 70,200 70,170 C70,140 100,110 150,110;
                     M150,100 C200,100 220,130 220,160 C220,190 180,220 150,220 C120,220 80,190 80,160 C80,130 100,100 150,100"
             dur="4s" repeatCount="indefinite"/>
  </path>

  <!-- Tentacles -->
  <g stroke="#ff00ff" stroke-width="2" fill="none">
    <path d="M130,220 Q140,240 130,260">
      <animate attributeName="d" 
               values="M130,220 Q140,240 130,260;M130,220 Q120,240 130,260;M130,220 Q140,240 130,260" 
               dur="3s" repeatCount="indefinite"/>
    </path>
    <path d="M150,220 Q160,250 150,270">
      <animate attributeName="d" 
               values="M150,220 Q160,250 150,270;M150,220 Q140,250 150,270;M150,220 Q160,250 150,270" 
               dur="2.5s" repeatCount="indefinite"/>
    </path>
    <path d="M170,220 Q180,240 170,260">
      <animate attributeName="d" 
               values="M170,220 Q180,240 170,260;M170,220 Q160,240 170,260;M170,220 Q180,240 170,260" 
               dur="3.5s" repeatCount="indefinite"/>
    </path>
  </g>

  <!-- Conducting baton -->
  <line x1="150" y1="160" x2="180" y2="140" stroke="#ffffff" stroke-width="2">
    <animate attributeName="x2" values="180;160;180" dur="2s" repeatCount="indefinite"/>
    <animate attributeName="y2" values="140;150;140" dur="2s" repeatCount="indefinite"/>
  </line>

  <!-- Glow effects -->
  <circle cx="150" cy="160" r="50" fill="url(#glow)" opacity="0.5">
    <animate attributeName="r" values="50;55;50" dur="2s" repeatCount="indefinite"/>
  </circle>

  <!-- Bubbles -->
  <g fill="#ffffff" opacity="0.6">
    <circle cx="100" cy="80" r="3">
      <animate attributeName="cy" values="280;0" dur="10s" repeatCount="indefinite"/>
    </circle>
    <circle cx="200" cy="150" r="2">
      <animate attributeName="cy" values="280;0" dur="8s" repeatCount="indefinite"/>
    </circle>
    <circle cx="180" cy="220" r="4">
      <animate attributeName="cy" values="280;0" dur="12s" repeatCount="indefinite"/>
    </circle>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 2

Judge's Analysis

    Player 2's image better captures the concept of a 'neon jellyfish conducting an underwater orchestra' with its use of vibrant colors and suggestive lines that resemble musical notes.

    The glowing effect and dynamic composition enhance the visual appeal and creativity, making it more aligned with the prompt compared to Player 1's simpler and less thematic design.

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
10
Player 2
13
Rectangles

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

Player 1
Player 2
1
Circles

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

Player 1
9
Player 2
6
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
1
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
1
Player 2
5
Groups

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

Player 1
Player 2
3

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
1
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
1
Player 2
4

Interactivity Metrics

Animations

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

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