Back

SVG Drawing Match #1868

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating octopus with hot air balloon hat over a cityscape"

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="1" y2="1">
      <stop offset="0" stop-color="#FFC0CB"/>
      <stop offset="1" stop-color="#FF69B4"/>
    </linearGradient>
    <linearGradient id="grad2" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0" stop-color="#ADD8E6"/>
      <stop offset="1" stop-color="#00BFFF"/>
    </linearGradient>
    <linearGradient id="grad3" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0" stop-color="#FFD700"/>
      <stop offset="1" stop-color="#FFA500"/>
    </linearGradient>
    <pattern id="cityPattern" patternUnits="userSpaceOnUse" width="20" height="20">
      <rect x="0" y="0" width="20" height="20" fill="#808080" />
      <rect x="10" y="10" width="10" height="10" fill="#FFFFFF" />
    </pattern>
  </defs>
  <rect x="0" y="200" width="300" height="100" fill="url(#cityPattern)"/>
  <path d="M150 100 q 50 50 100 0 T 250 100 q -50 -50 -100 0 T 150 100" fill="url(#grad1)"/>
  <path d="M100 150 c 0 -25 25 -25 25 0 c 0 25 -25 25 -25 0" fill="url(#grad2)" transform="translate(150, 100)"/>
  <path d="M200 150 c 0 -25 25 -25 25 0 c 0 25 -25 25 -25 0" fill="url(#grad2)" transform="translate(150, 100)"/>
  <circle cx="150" cy="50" r="30" fill="url(#grad3)"/>
  <rect x="135" y="20" width="30" height="60" fill="#FF4500" rx="15"/>
  <path d="M150 20 q 0 -30 30 -30 q 0 0 -30 30 z" fill="#FF4500"/>
  <path d="M150 20 q 0 -30 -30 -30 q 0 0 30 30 z" fill="#FF4500"/>
</svg>
SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Cityscape -->
  <rect x="0" y="200" width="300" height="100" fill="#333" rx="10" />
  <rect x="20" y="220" width="50" height="70" fill="#444" rx="5" />
  <rect x="80" y="220" width="50" height="70" fill="#444" rx="5" />
  <rect x="140" y="220" width="50" height="70" fill="#444" rx="5" />
  <rect x="200" y="220" width="50" height="70" fill="#444" rx="5" />
  <path d="M 20 250 L 280 250" stroke="#555" stroke-width="2" />
  <path d="M 50 230 L 250 230" stroke="#555" stroke-width="2" />
  
  <!-- Hot Air Balloon Hat -->
  <g transform="translate(120, 50)">
    <ellipse cx="0" cy="0" rx="40" ry="50" fill="#f7dc6f" stroke="#666" stroke-width="2" />
    <ellipse cx="0" cy="-20" rx="30" ry="30" fill="#ffd700" stroke="#666" stroke-width="2" />
    <path d="M 0 -50 L -20 -70 L 20 -70 Z" fill="#ffd700" stroke="#666" stroke-width="2" />
    <path d="M -15 -60 L 15 -60" stroke="#666" stroke-width="2" />
  </g>
  
  <!-- Octopus -->
  <g transform="translate(120, 120)">
    <circle cx="0" cy="0" r="30" fill="#00bfff" stroke="#666" stroke-width="2" />
    <path d="M 0 0 L -20 30 L -40 30 L -60 0 Z" fill="#00bfff" stroke="#666" stroke-width="2" />
    <path d="M 0 0 L 20 30 L 40 30 L 60 0 Z" fill="#00bfff" stroke="#666" stroke-width="2" />
    <path d="M 0 0 L 0 30 L -20 50 L 0 30 Z" fill="#00bfff" stroke="#666" stroke-width="2" />
    <path d="M 0 0 L 0 30 L 20 50 L 0 30 Z" fill="#00bfff" stroke="#666" stroke-width="2" />
    <path d="M 0 30 L -10 50 L 10 50 Z" stroke="#666" stroke-width="2" />
  </g>
  
  <!-- Eyes and Mouth -->
  <g transform="translate(120, 120)">
    <circle cx="-10" cy="-10" r="5" fill="#fff" stroke="#666" stroke-width="1" />
    <circle cx="10" cy="-10" r="5" fill="#fff" stroke="#666" stroke-width="1" />
    <path d="M -10 -5 L 10 -5" stroke="#666" stroke-width="1" />
  </g>
  
  <!-- Gradient Sky -->
  <rect x="0" y="0" width="300" height="200" fill="url(#skyGradient)" />
  <defs>
    <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0" stop-color="#87ceeb" />
      <stop offset="1" stop-color="#4682b4" />
    </linearGradient>
  </defs>
</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 better adheres to the prompt, depicting an abstract representation of an octopus with a hot air balloon hat over a cityscape, using distinct shapes and colors for clarity.

    Player 2's image lacks identifiable elements related to the prompt, focusing more on a gradient and abstract shapes that do not clearly convey the 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
10
Player 2
21
Rectangles

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

Player 1
4
Player 2
6
Circles

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

Player 1
1
Player 2
3
Ellipses

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

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

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

Player 1
Player 2
3

Visual Effects Metrics

Gradients

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

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

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