Back

SVG Drawing Match #1545

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Bioluminescent jellyfish spiraling around a neon-lit diver"

SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <filter id="glow">
      <feGaussianBlur stdDeviation="4" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    <linearGradient id="jellyGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#FF61D2;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#FF006D;stop-opacity:1"/>
    </linearGradient>
    <linearGradient id="diverGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#00FFA6;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#00FF6B;stop-opacity:1"/>
    </linearGradient>
  </defs>
  
  <!-- Background -->
  <rect width="300" height="300" fill="#001A33"/>
  
  <!-- Diver -->
  <g filter="url(#glow)">
    <path d="M150,180c-50,0-50,50-0,50s50-50,0-50" fill="url(#diverGradient)" stroke="#00FF6B" stroke-width="2"/>
    <rect x="140" y="180" width="20" height="40" fill="#00FFA6" rx="10"/>
    <circle cx="150" cy="160" r="15" fill="#00FFFF" filter="url(#glow)"/>
  </g>
  
  <!-- Jellyfish -->
  <g>
    <path d="M120,100c0,40-35,70-70,70-35,0-65-30-65-65s30-65,65-65c35,0,70,30,70,65 0,35-35,65-70,65" fill="url(#jellyGradient)" filter="url(#glow)"/>
    <path d="M280,150c0,40-35,70-70,70-35,0-65-30-65-65s30-65,65-65c35,0,70,30,70,65 0,35-35,65-70,65" fill="url(#jellyGradient)" filter="url(#glow)" transform="rotate(60 280 150)"/>
    <path d="M80,220c0,40-35,70-70,70-35,0-65-30-65-65s30-65,65-65c35,0,70,30,70,65 0,35-35,65-70,65" fill="url(#jellyGradient)" filter="url(#glow)" transform="rotate(-60 80 220)"/>
  </g>
  
  <!-- Spiral Path -->
  <path d="M150,100c0,50-50,100-100,100 50,0 100-50,100-100" stroke="#00FFFF" stroke-width="2" fill="none" stroke-dasharray="5,5" filter="url(#glow)"/>
  
  <!-- Diver Details -->
  <g transform="translate(150,180)">
    <rect x="-10" y="-20" width="20" height="40" fill="#00FFA6" rx="10"/>
    <rect x="-20" y="-10" width="40" height="20" fill="#00FFA6" rx="10"/>
  </g>
  
  <!-- Jellyfish Details -->
  <g transform="translate(120,100)">
    <circle cx="0" cy="0" r="5" fill="#FF61D2" filter="url(#glow)"/>
    <circle cx="20" cy="-10" r="5" fill="#FF61D2" filter="url(#glow)"/>
    <circle cx="-20" cy="-10" r="5" fill="#FF61D2" filter="url(#glow)"/>
  </g>
  
  <!-- Lights -->
  <circle cx="150" cy="150" r="5" fill="#00FFFF" filter="url(#glow)"/>
  <circle cx="130" cy="130" r="3" fill="#00FFFF" filter="url(#glow)"/>
  <circle cx="170" cy="130" r="3" fill="#00FFFF" filter="url(#glow)"/>
</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#000" />
  
  <!-- Neon-lit diver -->
  <circle cx="150" cy="230" r="20" fill="#00ff00" stroke="#0f0" stroke-width="2" />
  <rect x="140" y="250" width="20" height="30" fill="#00ff00" />
  <line x1="150" y1="250" x2="150" y2="290" stroke="#0f0" stroke-width="2" />
  <line x1="150" y1="270" x2="130" y2="250" stroke="#0f0" stroke-width="2" />
  <line x1="150" y1="270" x2="170" y2="250" stroke="#0f0" stroke-width="2" />
  
  <!-- Bioluminescent jellyfish -->
  <!-- Tentacles -->
  <path d="M150 70 Q130 50 110 70" fill="none" stroke="#00f" stroke-width="2" />
  <path d="M150 70 Q140 40 130 70" fill="none" stroke="#00f" stroke-width="2" />
  <path d="M150 70 Q160 50 170 70" fill="none" stroke="#00f" stroke-width="2" />
  <path d="M150 70 Q160 40 170 70" fill="none" stroke="#00f" stroke-width="2" />
  <!-- Body -->
  <circle cx="150" cy="70" r="30" fill="#00f" stroke="#0af" stroke-width="2" />
  <circle cx="150" cy="70" r="10" fill="#0af" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Qwen-32B Player 1

Judge's Analysis

    Player 1's submission effectively captures the concept of bioluminescent jellyfish spiraling around a diver using vibrant colors and dynamic composition.

    The neon lights and spiraling motion are well-represented, creating a more engaging and visually appealing scene.

    In contrast, Player 2's image lacks the same level of creativity and dynamism, appearing more static and simplistic.

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
12
Rectangles

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

Player 1
4
Player 2
2
Circles

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

Player 1
7
Player 2
3
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
3
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
5
Player 2
4
Groups

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

Player 1
4
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
9

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

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