Back

SVG Drawing Match #432

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Surreal jellyfish skyscrapers floating above a neon-lit cityscape"

SVG by o3-mini low (2025-01-31)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Gradient for skyscrapers -->
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#ff00ff" />
      <stop offset="100%" stop-color="#0000ff" />
    </linearGradient>
    <!-- Gradient for jellyfish tentacles -->
    <radialGradient id="jellyTentacle" cx="50%" cy="0%" r="1" fx="50%" fy="0%">
      <stop offset="0%" stop-color="#00ffff" stop-opacity="1"/>
      <stop offset="100%" stop-color="#000080" stop-opacity="0"/>
    </radialGradient>
    <!-- Neon glow filter -->
    <filter id="neonGlow">
      <feGaussianBlur stdDeviation="2.5" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur" />
        <feMergeNode in="SourceGraphic" />
      </feMerge>
    </filter>
    <!-- City glow gradient -->
    <linearGradient id="cityGlow" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#00ff00" />
      <stop offset="100%" stop-color="#003300" />
    </linearGradient>
  </defs>
  
  <!-- Background: Neon-lit sky -->
  <rect x="0" y="0" width="300" height="300" fill="black"/>
  
  <!-- Neon cityscape at bottom -->
  <g transform="translate(0,200)">
    <!-- Building silhouettes -->
    <rect x="10" y="20" width="20" height="80" fill="url(#cityGlow)" filter="url(#neonGlow)"/>
    <rect x="40" y="10" width="15" height="90" fill="url(#cityGlow)" filter="url(#neonGlow)"/>
    <rect x="65" y="30" width="25" height="70" fill="url(#cityGlow)" filter="url(#neonGlow)"/>
    <rect x="100" y="0" width="20" height="100" fill="url(#cityGlow)" filter="url(#neonGlow)"/>
    <rect x="130" y="25" width="30" height="75" fill="url(#cityGlow)" filter="url(#neonGlow)"/>
    <rect x="170" y="15" width="18" height="85" fill="url(#cityGlow)" filter="url(#neonGlow)"/>
    <rect x="195" y="35" width="22" height="65" fill="url(#cityGlow)" filter="url(#neonGlow)"/>
    <rect x="225" y="5" width="20" height="95" fill="url(#cityGlow)" filter="url(#neonGlow)"/>
    <rect x="255" y="40" width="15" height="60" fill="url(#cityGlow)" filter="url(#neonGlow)"/>
  </g>
  
  <!-- Surreal jellyfish skyscrapers floating above the cityscape -->
  <g transform="translate(0,0)">
    <!-- Skyscraper 1 -->
    <g transform="translate(80,80)">
      <!-- Building body resembling a jellyfish bell -->
      <ellipse cx="0" cy="0" rx="20" ry="30" fill="url(#skyGradient)" filter="url(#neonGlow)"/>
      <!-- Tentacles -->
      <path d="M -10 15 C -15 35, -25 40, -10 60" stroke="url(#jellyTentacle)" stroke-width="2" fill="none" filter="url(#neonGlow)"/>
      <path d="M 0 15 C -5 35, 5 45, 0 65" stroke="url(#jellyTentacle)" stroke-width="2" fill="none" filter="url(#neonGlow)"/>
      <path d="M 10 15 C 15 35, 25 40, 10 60" stroke="url(#jellyTentacle)" stroke-width="2" fill="none" filter="url(#neonGlow)"/>
      <!-- Details -->
      <line x1="-15" y1="-5" x2="-5" y2="-5" stroke="#ffffff" stroke-width="1" opacity="0.5" filter="url(#neonGlow)"/>
      <line x1="5" y1="-5" x2="15" y2="-5" stroke="#ffffff" stroke-width="1" opacity="0.5" filter="url(#neonGlow)"/>
    </g>
    
    <!-- Skyscraper 2 -->
    <g transform="translate(150,60)">
      <rect x="-15" y="-40" width="30" height="40" fill="url(#skyGradient)" rx="5" filter="url(#neonGlow)"/>
      <!-- Tentacles like dripping lights -->
      <path d="M -10 0 C -20 20, -5 30, -10 50" stroke="url(#jellyTentacle)" stroke-width="2" fill="none" filter="url(#neonGlow)"/>
      <path d="M 0 0 C 0 18, 0 28, 0 45" stroke="url(#jellyTentacle)" stroke-width="2" fill="none" filter="url(#neonGlow)"/>
      <path d="M 10 0 C 20 20, 5 30, 10 50" stroke="url(#jellyTentacle)" stroke-width="2" fill="none" filter="url(#neonGlow)"/>
      <!-- Window-like patterns -->
      <circle cx="-7" cy="-20" r="2" fill="#fff" filter="url(#neonGlow)"/>
      <circle cx="7" cy="-20" r="2" fill="#fff" filter="url(#neonGlow)"/>
    </g>
    
    <!-- Skyscraper 3 -->
    <g transform="translate(220,90)">
      <!-- Inverse structure with tentacle-like spires -->
      <polygon points="-15,-20 15,-20 10,0 -10,0" fill="url(#skyGradient)" filter="url(#neonGlow)"/>
      <path d="M -5 0 C -10 15, -10 25, -5 40" stroke="url(#jellyTentacle)" stroke-width="2" fill="none" filter="url(#neonGlow)"/>
      <path d="M 0 0 C 0 15, 0 25, 0 40" stroke="url(#jellyTentacle)" stroke-width="2" fill="none" filter="url(#neonGlow)"/>
      <path d="M 5 0 C 10 15, 10 25, 5 40" stroke="url(#jellyTentacle)" stroke-width="2" fill="none" filter="url(#neonGlow)"/>
      <!-- Light orbs -->
      <circle cx="0" cy="-10" r="1.5" fill="#f0f" filter="url(#neonGlow)"/>
    </g>
  </g>
  
  <!-- Additional surreal floating elements -->
  <g opacity="0.7">
    <circle cx="60" cy="50" r="6" fill="#ffdd00" filter="url(neonGlow)"/>
    <circle cx="240" cy="40" r="4" fill="#ff66ff" filter="url(neonGlow)"/>
    <circle cx="140" cy="20" r="5" fill="#66ff66" filter="url(neonGlow)"/>
  </g>
  
  <!-- Subtle glow on entire scene -->
  <rect x="0" y="0" width="300" height="300" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"/>
