Back

SVG Drawing Match #1406

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Jellyfish wearing top hats floating over a city skyline"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background with gradient -->
  <defs>
    <linearGradient id="sky" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0" stop-color="#1a1a4a" stop-opacity="1"/>
      <stop offset="1" stop-color="#0a0a2a" stop-opacity="1"/>
    </linearGradient>
    
    <linearGradient id="jelly" x1="0" y1="0" x2="0" y2="200">
      <stop offset="0" stop-color="#4a4a8f" stop-opacity="0.6"/>
      <stop offset="1" stop-color="#2a2a6a" stop-opacity="0.3"/>
    </linearGradient>
    
    <path id="tentacle" d="M0,0 Q50,50 100,0 Q150,-50 200,0 Q250,50 300,0"/>
  </defs>

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

  <!-- City skyline -->
  <g transform="translate(0,200)">
    <rect x="20" y="0" width="40" height="120" fill="#444" rx="10"/>
    <rect x="80" y="0" width="40" height="160" fill="#666" rx="10"/>
    <rect x="140" y="0" width="40" height="180" fill="#888" rx="10"/>
    <rect x="200" y="0" width="40" height="140" fill="#aaa" rx="10"/>
    <rect x="260" y="0" width="40" height="100" fill="#ccc" rx="10"/>
    
    <!-- Windows -->
    <rect x="30" y="40" width="10" height="10" fill="#4a4a8f"/>
    <rect x="50" y="60" width="10" height="10" fill="#4a4a8f"/>
    <rect x="90" y="50" width="10" height="10" fill="#4a4a8f"/>
    <rect x="110" y="70" width="10" height="10" fill="#4a4a8f"/>
    <rect x="150" y="80" width="10" height="10" fill="#4a4a8f"/>
    <rect x="170" y="90" width="10" height="10" fill="#4a4a8f"/>
    <rect x="210" y="60" width="10" height="10" fill="#4a4a8f"/>
    <rect x="230" y="80" width="10" height="10" fill="#4a4a8f"/>
    <rect x="270" y="40" width="10" height="10" fill="#4a4a8f"/>
    <rect x="290" y="60" width="10" height="10" fill="#4a4a8f"/>
  </g>

  <!-- Jellyfish -->
  <g transform="translate(150,100)">
    <!-- Jellyfish bell -->
    <ellipse cx="0" cy="0" rx="40" ry="30" fill="url(#jelly)"/>
    
    <!-- Tentacles -->
    <use href="#tentacle" fill="none" stroke="#4a8f4a" stroke-width="2"/>
    <use href="#tentacle" transform="rotate(60)" fill="none" stroke="#4a8f4a" stroke-width="2"/>
    <use href="#tentacle" transform="rotate(-60)" fill="none" stroke="#4a8f4a" stroke-width="2"/>
    
    <!-- Top hat -->
    <path d="M-30,-40 L30,-40 L35,-90 L-35,-90 Z" fill="#000"/>
    <path d="M-25,-85 L25,-85 L30,-95 L-30,-95 Z" fill="#000"/>
    <path d="M-20,-90 L20,-90 L25,-100 L-25,-100 Z" fill="#000"/>
    
    <!-- Hat band and feather -->
    <rect x="-15" y="-95" width="30" height="5" fill="#4a4a8f"/>
    <path d="M0,-105 L10,-95 L-10,-95 Z" fill="#4a4a8f"/>
  </g>

  <!-- Stars and sparks -->
  <g transform="translate(0,0)" opacity="0.6">
    <circle cx="50" cy="50" r="1" fill="#fff"/>
    <circle cx="100" cy="80" r="1" fill="#fff"/>
    <circle cx="150" cy="30" r="1" fill="#fff"/>
    <circle cx="200" cy="60" r="1" fill="#fff"/>
    <circle cx="250" cy="40" r="1" fill="#fff"/>
    
    <!-- Spark bursts -->
    <path d="M150,100 L155,105 L160,100 L155,115 L150,100 Z" fill="#fff" opacity="0.3"/>
    <path d="M230,80 L235,85 L240,80 L235,95 L230,80 Z" fill="#fff" opacity="0.3"/>
  </g>
