Back

SVG Drawing Match #476

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Glowing jellyfish orchestra performing in a deep-sea concert hall"

SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="bgGradient" cx="50%" cy="50%" r="70%">
      <stop offset="0%" stop-color="#001d3d" />
      <stop offset="100%" stop-color="#000000" />
    </radialGradient>
    <radialGradient id="jellyGradient1" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ff6ec7" />
      <stop offset="100%" stop-color="#ff3366" />
    </radialGradient>
    <radialGradient id="jellyGradient2" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#66ccff" />
      <stop offset="100%" stop-color="#3366ff" />
    </radialGradient>
    <radialGradient id="jellyGradient3" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#99ff99" />
      <stop offset="100%" stop-color="#33cc33" />
    </radialGradient>
    <linearGradient id="hallGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" stop-color="#444" />
      <stop offset="100%" stop-color="#222" />
    </linearGradient>
    <filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur stdDeviation="3.5" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  <rect width="300" height="300" fill="url(#bgGradient)" />
  
  <!-- Concert Hall -->
  <g opacity="0.7">
    <ellipse cx="150" cy="250" rx="120" ry="30" fill="url(#hallGradient)" />
    <path d="M30,250 Q150,180 270,250" fill="none" stroke="#555" stroke-width="4" />
    <path d="M50,250 Q150,200 250,250" fill="none" stroke="#666" stroke-width="3" />
    <path d="M70,250 Q150,220 230,250" fill="none" stroke="#777" stroke-width="2" />
  </g>
  
  <!-- Jellyfish 1 -->
  <g transform="translate(80, 170)" filter="url(#glow)">
    <ellipse cx="0" cy="0" rx="20" ry="30" fill="url(#jellyGradient1)" />
    <path d="M-10,30 C-15,40 -10,45 0,50 C10,45 15,40 10,30" fill="none" stroke="#ff66cc" stroke-width="2"/>
    <path d="M10,30 C15,40 10,45 0,50 C-10,45 -15,40 -10,30" fill="none" stroke="#ff66cc" stroke-width="2"/>
  </g>
  
  <!-- Jellyfish 2 -->
  <g transform="translate(150, 160)" filter="url(#glow)">
    <ellipse cx="0" cy="0" rx="25" ry="35" fill="url(#jellyGradient2)" />
    <path d="M-12,35 C-18,45 -12,50 0,55 C12,50 18,45 12,35" fill="none" stroke="#66ccff" stroke-width="2"/>
    <path d="M12,35 C18,45 12,50 0,55 C-12,50 -18,45 -12,35" fill="none" stroke="#66ccff" stroke-width="2"/>
  </g>
  
  <!-- Jellyfish 3 -->
  <g transform="translate(220, 180)" filter="url(#glow)">
    <ellipse cx="0" cy="0" rx="18" ry="28" fill="url(#jellyGradient3)" />
    <path d="M-9,28 C-14,38 -9,43 0,48 C9,43 14,38 9,28" fill="none" stroke="#99ff99" stroke-width="2"/>
    <path d="M9,28 C14,38 9,43 0,48 C-9,43 -14,38 -9,28" fill="none" stroke="#99ff99" stroke-width="2"/>
  </g>
  
  <!-- Musical Notes -->
  <g fill="#fff" opacity="0.8">
    <path d="M200,80 q10,-10 20,0 t20,0" />
    <circle cx="240" cy="80" r="3" />
    <path d="M220,100 q10,-10 20,0 t20,0" />
    <circle cx="260" cy="100" r="3" />
  </g>
  
  <!-- Light Rays -->
  <g stroke="#ffffff" stroke-opacity="0.1">
    <line x1="150" y1="0" x2="150" y2="300" stroke-width="1"/>
    <line x1="0" y1="150" x2="300" y2="150" stroke-width="1"/>
    <line x1="75" y1="75" x2="225" y2="225" stroke-width="0.5"/>
    <line x1="225" y1="75" x2="75" y2="225" stroke-width="0.5"/>
  </g>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Deep-sea background with gradient -->
  <defs>
    <linearGradient id="seaGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#1a1a4a;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#000000;stop-opacity:1" />
    </linearGradient>
    
    <!-- Glowing effect for jellyfish -->
    <filter id="glow">
      <feGaussianBlur stdDeviation="4" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    
    <!-- Iridescent colors for jellyfish -->
    <linearGradient id="jellyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#00ffff;stop-opacity:0.8" />
      <stop offset="50%" style="stop-color:#ff00ff;stop-opacity:0.8" />
      <stop offset="100%" style="stop-color:#ffff00;stop-opacity:0.8" />
    </linearGradient>
  </defs>

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

  <!-- Concert hall architecture -->
  <path d="M50,100 C100,100 250,100 300,150 L300,150 Q300,150 300,250 L300,250 Q300,250 250,250 L250,250 C250,250 100,250 50,250 L50,250 Q50,250 0,250 L0,250 Q0,250 0,150 L0,150 Q0,150 50,150 L50,150 Z" 
        fill="transparent" stroke="white" stroke-width="2" filter="url(#glow)"/>

  <!-- Jellyfish orchestra -->
  <g transform="translate(100,150)">
    <!-- Main jellyfish (conductor) -->
    <circle cx="0" cy="0" r="30" fill="url(#jellyGradient)" filter="url(#glow)">
      <animateTransform attributeName="transform" type="rotate" from="0 0 0" to="360 0 0" dur="8s" repeatCount="indefinite"/>
    </circle>
    <path d="M0,0 Q-40,-40 -40,-80 Q-40,-120 -20,-120 L-20,-120 Q0,-120 20,-120 L20,-120 Q40,-120 40,-80 L40,-80 Q40,-40 0,0" fill="none" stroke="white" stroke-width="2"/>
    
    <!-- Jellyfish with instrument -->
    <g transform="translate(100,0)">
      <circle cx="0" cy="0" r="25" fill="url(#jellyGradient)" filter="url(#glow)">
        <animateTransform attributeName="transform" type="scale" from="1" to="1.2" dur="2s" repeatCount="indefinite"/>
      </circle>
      <path d="M0,0 Q-30,-20 -30,-50 L-30,-50 Q-30,-70 -20,-70 L20,-70 Q30,-70 30,-50 L30,-50 Q30,-20 0,0" fill="none" stroke="white" stroke-width="2"/>
      <path d="M-30,-50 Q-40,-60 -40,-70 M30,-50 Q40,-60 40,-70" stroke="white" stroke-width="2"/>
    </g>

    <!-- Jellyfish with harp -->
    <g transform="translate(-100,0)">
      <circle cx="0" cy="0" r="25" fill="url(#jellyGradient)" filter="url(#glow)">
        <animateTransform attributeName="transform" type="scale" from="1" to="1.2" dur="2s" repeatCount="indefinite"/>
      </circle>
      <path d="M0,0 Q-40,-20 -40,-80 L-40,-80 Q-40,-120 -20,-120 L20,-120 Q40,-120 40,-80 L40,-80 Q40,-20 0,0" fill="none" stroke="white" stroke-width="2"/>
      <path d="M-40,-40 Q-50,-30 -50,-20 M-40,-60 Q-50,-50 -50,-40" stroke="white" stroke-width="2"/>
    </g>
  </g>

  <!-- Floating light effects -->
  <g id="lights">
    <circle cx="50" cy="50" r="2" fill="white" opacity="0.8">
      <animate attributeName="opacity" from="0.8" to="0" dur="2s" repeatCount="indefinite"/>
      <animate attributeName="cx" from="50" to="250" dur="4s" repeatCount="indefinite"/>
    </circle>
    <circle cx="250" cy="50" r="2" fill="white" opacity="0.8">
      <animate attributeName="opacity" from="0.8" to="0" dur="2s" repeatCount="indefinite"/>
      <animate attributeName="cx" from="250" to="50" dur="4s" repeatCount="indefinite"/>
    </circle>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Llama-70B Player 2

Judge's Analysis

    Player 2's image showcases a more creative interpretation of the theme with its vibrant color gradients and abstract representation, suggesting a dynamic and harmonious concert scene.

    The use of glowing outlines and varied shapes enhances the visual appeal and effectively conveys the concept of a jellyfish orchestra.

    In contrast, Player 1's image lacks complexity and depth, making Player 2's submission more compelling overall.

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
22
Player 2
12
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
2
Player 2
5
Ellipses

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

Player 1
4
Player 2
Lines

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

Player 1
4
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
11
Player 2
6
Groups

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

Player 1
6
Player 2
4

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
10
Player 2
6

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
16
Player 2
2

Interactivity Metrics

Animations

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

Player 1
Player 2
7
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
3
Player 2
3

Complexity Metrics

Path Commands

The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.

Player 1
30
Player 2
49
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

Player 1
Player 2
1
Defs Elements

The number of elements defined within the defs element in the SVG.

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