</svg>
SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <filter id="neonGlow">
      <feGaussianBlur stdDeviation="2" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    <linearGradient id="jellyFishGradient">
      <stop offset="0%" stop-color="#FF61D2" stop-opacity="0.8"/>
      <stop offset="100%" stop-color="#FFFFFF" stop-opacity="0.3"/>
    </linearGradient>
    <linearGradient id="neonBlue">
      <stop offset="0%" stop-color="#00F3FF"/>
      <stop offset="100%" stop-color="#00A8FF"/>
    </linearGradient>
  </defs>
  <rect width="300" height="300" fill="url(#darkBackground)"/>
  <g id="cityscape">
    <rect x="10" y="150" width="40" height="90" fill="url(#neonBlue)" filter="url(#neonGlow)"/>
    <rect x="60" y="120" width="40" height="130" fill="url(#neonBlue)" filter="url(#neonGlow)"/>
    <rect x="110" y="140" width="40" height="110" fill="url(#neonBlue)" filter="url(#neonGlow)"/>
    <rect x="160" y="130" width="40" height="120" fill="url(#neonBlue)" filter="url(#neonGlow)"/>
    <rect x="210" y="170" width="40" height="80" fill="url(#neonBlue)" filter="url(#neonGlow)"/>
    <rect x="260" y="140" width="40" height="110" fill="url(#neonBlue)" filter="url(#neonGlow)"/>
  </g>
  <g id="jellyfish">
    <path d="M150,100 Q100,50 50,100 Q0,150 50,200 Q100,250 150,200 Q200,150 150,100" fill="url(#jellyFishGradient)" opacity="0.8"/>
    <path d="M150,100 Q120,30 180,60" fill="url(#jellyFishGradient)" opacity="0.6"/>
    <path d="M150,100 Q180,40 210,70" fill="url(#jellyFishGradient)" opacity="0.6"/>
    <path d="M150,100 Q130,70 140,40" fill="url(#jellyFishGradient)" opacity="0.6"/>
    <path d="M150,100 Q160,70 170,40" fill="url(#jellyFishGradient)" opacity="0.6"/>
  </g>
  <g id="water">
    <path d="M0,250 Q150,270 300,250 L300,300 L0,300 Z" fill="url(#waterGradient)"/>
    <path d="M0,240 Q150,260 300,240" stroke="#00B7FF" stroke-width="2" opacity="0.5"/>
  </g>
  <g id="neonLights">
    <circle cx="200" cy="80" r="10" fill="url(#neonBlue)" filter="url(#neonGlow)"/>
    <circle cx="100" cy="60" r="15" fill="url(#neonBlue)" filter="url(#neonGlow)"/>
    <circle cx="250" cy="70" r="12" fill="url(#neonBlue)" filter="url(#neonGlow)"/>
    <path d="M100,60 L120,40 L140,60" stroke="#00F3FF" stroke-width="2" filter="url(#neonGlow)"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O3-mini low (2025-01-31) Player 1

Judge's Analysis

    Player 1's image captures the surreal essence of jellyfish as skyscrapers with a vibrant neon glow that contrasts well with the dark background, creating a more dynamic and visually appealing scene.

    The use of color and form effectively conveys the prompt's concept, while maintaining a balance between the jellyfish and the cityscape elements.

    Player 2's submission, although creative, lacks the clear depiction of jellyfish and the surreal quality is less pronounced.

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
31
Player 2
18
Rectangles

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

Player 1
12
Player 2
7
Circles

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

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

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

Player 1
1
Player 2
Paths

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

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

The number of elements with stroke attributes in the SVG.

Player 1
12
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
14
Player 2
5

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
5
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
18
Player 2
23
Max Group Nesting

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

Player 1
1
Player 2
Defs Elements

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

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