</svg>
SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="jellyfishGrad" cx="50%" cy="50%" r="100%">
      <stop offset="0%" stop-color="#fff"/>
      <stop offset="100%" stop-color="#66b3ff"/>
    </radialGradient>
    <pattern id="cityPattern" x="0" y="0" width="20" height="20">
      <rect width="20" height="20" fill="#333"/>
    </pattern>
  </defs>
  <rect width="300" height="300" fill="linearGradient(45deg, #1a1a33 0%, #003366 100%)"/>
  
  <!-- Jellyfish 1 -->
  <g transform="translate(100,150)">
    <circle r="30" fill="url(#jellyfishGrad)" opacity="0.8"/>
    <path d="M0,0 Q-40,-30 -20,-40 Q0,-50 20,-40 Q40,-30 0,0" stroke="#66b3ff" fill="none" stroke-width="2"/>
    <rect x="-10" y="-40" width="20" height="20" rx="5" fill="#ff6666"/>
    <path d="M-10,-35 L10,-35 Q0,-30 -10,-35" fill="#ff6666"/>
  </g>

  <!-- Jellyfish 2 -->
  <g transform="translate(200,120)">
    <circle r="25" fill="url(#jellyfishGrad)" opacity="0.8"/>
    <path d="M0,0 Q-30,-25 -15,-35 Q0,-45 15,-35 Q30,-25 0,0" stroke="#66b3ff" fill="none" stroke-width="2"/>
    <rect x="-8" y="-35" width="16" height="18" rx="4" fill="#6666ff"/>
    <path d="M-8,-30 L8,-30 Q0,-25 -8,-30" fill="#6666ff"/>
  </g>

  <!-- City Skyline -->
  <g transform="translate(0,220)">
    <rect width="300" height="80" fill="#1a1a33"/>
    <rect x="50" y="20" width="40" height="60" rx="5" fill="#336699"/>
    <rect x="100" y="10" width="30" height="70" rx="5" fill="#4d4d4d"/>
    <rect x="150" y="30" width="50" height="50" rx="10" fill="#666666"/>
    <rect x="200" y="40" width="40" height="40" rx="8" fill="#333366"/>
    <rect x="250" y="25" width="30" height="55" rx="5" fill="#4d4d4d"/>
    
    <!-- Windows -->
    <rect x="55" y="25" width="30" height="50" fill="none">
      <rect x="55" y="25" width="30" height="50" fill="url(#cityPattern)"/>
    </rect>
    <rect x="105" y="15" width="20" height="60" fill="none">
      <rect x="105" y="15" width="20" height="60" fill="url(#cityPattern)"/>
    </rect>
  </g>

  <!-- Stars -->
  <g opacity="0.5">
    <circle cx="50" cy="50" r="1" fill="#fff"/>
    <circle cx="150" cy="70" r="1.5" fill="#fff"/>
    <circle cx="250" cy="30" r="1" fill="#fff"/>
  </g>

  <!-- Jellyfish Tentacles -->
  <g stroke="#66b3ff" stroke-width="1" fill="none">
    <path d="M100,150 C90,160 110,170 100,180"/>
    <path d="M100,150 C80,155 120,155 100,160"/>
    <path d="M200,120 C190,130 210,130 200,140"/>
    <path d="M200,120 C180,125 220,125 200,130"/>
  </g>

  <!-- Floating Hats -->
  <g transform="translate(100,140)">
    <rect x="-10" y="-40" width="20" height="20" rx="5" fill="#ff6666"/>
    <rect x="-12" y="-20" width="24" height="5" rx="3" fill="#ff6666"/>
  </g>
  <g transform="translate(200,110)">
    <rect x="-10" y="-35" width="20" height="18" rx="5" fill="#6666ff"/>
    <rect x="-12" y="-15" width="24" height="5" rx="3" fill="#6666ff"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Qwen-32B Player 2

Judge's Analysis

    Player 2's submission better captures the whimsical idea of jellyfish wearing top hats over a city skyline.

    The use of distinct colors for the jellyfish and hats enhances their prominence and creativity.

    Additionally, the composition is clearer and more visually appealing compared to Player 1's darker and less defined image.

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

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

Player 1
17
Player 2
18
Circles

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

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

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

Player 1
3
Player 2
7

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

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
12
Player 2
10

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
5

Complexity Metrics

Path Commands

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

Player 1
35
Player 2
22
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
2
Use Elements

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

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