Back

SVG Drawing Match #1680

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Bear in a business suit, balancing on a unicycle, holding an umbrella"

SVG by Llama 3.1 405B Instruct
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="suitGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#3498db" />
      <stop offset="100%" stop-color="#2980b9" />
    </linearGradient>
    <radialGradient id="umbrellaGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#f1c40f" />
      <stop offset="100%" stop-color="#e67e73" />
    </radialGradient>
    <pattern id="tiePattern" width="10" height="10" patternUnits="userSpaceOnUse">
      <rect x="0" y="0" width="10" height="10" fill="#8e44ad" />
      <path d="M 0 0 L 10 10" stroke="#8e44ad" stroke-width="2" />
    </pattern>
  </defs>
  <g>
    <rect x="95" y="150" width="110" height="120" fill="url(#suitGradient)" rx="10" />
    <circle cx="150" cy="100" r="40" fill="#2ecc71" />
    <g transform="translate(130, 70)">
      <ellipse cx="0" cy="0" rx="15" ry="5" fill="#2ecc71" />
      <ellipse cx="0" cy="20" rx="10" ry="5" fill="#2ecc71" />
    </g>
    <path d="M 140 100 C 120 80, 110 70, 100 70 C 90 70, 80 80, 70 100" stroke="#2ecc71" stroke-width="5" fill="none" />
    <circle cx="170" cy="240" r="20" fill="url(#umbrellaGradient)" />
    <path d="M 170 260 L 155 280 L 185 280 Z" fill="url(#umbrellaGradient)" />
    <rect x="130" y="220" width="40" height="5" fill="#95a5a6" rx="2" />
    <circle cx="110" cy="260" r="10" fill="#95a5a6" />
    <g transform="translate(150, 240)">
      <path d="M -10 0 L 0 10 L 10 0 Z" fill="#95a5a6" />
      <path d="M -5 0 L 0 -5 L 5 0 Z" fill="#95a5a6" />
    </g>
    <rect x="145" y="190" width="60" height="5" fill="url(#tiePattern)" />
    <path d="M 150 180 C 140 160, 145 150, 150 150 C 155 150, 150 160, 150 180" stroke="#8e44ad" stroke-width="2" fill="none" />
  </g>
  <circle cx="275" cy="25" r="25" fill="#e74c3c" />
  <path d="M 250 20 L 300 20" stroke="#e74c3c" stroke-width="5" fill="none" />
</svg>
SVG by Gemini Pro 1.5
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="wheel" cx="50%" cy="50%" r="50%" fx="30%" fy="30%">
      <stop offset="0%" stop-color="#808080"/>
      <stop offset="50%" stop-color="#606060"/>
      <stop offset="100%" stop-color="#404040"/>
    </radialGradient>
    <linearGradient id="suit" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#222"/>
      <stop offset="70%" stop-color="#333"/>
      <stop offset="100%" stop-color="#444"/>
    </linearGradient>
    <pattern id="stripes" width="10" height="10" patternUnits="userSpaceOnUse">
      <rect width="5" height="10" fill="#555"/>
    </pattern>
  </defs>
  <circle cx="150" cy="220" r="20" fill="url(#wheel)" stroke="#333" stroke-width="2"/>
  <rect x="140" y="200" width="20" height="20" fill="url(#suit)"/>
  <path d="M 130,150 C 130,100 170,100 170,150 L 190,150 C 190,100 230,100 230,150" fill="#a62" stroke="#531" stroke-width="3"/>
  <ellipse cx="150" cy="140" rx="30" ry="20" fill="#a62"/>
  <circle cx="140" cy="130" r="5" fill="white"/>
  <circle cx="160" cy="130" r="5" fill="white"/>
  <path d="M 145 135 L 150 140 L 155 135" stroke="black" stroke-width="2"/>
  <ellipse cx="150" cy="100" rx="20" ry="15" fill="#a62"/>
  <rect x="100" y="150" width="100" height="50" fill="url(#suit)"/>
  <path d="M 90 130 L 70 50 L 230 50 L 210 130 Z" fill="#6c2d23" stroke="black" stroke-width="3"/>
  <path d="M 105 50 L 105 30 L 115 30 L 115 50 Z" fill="url(#stripes)"/>
  <path d="M 125 50 L 125 25 L 135 25 L 135 50 Z" fill="url(#stripes)"/>
  <path d="M 145 50 L 145 35 L 155 35 L 155 50 Z" fill="url(#stripes)"/>
  <path d="M 165 50 L 165 20 L 175 20 L 175 50 Z" fill="url(#stripes)"/>
  <path d="M 185 50 L 185 30 L 195 30 L 195 50 Z" fill="url(#stripes)"/>

</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Gemini Pro 1.5 Player 2

Judge's Analysis

    Player 2's submission better adheres to the prompt, clearly depicting a bear in a business suit on a unicycle.

    The use of shapes and colors effectively communicates the concept, and the umbrella is distinctly visible, enhancing the visual appeal.

    Player 1's image is more abstract and lacks clear elements of the prompt such as the unicycle and umbrella.

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

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

Player 1
4
Player 2
3
Circles

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

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

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

Player 1
3
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
4
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
12

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

Complexity Metrics

Path Commands

The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.

Player 1
22
Player 2
37
Max Group Nesting

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

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

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