Back

SVG Drawing Match #2096

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Flying Fish Riding Bicycles Over a Cityscape"

SVG by DeepSeek R1
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#2A2B5F"/>
      <stop offset="100%" stop-color="#F4ABC4"/>
    </linearGradient>
    <radialGradient id="fishGrad" cx="50%" cy="50%" r="50%" fx="30%" fy="30%">
      <stop offset="0%" stop-color="#FF6B6B"/>
      <stop offset="100%" stop-color="#FFB997"/>
    </radialGradient>
    <pattern id="brick" width="8" height="8" patternUnits="userSpaceOnUse">
      <rect width="8" height="8" fill="#4F4F6B"/>
      <path d="M0 0 l8 8 M-2 6 l4 -4 M6 -2 l4 4" stroke="#787892" stroke-width="1"/>
    </pattern>
  </defs>

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

  <!-- Cityscape -->
  <g transform="translate(0 220)">
    <rect x="0" width="300" height="80" fill="url(#brick)"/>
    <g fill="#363456">
      <rect x="20" y="-60" width="25" height="60" rx="3"/>
      <rect x="60" y="-90" width="30" height="90" rx="5"/>
      <rect x="110" y="-45" width="20" height="45"/>
      <rect x="150" y="-75" width="40" height="75" rx="8"/>
      <rect x="220" y="-55" width="25" height="55" rx="4"/>
      <path d="M250 0v-40h15v40h-15zm-280 0v-25h10v25h-10z"/>
    </g>
  </g>

  <!-- Flying Fish Riders -->
  <g transform="translate(80 100)">
    <g class="fish-rider">
      <path d="M0 0l30 15a40 40 0 0 1-30-15z" fill="url(#fishGrad)"/>
      <circle cx="40" cy="5" r="15" fill="#FFD166"/>
      <path d="M25 5a15 15 0 1 0 30 0" fill="none" stroke="#FFD166" stroke-width="3"/>
      <g transform="translate(40 5) rotate(25)">
        <path d="M-15 0l20 -10 20 10" fill="#786FA6"/>
        <circle r="8" fill="#2D3436"/>
        <circle cx="25" r="8" fill="#2D3436"/>
        <path d="M5 0l10 15" stroke="#ECECEC" stroke-width="3"/>
      </g>
    </g>
  </g>

  <!-- Air Currents -->
  <g stroke="#FFFFFF30" stroke-width="2" fill="none">
    <path d="M0 150q50-30 100 0 50 30 100 0" transform="rotate(-5)"/>
    <path d="M-30 180q50-15 100 5 50 20 100-10" transform="rotate(10)"/>
  </g>

  <!-- Decorative Stars -->
  <g fill="#FFFFFF60">
    <circle cx="50" cy="40" r="1.5"/>
    <circle cx="280" cy="80" r="2"/>
    <circle cx="150" cy="30" r="1.2"/>
    <circle cx="200" cy="100" r="1.8"/>
  </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="fishGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#4dabf7;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#46d6ff;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="cityGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#3d4048;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#2a2c31;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#87CEEB;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#E0B0FF;stop-opacity:1" />
    </linearGradient>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  
  <!-- Cityscape -->
  <g transform="translate(0,200)">
    <rect x="0" y="0" width="300" height="100" fill="#2c3e50"/>
    <rect x="50" y="-20" width="40" height="60" fill="url(#cityGradient)"/>
    <rect x="100" y="-30" width="30" height="70" fill="url(#cityGradient)"/>
    <rect x="160" y="-40" width="50" height="80" fill="url(#cityGradient)"/>
    <rect x="220" y="-25" width="40" height="75" fill="url(#cityGradient)"/>
  </g>
  
  <!-- Fish -->
  <path d="M150,100 Q180,80 210,100 T270,100" fill="url(#fishGradient)" stroke="#2980b9" stroke-width="2"/>
  <path d="M120,150 Q150,130 180,150 T210,150" fill="url(#fishGradient)" stroke="#2980b9" stroke-width="2"/>
  
  <!-- Bicycles -->
  <g transform="translate(100,80)">
    <rect x="0" y="0" width="40" height="20" rx="5" fill="#3498db"/>
    <circle cx="20" cy="0" r="5" fill="#3498db"/>
    <circle cx="20" cy="25" r="5" fill="#3498db"/>
  </g>
  <g transform="translate(200,130)">
    <rect x="0" y="0" width="40" height="20" rx="5" fill="#3498db"/>
    <circle cx="20" cy="0" r="5" fill="#3498db"/>
    <circle cx="20" cy="25" r="5" fill="#3498db"/>
  </g>
  
  <!-- Fish Details -->
  <path d="M150,100 L160,85 L170,100" fill="#2980b9"/>
  <path d="M180,130 L190,115 L200,130" fill="#2980b9"/>
  
  <!-- Clouds -->
  <g opacity="0.5">
    <rect x="50" y="50" width="60" height="30" rx="15" fill="#ffffff"/>
    <rect x="200" y="60" width="80" height="40" rx="20" fill="#ffffff"/>
  </g>
  
  <!-- Rays -->
  <g stroke="#4dabf7" stroke-width="2" opacity="0.5">
    <line x1="150" y1="100" x2="150" y2="50"/>
    <line x1="180" y1="130" x2="180" y2="80"/>
    <line x1="210" y1="100" x2="210" y2="50"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek R1 Player 1

Judge's Analysis

    Player 1's image creatively captures the concept of a flying fish riding a bicycle with clear depiction and dynamic movement across a cityscape.

    The use of color and the night setting add visual appeal and contrast, enhancing the surreal nature of the scene.

    In contrast, Player 2's image lacks clarity in depicting the prompt and appears more abstract, making it harder to discern the intended 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
23
Player 2
21
Rectangles

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

Player 1
8
Player 2
10
Circles

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

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

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

Player 1
7
Player 2
5

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
4
Player 2
3

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

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

Complexity Metrics

Path Commands

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

Player 1
32
Player 2
12
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

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