Back

SVG Drawing Match #572

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Gravity-defying whale floating above a neon cityscape at midnight"

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%" style="stop-color:#0b3a5a;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#000033;stop-opacity:1"/>
    </linearGradient>
    <linearGradient id="whaleGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" style="stop-color:#4a90e2;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#2b5876;stop-opacity:1"/>
    </linearGradient>
    <linearGradient id="neonGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" style="stop-color:#ff00ff;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#00ffff;stop-opacity:1"/>
    </linearGradient>
    <pattern id="stars" width="3" height="3" patternUnits="userSpaceOnUse">
      <circle cx="1.5" cy="1.5" r="1" fill="white"/>
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  <rect width="300" height="300" fill="url(#stars)" opacity="0.5"/>
  <g transform="translate(150,100)">
    <ellipse cx="0" cy="0" rx="70" ry="40" fill="url(#whaleGradient)" transform="rotate(-10)"/>
    <ellipse cx="35" cy="-20" rx="20" ry="10" fill="#2b5876" transform="rotate(-10)"/>
    <path d="M -70 0 Q -90 10 -85 30 Q -80 50 -60 50 L -40 40 L -35 30 Q -40 10 -70 0 Z" fill="#2b5876" transform="rotate(-10)"/>
    <path d="M 50 0 Q 70 10 75 30 Q 80 50 60 50 L 40 40 L 35 30 Q 40 10 50 0 Z" fill="#2b5876" transform="rotate(-10)"/>
    <path d="M -20 -50 Q -10 -60 0 -60 Q 10 -60 20 -50" fill="#2b5876" stroke="#2b5876" stroke-width="2"/>
  </g>
  <g transform="translate(0,200)">
    <rect x="0" y="0" width="300" height="100" fill="black"/>
    <path d="M 10 50 L 30 20 L 50 50 L 70 20 L 90 50 L 110 20 L 130 50 L 150 20 L 170 50 L 190 20 L 210 50 L 230 20 L 250 50 L 270 20 L 290 50" stroke="url(#neonGradient)" stroke-width="3" fill="none"/>
    <path d="M 20 70 L 40 40 L 60 70 L 80 40 L 100 70 L 120 40 L 140 70 L 160 40 L 180 70 L 200 40 L 220 70 L 240 40 L 260 70 L 280 40 L 300 70" stroke="url(#neonGradient)" stroke-width="3" fill="none"/>
  </g>
  <circle cx="50" cy="50" r="10" fill="white" opacity="0.8" filter="url(#glow)"/>
  <circle cx="250" cy="50" r="10" fill="white" opacity="0.8" filter="url(#glow)"/>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background with gradient and stars -->
  <rect width="300" height="300" fill="url(#nightSky)" />
  <defs>
    <linearGradient id="nightSky" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0" stop-color="#0a0a2e" />
      <stop offset="1" stop-color="#1a1a4f" />
    </linearGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="4" result="glow" />
      <feMerge>
        <feMergeNode in="glow" />
        <feMergeNode in="SourceGraphic" />
      </feMerge>
    </filter>
  </defs>

  <!-- Cityscape -->
  <g transform="translate(0,180)">
    <!-- Buildings -->
    <rect x="20" y="0" width="60" height="150" fill="url(#buildingGradient)" />
    <rect x="100" y="0" width="80" height="180" fill="url(#buildingGradient)" />
    <rect x="200" y="0" width="40" height="120" fill="url(#buildingGradient)" />
    <!-- Windows -->
    <rect x="30" y="30" width="40" height="40" fill="#00ffff" opacity="0.8" />
    <rect x="110" y="20" width="60" height="30" fill="#ff00ff" opacity="0.8" />
    <rect x="210" y="50" width="20" height="20" fill="#ffff00" opacity="0.8" />
    <!-- Street lights -->
    <rect x="0" y="160" width="300" height="20" fill="#333" />
    <circle cx="50" cy="170" r="2" fill="#ffcc00" />
    <circle cx="150" cy="170" r="2" fill="#ffcc00" />
    <circle cx="250" cy="170" r="2" fill="#ffcc00" />
  </g>

  <!-- Whale -->
  <path d="M150,100 C170,90 200,100 220,110 C240,120 260,130 260,140 C260,150 240,160 220,170 C200,180 180,170 160,160 C140,150 120,140 100,130 C80,120 70,110 60,100 C50,90 40,80 30,70 L50,60 L70,50 L90,60 L110,50 L130,60 L150,50 L170,60 L190,50 L210,60 C230,70 240,80 250,90 C260,100 270,110 280,120 C290,130 290,140 280,150 C270,160 260,170 250,180 C240,190 230,200 220,210 C200,220 180,210 160,200 C140,190 120,180 100,170 C80,160 60,150 40,140 C20,130 0,120 0,110 C0,100 10,90 20,80 L30,70 L50,60 L70,50 L90,60 L110,50 L130,60 L150,70 L170,60 L190,70 L210,60 C230,50 240,40 250,30 C260,20 270,10 280,0 C290,0 300,10 300,20 C300,30 290,40 280,50 C270,60 260,70 250,80 C240,90 230,100 220,110 C210,120 200,130 190,140 C180,150 170,160 160,170 C150,180 140,190 130,200 C120,210 110,220 100,230 C90,240 80,250 70,260 C60,270 50,280 40,290 C30,300 20,310 10,320 C0,330 -10,340 -20,350" 
      fill="url(#whaleGradient)" filter="url(#glow)" />
  <defs>
    <linearGradient id="whaleGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0" stop-color="#1a4f99" />
      <stop offset="1" stop-color="#2a5bff" />
    </linearGradient>
    <linearGradient id="buildingGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0" stop-color="#2a2a4a" />
      <stop offset="1" stop-color="#3a3a6a" />
    </linearGradient>
  </defs>
</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 better captures the concept of a gravity-defying whale floating above a neon cityscape.

    The whale's form is more dynamic and visually interesting, and the neon elements are integrated into the cityscape effectively, enhancing the midnight setting.

    Player 1's design is more abstract and less cohesive in conveying the prompt's theme.

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

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

Player 1
3
Player 2
8
Circles

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

Player 1
3
Player 2
3
Ellipses

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

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

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

Player 1
2
Player 2
1

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
3
Player 2
11

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

Complexity Metrics

Path Commands

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

Player 1
47
Player 2
51
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
4
Player 2
4
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