Back

SVG Drawing Match #690

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A jellyfish conducting an underwater orchestra with coral instruments"

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="jellyGlow" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ff88ff" stop-opacity="0.8"/>
      <stop offset="100%" stop-color="#ff00ff" stop-opacity="0.2"/>
    </radialGradient>
    <linearGradient id="waterBg" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#001840"/>
      <stop offset="100%" stop-color="#004080"/>
    </linearGradient>
  </defs>

  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#waterBg)"/>
  
  <!-- Bubbles -->
  <circle cx="50" cy="240" r="8" fill="rgba(255,255,255,0.2)"/>
  <circle cx="260" cy="180" r="12" fill="rgba(255,255,255,0.15)"/>
  <circle cx="180" cy="220" r="6" fill="rgba(255,255,255,0.2)"/>
  
  <!-- Coral Orchestra Members -->
  <path d="M40,260 Q60,220 80,260" fill="#ff6b6b" stroke="#ff4040"/>
  <path d="M90,270 Q120,200 150,270" fill="#4ecdc4" stroke="#45b7b0"/>
  <path d="M200,265 Q230,225 260,265" fill="#ffe66d" stroke="#ffd700"/>
  
  <!-- Jellyfish Conductor -->
  <g transform="translate(150,120)">
    <!-- Bell -->
    <ellipse cx="0" cy="0" rx="40" ry="30" fill="url(#jellyGlow)"/>
    
    <!-- Tentacles -->
    <path d="M-30,20 Q-20,60 -40,90" stroke="#ff88ff" fill="none" stroke-width="3"/>
    <path d="M-15,20 Q0,70 -10,100" stroke="#ff88ff" fill="none" stroke-width="3"/>
    <path d="M15,20 Q30,65 20,95" stroke="#ff88ff" fill="none" stroke-width="3"/>
    <path d="M30,20 Q40,50 50,85" stroke="#ff88ff" fill="none" stroke-width="3"/>
    
    <!-- Conductor's Baton -->
    <path d="M0,10 L20,-20" stroke="white" stroke-width="2"/>
    <circle cx="20" cy="-20" r="3" fill="white"/>
  </g>
  
  <!-- Musical Notes -->
  <g fill="white" opacity="0.6">
    <path d="M80,140 l5,-10 l5,10 l-10,0" transform="rotate(30,80,140)"/>
    <path d="M200,160 l5,-10 l5,10 l-10,0" transform="rotate(-20,200,160)"/>
    <path d="M140,90 l5,-10 l5,10 l-10,0" transform="rotate(10,140,90)"/>
  </g>
  
  <!-- Light Beams -->
  <path d="M0,0 L300,300" stroke="rgba(255,255,255,0.1)" stroke-width="40"/>
  <path d="M300,0 L0,300" stroke="rgba(255,255,255,0.1)" stroke-width="20"/>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background with gradient and texture -->
  <defs>
    <linearGradient id="seaGradient" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0" stop-color="#1a237e" />
      <stop offset="1" stop-color="#0d47a1" />
    </linearGradient>
    <path id="coralPath" d="M50,200 Q60,180 70,200 Q80,220 90,200 Q100,180 110,200 Q120,220 130,200" />
    <pattern id="coralPattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse">
      <use xlink:href="#coralPath" fill="#ff8a65" />
    </pattern>
  </defs>

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

  <!-- Jellyfish conductor -->
  <g transform="translate(150,100)">
    <!-- Jellyfish bell -->
    <ellipse cx="0" cy="0" rx="80" ry="60" fill="#4facfe" opacity="0.8">
      <animate attributeName="opacity" from="0.8" to="1" dur="2s" repeatCount="indefinite" />
    </ellipse>
    <!-- Tentacles -->
    <path d="M0,60 Q-40,80 -60,60 L-60,120 Q-40,140 -20,120 L-20,180 Q0,200 20,180 L20,120 Q40,140 60,120 L60,60 Q40,80 0,60" 
          fill="#4facfe" opacity="0.5" />
    <!-- Face features -->
    <circle cx="-20" cy="-30" r="15" fill="#ffffff" />
    <circle cx="20" cy="-30" r="15" fill="#ffffff" />
    <path d="M-25,-45 Q0,-50 25,-45" stroke="#ffffff" stroke-width="2" />
  </g>

  <!-- Coral instruments -->
  <g transform="translate(50,200)" opacity="0.9">
    <!-- Flute -->
    <path d="M0,0 Q20,-20 40,0 Q60,-20 80,0 Q100,-20 120,0" fill="#ff8a65" />
    <!-- Harp -->
    <rect x="150" y="0" width="40" height="100" fill="#ff8a65" rx="10" />
    <path d="M160,10 Q170,20 160,30 Q170,40 160,50 Q170,60 160,70" stroke="#ffd180" stroke-width="3" />
    <!-- Drum -->
    <circle cx="250" cy="50" r="30" fill="#ff8a65" />
    <circle cx="250" cy="50" r="25" fill="url(#coralPattern)" />
  </g>

  <!-- Orchestra pit -->
  <rect x="50" y="180" width="200" height="100" fill="#4facfe" rx="20" opacity="0.3" />

  <!-- Conductor baton -->
  <line x1="150" y1="80" x2="150" y2="120" stroke="#ffffff" stroke-width="4" />
  <circle cx="150" cy="120" r="8" fill="#ffffff" opacity="0.6" />

  <!-- Fish -->
  <path d="M200,150 Q220,160 200,170 Q180,160 160,150" fill="#ff8a65" opacity="0.5" />
  <path d="M250,250 Q260,240 250,230 Q240,240 230,250" fill="#4facfe" opacity="0.5" />
  <path d="M300,200 Q310,190 300,180 Q290,190 280,200" fill="#ffd180" opacity="0.5" />

  <!-- Light effects -->
  <circle cx="150" cy="50" r="30" fill="#ffffff" opacity="0.2" />
  <circle cx="100" cy="100" r="20" fill="#ffffff" opacity="0.3" />
  <circle cx="200" cy="80" r="25" fill="#ffffff" opacity="0.3" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Claude 3.5 Sonnet (2024-10-22) Player 1

Judge's Analysis

    Player 1's image creatively depicts a jellyfish with a conducting baton, surrounded by colorful coral-like elements, aligning well with the prompt.

    The technical quality is good, with clear shapes and vibrant colors.

    Player 2's submission fails to load, making it impossible to evaluate against the criteria.

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
19
Player 2
21
Rectangles

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

Player 1
1
Player 2
3
Circles

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

Player 1
4
Player 2
8
Ellipses

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

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

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

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

The number of elements with stroke attributes in the SVG.

Player 1
10
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
14
Player 2
6

Interactivity Metrics

Animations

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

Player 1
Player 2
1
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
4
Player 2
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
32
Player 2
34
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
2
Player 2
3
Use Elements

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

Player 1
Player 2
1

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