Back

SVG Drawing Match #1501

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A hot air balloon shaped like a giant acorn floating over a bamboo forest"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background: Bamboo forest -->
  <rect width="300" height="300" fill="#8DB051" />
  <circle cx="150" cy="190" r="25" fill="#8DB051" />
  <circle cx="130" cy="220" r="40" fill="#8DB051" />
  <circle cx="170" cy="240" r="60" fill="#8DB051" />
  <circle cx="200" cy="190" r="30" fill="#8DB051" />
  <circle cx="230" cy="220" r="45" fill="#8DB051" />
  
  <!-- Hot air balloon: Giant acorn -->
  <ellipse cx="150" cy="90" rx="50" ry="70" fill="#965E1D" />
  <ellipse cx="150" cy="45" rx="35" ry="50" fill="#B57E2B" />
  
  <!-- Basket -->
  <path d="M125,120 L175,120 L190,160 L110,160 Z" fill="#4A4A4A" />
  <rect x="125" y="120" width="50" height="20" fill="#2A2A2A" />
  
  <!-- Balloon details -->
  <circle cx="150" cy="45" r="5" fill="#FFD700" />
  <circle cx="135" cy="30" r="8" fill="#FFD700" />
  <circle cx="165" cy="30" r="8" fill="#FFD700" />
</svg>
SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <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:#E0FFFF;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="acornGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#654321;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#8B4513;stop-opacity:1" />
    </linearGradient>
    <pattern id="acornPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="3" fill="#A0522D" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)" />
  <!-- Bamboo Forest -->
  <g id="bamboo">
    <rect x="50" y="200" width="20" height="80" fill="url(#bambooGradient)" transform="rotate(10 50 200)" />
    <rect x="100" y="180" width="20" height="100" fill="url(#bambooGradient)" transform="rotate(-5 100 180)" />
    <rect x="150" y="190" width="20" height="90" fill="url(#bambooGradient)" transform="rotate(3 150 190)" />
    <rect x="200" y="170" width="20" height="110" fill="url(#bambooGradient)" transform="rotate(-2 200 170)" />
    <rect x="250" y="210" width="20" height="70" fill="url(#bambooGradient)" transform="rotate(7 250 210)" />
  </g>
  <!-- Acorn Balloon -->
  <g id="acorn" transform="translate(150,100)">
    <ellipse cx="0" cy="0" rx="40" ry="20" fill="url(#acornGradient)" />
    <ellipse cx="0" cy="-40" rx="25" ry="15" fill="url(#acornGradient)" />
    <rect x="-20" y="20" width="40" height="5" fill="#8B4513" />
    <rect x="-15" y="25" width="30" height="30" rx="15" fill="#DEB887" />
    <g transform="translate(0,70)">
      <rect x="-10" y="0" width="20" height="30" rx="10" fill="#8B4513" />
      <rect x="-20" y="30" width="40" height="5" rx="2" fill="#8B4513" />
    </g>
    <g transform="translate(0,20)">
      <rect x="-5" y="0" width="10" height="10" rx="5" fill="#8B4513" />
      <rect x="-10" y="10" width="20" height="5" rx="2" fill="#8B4513" />
    </g>
    <g transform="translate(-30,30)">
      <rect x="0" y="0" width="60" height="20" rx="10" fill="#DEB887" />
      <path d="M-30,30 Q0,20 30,30" fill="#8B4513" />
    </g>
    <rect x="-25" y="0" width="50" height="40" rx="25" fill="url(#acornPattern)" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Qwen-32B Player 2

Judge's Analysis

    Player 2's image more effectively adheres to the prompt with a clearer depiction of an acorn-shaped hot air balloon.

    The composition includes a sky background that suggests the balloon is floating, enhancing the visual appeal and contextual clarity.

    Player 1's image lacks the necessary elements to convey the prompt effectively, as it is less distinguishable as a hot air balloon or an acorn over a bamboo forest.

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
13
Player 2
18
Rectangles

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

Player 1
2
Player 2
14
Circles

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

Player 1
8
Player 2
1
Ellipses

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

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

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

Player 1
Player 2
5

Visual Effects Metrics

Gradients

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

Player 1
Player 2
2
Patterns

The number of pattern definitions (pattern) in the SVG.

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2
3

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
9

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
2
Max Group Nesting

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

Player 1
Player 2
1
Defs Elements

The number of elements defined within the defs element in the SVG.

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