Back

SVG Drawing Match #382

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A bicycle riding a wave under a sky filled with floating clocks"

SVG by Qwen-2.5-32B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#87CEFA"/>
      <stop offset="100%" stop-color="#00BFFF"/>
    </linearGradient>
    <linearGradient id="waveGradient" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0%" stop-color="#1E90FF"/>
      <stop offset="100%" stop-color="#ADD8E6"/>
    </linearGradient>
    <pattern id="clockPattern" patternUnits="userSpaceOnUse" width="50" height="50">
      <circle cx="25" cy="25" r="20" fill="#FFD700"/>
      <circle cx="25" cy="25" r="2" fill="black"/>
      <line x1="25" y1="25" x2="25" y2="10" stroke="black" stroke-width="2"/>
      <line x1="25" y1="25" x2="45" y2="35" stroke="black" stroke-width="2"/>
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  <path d="M150 200 Q100 150 150 100 Q200 150 150 200" fill="url(#waveGradient)" stroke="blue" stroke-width="5"/>
  <g transform="translate(100,150)">
    <circle cx="0" cy="0" r="20" fill="#8B0000"/>
    <rect x="-30" y="-10" width="60" height="20" fill="#8B0000"/>
    <rect x="-10" y="-30" width="20" height="60" fill="#8B0000"/>
    <circle cx="0" cy="0" r="10" fill="#FFFFFF"/>
  </g>
  <g transform="translate(100,150)">
    <circle cx="40" cy="0" r="20" fill="#8B0000"/>
    <rect x="10" y="-10" width="60" height="20" fill="#8B0000"/>
    <rect x="30" y="-30" width="20" height="60" fill="#8B0000"/>
    <circle cx="40" cy="0" r="10" fill="#FFFFFF"/>
  </g>
  <g transform="translate(150,150)">
    <circle cx="0" cy="0" r="20" fill="#8B0000"/>
    <rect x="-30" y="-10" width="60" height="20" fill="#8B0000"/>
    <rect x="-10" y="-30" width="20" height="60" fill="#8B0000"/>
    <circle cx="0" cy="0" r="10" fill="#FFFFFF"/>
  </g>
  <rect x="50" y="180" width="200" height="5" fill="blue" stroke="blue" stroke-width="3"/>
  <rect x="140" y="185" width="20" height="5" fill="white" stroke="black" stroke-width="1"/>
  <rect x="140" y="190" width="20" height="5" fill="white" stroke="black" stroke-width="1"/>
  <g transform="translate(100,50)">
    <circle cx="0" cy="0" r="25" fill="url(#clockPattern)"/>
    <text x="-15" y="0" font-family="Arial" font-size="12" fill="black">12</text>
    <text x="15" y="0" font-family="Arial" font-size="12" fill="black">6</text>
    <text x="0" y="-15" font-family="Arial" font-size="12" fill="black">3</text>
    <text x="0" y="15" font-family="Arial" font-size="12" fill="black">9</text>
  </g>
  <g transform="translate(200,100)">
    <circle cx="0" cy="0" r="25" fill="url(#clockPattern)"/>
    <text x="-15" y="0" font-family="Arial" font-size="12" fill="black">12</text>
    <text x="15" y="0" font-family="Arial" font-size="12" fill="black">6</text>
    <text x="0" y="-15" font-family="Arial" font-size="12" fill="black">3</text>
    <text x="0" y="15" font-family="Arial" font-size="12" fill="black">9</text>
  </g>
  <g transform="translate(50,150)">
    <circle cx="0" cy="0" r="25" fill="url(#clockPattern)"/>
    <text x="-15" y="0" font-family="Arial" font-size="12" fill="black">12</text>
    <text x="15" y="0" font-family="Arial" font-size="12" fill="black">6</text>
    <text x="0" y="-15" font-family="Arial" font-size="12" fill="black">3</text>
    <text x="0" y="15" font-family="Arial" font-size="12" fill="black">9</text>
  </g>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Sky background with gradient -->
  <defs>
    <radialGradient id="skyGradient" cx="150" cy="150" r="150" fx="150" fy="150">
      <stop offset="0" stop-color="#1a1a6f" stop-opacity="0.8"/>
      <stop offset="0.6" stop-color="#4d4d8f" stop-opacity="0.6"/>
      <stop offset="1" stop-color="#6d6d9f" stop-opacity="0.4"/>
    </radialGradient>

    <!-- Clock face pattern -->
    <pattern id="clockPattern" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="8" fill="none" stroke="#fff" stroke-width="1"/>
      <line x1="10" y1="0" x2="10" y2="20" stroke="#fff" stroke-width="0.5"/>
      <line x1="0" y1="10" x2="20" y2="10" stroke="#fff" stroke-width="0.5"/>
    </pattern>

    <!-- Wave pattern -->
    <path id="wavePath" d="M0 150 C30 145,60 135,90 130,120 125,150 120,180 125,210 130,240 135,300 140 270,160 270,180 265,210 260,240 255,300 250,300 250" fill="#000" opacity="0.6"/>
  </defs>

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

  <!-- Floating clocks -->
  <g opacity="0.8">
    <rect x="50" y="50" width="20" height="20" fill="url(#clockPattern)"/>
    <rect x="100" y="80" width="20" height="20" fill="url(#clockPattern)"/>
    <rect x="200" y="30" width="20" height="20" fill="url(#clockPattern)"/>
    <rect x="250" y="100" width="20" height="20" fill="url(#clockPattern)"/>
    <rect x="150" y="150" width="20" height="20" fill="url(#clockPattern)"/>
  </g>

  <!-- Wave -->
  <use href="#wavePath" fill="#000" opacity="0.6"/>
  <path d="M100 180 Q150 170,200 180 Q250 190,300 180" fill="#2196F3" opacity="0.7"/>
  <path d="M120 190 Q140 185,160 180 Q180 175,200 170" fill="#2196F3" opacity="0.7"/>
  <path d="M180 170 Q190 165,200 160 Q210 155,220 150" fill="#2196F3" opacity="0.7"/>

  <!-- Bicycle -->
  <g transform="translate(180,180)">
    <!-- Bike frame -->
    <rect x="-20" y="-30" width="40" height="60" fill="#FF5252" rx="5"/>
    <!-- Wheels -->
    <circle cx="-10" cy="-10" r="8" fill="#333" opacity="0.8"/>
    <circle cx="10" cy="-10" r="8" fill="#333" opacity="0.8"/>
    <!-- Handlebars -->
    <path d="M-25 -40 Q-20 -35, -15 -30" stroke="#666" stroke-width="2" fill="none"/>
    <!-- Pedals -->
    <circle cx="0" cy="-20" r="5" fill="#666"/>
  </g>

  <!-- Stars -->
  <g opacity="0.3">
    <circle cx="50" cy="50" r="1" fill="white"/>
    <circle cx="100" cy="80" r="1" fill="white"/>
    <circle cx="150" cy="110" r="1" fill="white"/>
    <circle cx="200" cy="130" r="1" fill="white"/>
    <circle cx="250" cy="150" r="1" fill="white"/>
  </g>

  <!-- Birds -->
  <path d="M200 100 Q220 90,230 80" fill="#333" opacity="0.5"/>
  <path d="M250 120 Q260 110,270 90" fill="#333" opacity="0.5"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Qwen-2.5-32B Player 1

Judge's Analysis

    Player 1's image clearly represents the concept with a distinct bicycle form riding a wave, and visible floating clocks, adhering well to the prompt.

    The vibrant color palette enhances visual appeal.

    Player 2's abstract depiction lacks clear elements of a bicycle, wave, or clocks, making it less aligned with the prompt.

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
24
Player 2
25
Rectangles

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

Player 1
10
Player 2
7
Circles

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

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

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

Player 1
6
Player 2
3

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

The number of elements with stroke attributes in the SVG.

Player 1
6
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
9
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
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
3
Player 2
17
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
1

Text Metrics

Text Elements

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

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