Back

SVG Drawing Match #394

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A neon jellyfish with an umbrella floating above a city skyline at twilight"

SVG by DeepSeek V3
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#1a2a6c"/>
      <stop offset="50%" stop-color="#b21f1f"/>
      <stop offset="100%" stop-color="#fdbb2d"/>
    </linearGradient>
    <radialGradient id="jellyfishGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#ff00ff"/>
      <stop offset="100%" stop-color="#00ffff"/>
    </radialGradient>
    <pattern id="cityPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <rect x="0" y="0" width="20" height="10" fill="#333"/>
      <rect x="5" y="10" width="10" height="10" fill="#666"/>
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  <rect x="0" y="200" width="300" height="100" fill="url(#cityPattern)"/>
  <circle cx="150" cy="100" r="60" fill="url(#jellyfishGradient)" opacity="0.8"/>
  <path d="M150,140 C120,160 120,200 150,220 C180,200 180,160 150,140Z" fill="none" stroke="#00ffff" stroke-width="5" stroke-linejoin="round"/>
  <path d="M120,120 Q150,100 180,120" fill="none" stroke="#ff00ff" stroke-width="5" stroke-linecap="round"/>
  <path d="M120,170 Q150,190 180,170" fill="none" stroke="#ff00ff" stroke-width="5" stroke-linecap="round"/>
  <path d="M150,100 Q150,50 200,50 Q250,50 250,100" fill="none" stroke="#ffffff" stroke-width="5" stroke-linecap="round"/>
  <circle cx="250" cy="100" r="10" fill="#ffffff"/>
  <path d="M250,100 Q250,120 230,130 Q210,140 200,150" fill="none" stroke="#ffffff" stroke-width="3" stroke-linecap="round"/>
  <path d="M250,100 Q250,80 230,70 Q210,60 200,50" fill="none" stroke="#ffffff" stroke-width="3" stroke-linecap="round"/>
</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- City Skyline -->
  <rect x="0" y="150" width="300" height="150" fill="#140035" />
  <rect x="30" y="120" width="40" height="30" fill="#1a046d" />
  <rect x="100" y="130" width="50" height="40" fill="#1a046d" />
  <rect x="200" y="120" width="60" height="30" fill="#1a046d" />
  <rect x="60" y="160" width="30" height="60" fill="#1a046d" />
  <rect x="140" y="150" width="40" height="50" fill="#1a046d" />
  <rect x="230" y="160" width="30" height="60" fill="#1a046d" />
  <!-- Water -->
  <rect x="0" y="150" width="300" height="150" fill="#00193d" opacity="0.6" />
  <!-- Jellyfish Body -->
  <circle cx="150" cy="120" r="40" fill="#bbf3ef" />
  <!-- Jellyfish Tentacles -->
  <circle cx="140" cy="160" r="5" fill="#bbf3ef" />
  <circle cx="160" cy="160" r="5" fill="#bbf3ef" />
  <circle cx="135" cy="180" r="5" fill="#bbf3ef" />
  <circle cx="165" cy="180" r="5" fill="#bbf3ef" />
  <circle cx="130" cy="200" r="5" fill="#bbf3ef" />
  <circle cx="170" cy="200" r="5" fill="#bbf3ef" />
  <!-- Neon Jellyfish Glow -->
  <circle cx="150" cy="120" r="45" fill="none" stroke="#e8407f" stroke-width="10" opacity="0.8" />
  <!-- Umbrella Top -->
  <path d="M120,110 Q150,70 180,110 Z" fill="#ffdd00" />
  <!-- Umbrella Handle -->
  <path d="M150,110 L150,70" stroke="#3c3c3c" stroke-width="6" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek V3 Player 1

Judge's Analysis

    Player 1's image effectively captures the essence of a neon jellyfish with an umbrella, using vibrant colors and a clear representation of a city skyline at twilight.

    The gradient sky and structured cityscape add depth and context.

    In contrast, Player 2's image lacks clarity in depicting the prompt elements distinctly, particularly the city skyline and the jellyfish's features.

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

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

Player 1
4
Player 2
8
Circles

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

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

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

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

The number of elements with stroke attributes in the SVG.

Player 1
6
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
7

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
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
5
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