Back

SVG Drawing Match #1201

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Hummingbird made of musical notes in flight"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="birdGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:rgb(255,204,204);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(102,178,255);stop-opacity:1" />
    </linearGradient>
    <pattern id="musicNotes" width="10" height="10" patternUnits="userSpaceOnUse">
      <path d="M0 8 Q 5 0 10 8 Q 5 4 0 8 Z" fill="black" />
    </pattern>
  </defs>
  <g transform="translate(150,150)">
    <path d="M0 -50 Q -30 -20 -15 0 Q 0 20 20 10 Q 30 0 20 -20 Q 10 -10 0 -50 Z" 
          fill="url(#birdGradient)" />
    <path d="M0 -50 L -30 0 L 0 30" fill="url(#musicNotes)" transform="rotate(-40)"/>
    <path d="M0 -50 L 30 0 L 0 30" fill="url(#musicNotes)" transform="rotate(40)"/>
    <circle cx="0" cy="-55" r="5" fill="black" />
    <path d="M0 30 L -15 5 L -25 30 Z" fill="url(#birdGradient)" transform="rotate(20)"/>
    <path d="M0 30 L 15 5 L 25 30 Z" fill="url(#birdGradient)" transform="rotate(-20)"/>
    <path d="M-25 30 Q -30 50 -45 35 Q -35 20 -25 30 Z" fill="url(#musicNotes)" />
    <path d="M25 30 Q 30 50 45 35 Q 35 20 25 30 Z" fill="url(#musicNotes)" />
  </g>
</svg>
SVG by Qwen-2.5-32B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:rgb(255,165,0);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(255,255,0);stop-opacity:1" />
    </linearGradient>
    <linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:rgb(148,0,211);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(255,192,203);stop-opacity:1" />
    </linearGradient>
  </defs>
  <path d="M100,250 Q125,200 150,250 T250,250" stroke="url(#grad1)" stroke-width="10" fill="none" />
  <path d="M150,250 C160,230 170,210 180,200 C190,190 200,180 210,170 C220,160 230,150 240,140 C250,130 260,120 270,110" stroke="url(#grad2)" stroke-width="8" fill="none" />
  <path d="M270,110 C275,100 280,90 285,80 C290,70 295,60 300,50 C305,40 310,30 315,20 C320,10 325,0 330,-10" stroke="url(#grad1)" stroke-width="6" fill="none" />
  <path d="M150,250 C160,260 170,270 180,280 C190,290 200,300 210,310 C220,320 230,330 240,340 C250,350 260,360 270,370" stroke="url(#grad2)" stroke-width="6" fill="none" />
  <circle cx="200" cy="200" r="20" fill="url(#grad1)" />
  <circle cx="250" cy="200" r="20" fill="url(#grad2)" />
  <path d="M220,180 C230,160 240,140 250,120 C260,100 270,80 280,60" stroke="url(#grad1)" stroke-width="4" fill="none" />
  <path d="M250,120 C260,100 270,80 280,60 C290,40 300,20 310,0" stroke="url(#grad2)" stroke-width="4" fill="none" />
  <path d="M180,220 C170,240 160,260 150,280 C140,300 130,320 120,340 C110,360 100,380 90,400" stroke="url(#grad1)" stroke-width="4" fill="none" />
  <path d="M150,280 C140,300 130,320 120,340 C110,360 100,380 90,400 C80,420 70,440 60,460" stroke="url(#grad2)" stroke-width="4" fill="none" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Qwen-2.5-32B Player 2

Judge's Analysis

    Player 2's submission captures the essence of a hummingbird in flight using musical notes more effectively.

    The use of vibrant colors and dynamic lines creates a sense of movement and energy, which aligns well with the prompt.

    In contrast, Player 1's design is minimalistic, lacking the clear representation and dynamism needed for this concept.

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
9
Player 2
10
Rectangles

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

Player 1
Player 2
Circles

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

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

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

Player 1
1
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2
8

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
1
Player 2

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

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