Back

SVG Drawing Match #134

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Whale swimming in a sea of stars"

SVG by Qwen-2.5-32B
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="seaGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#000066;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#000033;stop-opacity:1" />
    </radialGradient>
    <pattern id="starPattern" patternUnits="userSpaceOnUse" width="20" height="20">
      <circle cx="10" cy="10" r="2" fill="url(#starGradient)"/>
    </pattern>
    <linearGradient id="starGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#ffcc00;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ffffff;stop-opacity:0" />
    </linearGradient>
    <linearGradient id="whaleGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#0099cc;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#006699;stop-opacity:1" />
    </linearGradient>
  </defs>
  <rect width="100%" height="100%" fill="url(#seaGradient)"/>
  <g fill="url(#starPattern)">
    <circle cx="50" cy="50" r="2"/>
    <circle cx="150" cy="50" r="2"/>
    <circle cx="250" cy="50" r="2"/>
    <circle cx="50" cy="150" r="2"/>
    <circle cx="150" cy="150" r="2"/>
    <circle cx="250" cy="150" r="2"/>
    <circle cx="50" cy="250" r="2"/>
    <circle cx="150" cy="250" r="2"/>
    <circle cx="250" cy="250" r="2"/>
  </g>
  <path d="M 100 150 Q 150 80 200 150 T 300 150" fill="url(#whaleGradient)" stroke="black" stroke-width="2"/>
  <path d="M 150 150 C 150 180 170 200 200 200" fill="url(#whaleGradient)" stroke="black" stroke-width="2"/>
  <circle cx="190" cy="180" r="10" fill="url(#whaleGradient)"/>
</svg>
SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="starBg">
      <stop offset="0%" stop-color="#03031a"/>
      <stop offset="100%" stop-color="#03032a"/>
    </linearGradient>
    <radialGradient id="whaleGradient">
      <stop offset="0%" stop-color="#4da7ff"/>
      <stop offset="100%" stop-color="#3366cc"/>
    </radialGradient>
    <filter id="glowFilter">
      <feGaussianBlur stdDeviation="2" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  <rect width="300" height="300" fill="url(#starBg)"/>
  <g id="stars">
    <circle cx="50" cy="50" r="1" fill="#fff" opacity="0.8"/>
    <circle cx="150" cy="70" r="1.5" fill="#fff" opacity="0.7"/>
    <circle cx="250" cy="90" r="1" fill="#fff" opacity="0.9"/>
    <circle cx="80" cy="150" r="1.2" fill="#fff" opacity="0.6"/>
    <circle cx="220" cy="170" r="1.3" fill="#fff" opacity="0.8"/>
    <circle cx="120" cy="230" r="1" fill="#fff" opacity="0.7"/>
    <circle cx="280" cy="200" r="1.4" fill="#fff" opacity="0.9"/>
    <circle cx="30" cy="250" r="1.1" fill="#fff" opacity="0.6"/>
    <circle cx="200" cy="280" r="1.2" fill="#fff" opacity="0.8"/>
  </g>
  <path d="M150,100 Q180,80 220,120 T290,180 Q270,200 250,220 T220,240 Q200,220 180,200 T150,180" 
        fill="url(#whaleGradient)" stroke="#3366cc" stroke-width="2" filter="url(#glowFilter)"/>
  <path d="M170,140 L190,160 L180,180 L170,170 Z" fill="#3366cc"/>
  <path d="M220,160 L240,180 L230,200 L220,190 Z" fill="#3366cc"/>
  <path d="M130,120 L140,140 L130,160 L120,150 Z" fill="#3366cc"/>
  <path d="M190,180 L210,200 L200,220 L190,210 Z" fill="#3366cc"/>
  <g transform="translate(150,150)">
    <circle cx="0" cy="0" r="10" fill="#3366cc"/>
    <circle cx="20" cy="0" r="10" fill="#3366cc"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Qwen-2.5-32B Player 1

Judge's Analysis

    Player 1's submission creatively uses abstract shapes to suggest a whale swimming through a sea of stars, capturing the essence of the prompt with simplicity and elegance.

    The composition is balanced, and the use of contrasting colors creates a visually appealing and cohesive image.

    In contrast, Player 2's image is less clear in depicting a whale and lacks the compositional strength and clarity of Player 1's submission.

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
14
Player 2
17
Rectangles

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

Player 1
1
Player 2
1
Circles

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

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

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

Player 1
1
Player 2
2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
1

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

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