Back

SVG Drawing Match #2066

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Upside-down city with flying fish in the sky"

SVG by DeepSeek V3
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  <defs>
    <radialGradient id="skyGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#FFD700;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FF4500;stop-opacity:1" />
    </radialGradient>
    <linearGradient id="waterGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#1E90FF;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#00BFFF;stop-opacity:1" />
    </linearGradient>
    <pattern id="fishPattern" patternUnits="userSpaceOnUse" width="50" height="50">
      <path d="M25,10 C30,5 40,5 45,10 C50,15 50,25 45,30 C40,35 30,35 25,30 C20,25 20,15 25,10 Z" fill="#FF6347" />
      <path d="M30,20 L35,25 L30,30 Z" fill="#FF4500" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)" />
  <rect x="0" y="150" width="300" height="150" fill="url(#waterGradient)" />
  <g transform="translate(150,150) rotate(180)">
    <rect x="-150" y="-150" width="300" height="150" fill="#808080" />
    <rect x="-100" y="-140" width="200" height="130" fill="#A9A9A9" />
    <rect x="-80" y="-120" width="160" height="110" fill="#C0C0C0" />
    <rect x="-60" y="-100" width="120" height="90" fill="#D3D3D3" />
    <rect x="-40" y="-80" width="80" height="70" fill="#E0E0E0" />
    <rect x="-20" y="-60" width="40" height="50" fill="#F0F0F0" />
  </g>
  <g>
    <path d="M50,50 C70,30 100,30 120,50 C140,70 140,100 120,120 C100,140 70,140 50,120 C30,100 30,70 50,50 Z" fill="url(#fishPattern)" />
    <path d="M200,80 C220,60 250,60 270,80 C290,100 290,130 270,150 C250,170 220,170 200,150 C180,130 180,100 200,80 Z" fill="url(#fishPattern)" />
    <path d="M100,200 C120,180 150,180 170,200 C190,220 190,250 170,270 C150,290 120,290 100,270 C80,250 80,220 100,200 Z" fill="url(#fishPattern)" />
  </g>
</svg>
SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient">
      <stop offset="0%" stop-color="#87CEEB"/>
      <stop offset="100%" stop-color="#4B0082"/>
    </linearGradient>
    <linearGradient id="fishGradient">
      <stop offset="0%" stop-color="#FFB6C1"/>
      <stop offset="100%" stop-color="#FF69B4"/>
    </linearGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="4" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  <!-- Upside-down buildings -->
  <g transform="translate(150,150) rotate(-90)">
    <rect x="-100" y="-100" width="200" height="300" fill="#666"/>
    <rect x="-50" y="-50" width="100" height="200" fill="#888"/>
    <rect x="-25" y="-25" width="50" height="150" fill="#AAA"/>
  </g>
  <!-- Flying fish -->
  <g filter="url(#glow)">
    <path d="M100,100 Q120,80 140,100 Q160,120 180,100" fill="url(#fishGradient)"/>
    <path d="M200,150 Q220,130 240,150 Q260,170 280,150" fill="url(#fishGradient)"/>
    <path d="M140,80 Q160,60 180,80 Q200,100 220,80" fill="url(#fishGradient)"/>
  </g>
  <!-- Windows -->
  <g fill="#E0E0E0">
    <rect x="10" y="10" width="20" height="20"/>
    <rect x="40" y="10" width="20" height="20"/>
    <rect x="70" y="10" width="20" height="20"/>
    <rect x="100" y="10" width="20" height="20"/>
    <rect x="130" y="10" width="20" height="20"/>
  </g>
  <!-- Abstract shapes -->
  <g opacity="0.5">
    <circle cx="200" cy="200" r="20" fill="#FFD700"/>
    <circle cx="250" cy="250" r="30" fill="#00FF00"/>
  </g>
  <!-- Motion lines -->
  <g stroke="#FFB6C1" fill="none">
    <path d="M50,50 Q60,40 70,50"/>
    <path d="M150,150 Q160,140 170,150"/>
    <path d="M250,250 Q260,240 270,250"/>
  </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 image captures the concept of 'upside-down city with flying fish' more effectively with its use of abstract forms and gradient background, which suggest a surreal and dreamlike environment.

    The composition is more dynamic and visually appealing, with clear differentiation between the cityscape and the flying fish.

    Player 1's image lacks clarity in depicting the theme and doesn't convey the concept as strongly or creatively.

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

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

Player 1
8
Player 2
9
Circles

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

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

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

Player 1
2
Player 2
5

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
1

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
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
1
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
28
Player 2
15
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
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