Back

SVG Drawing Match #709

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A fox wearing a top hat juggles planets under a starry sky"

SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Starry Sky -->
  <rect x="0" y="0" width="300" height="300" fill="#2E4053" />
  <g>
    <circle cx="50" cy="50" r="2" fill="#F7DC6F" />
    <circle cx="80" cy="100" r="3" fill="#F7DC6F" />
    <circle cx="220" cy="150" r="1" fill="#F7DC6F" />
    <circle cx="180" cy="220" r="4" fill="#F7DC6F" />
    <circle cx="120" cy="280" r="2" fill="#F7DC6F" />
  </g>

  <!-- Planets -->
  <g>
    <circle cx="100" cy="150" r="20" fill="url(#grad-planet1)" />
    <circle cx="150" cy="200" r="25" fill="url(#grad-planet2)" />
    <circle cx="200" cy="100" r="18" fill="url(#grad-planet3)" />
  </g>

  <!-- Fox -->
  <g transform="translate(120 180)">
    <path d="M-50,-30 C-50,-50 50,-50 50,-30 C50,10 -50,10 -50,-30 Z" fill="#FFC080" />
    <path d="M-30,-20 C-20,-20 -10,-10 0,-10 C10,-10 20,-20 30,-20" fill="#FFA07A" />
    <circle cx="0" cy="-10" r="10" fill="#FFFFFF" />
    <path d="M-10,-10 L10,-10 L0,-20 Z" fill="#FFA07A" />
  </g>

  <!-- Top Hat -->
  <g transform="translate(120 150)">
    <rect x="-20" y="-40" width="40" height="20" fill="#000000" rx="5" />
    <rect x="-15" y="-35" width="30" height="10" fill="#FFFFFF" rx="3" />
  </g>

  <!-- Juggling -->
  <g>
    <line x1="120" y1="180" x2="100" y2="150" stroke="#FFC080" stroke-width="2" />
    <line x1="120" y1="180" x2="150" y2="200" stroke="#FFC080" stroke-width="2" />
    <line x1="120" y1="180" x2="200" y2="100" stroke="#FFC080" stroke-width="2" />
  </g>

  <!-- Gradients -->
  <defs>
    <linearGradient id="grad-planet1" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#FF69B4" />
      <stop offset="100%" stop-color="#FFA07A" />
    </linearGradient>
    <linearGradient id="grad-planet2" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#0000FF" />
      <stop offset="100%" stop-color="#87CEEB" />
    </linearGradient>
    <linearGradient id="grad-planet3" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#008000" />
      <stop offset="100%" stop-color="#3CB371" />
    </linearGradient>
  </defs>
</svg>
SVG by GPT-3.5 turbo (0125)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Starry sky background -->
  <rect width="300" height="300" fill="#001a33" />
  
  <!-- Stars -->
  <circle cx="50" cy="50" r="1" fill="white" />
  <circle cx="100" cy="200" r="1" fill="white" />
  <circle cx="200" cy="100" r="1" fill="white" />
  <circle cx="250" cy="250" r="1" fill="white" />
  
  <!-- Planets -->
  <circle cx="150" cy="150" r="25" fill="#6c5ce7" />
  <circle cx="100" cy="100" r="20" fill="#f4b400" />
  <circle cx="200" cy="200" r="15" fill="#f53b57" />
  
  <!-- Fox body -->
  <circle cx="150" cy="220" r="45" fill="#e17055" />
  
  <!-- Fox head -->
  <circle cx="150" cy="160" r="30" fill="#e17055" />
  
  <!-- Fox eyes -->
  <circle cx="140" cy="150" r="5" fill="white" />
  <circle cx="160" cy="150" r="5" fill="white" />
  
  <!-- Fox nose -->
  <circle cx="150" cy="165" r="3" fill="black" />
  
  <!-- Fox ears -->
  <path d="M135,140 L125,125 L100,130 Q110,150,135,140" fill="#e17055" />
  <path d="M165,140 L175,125 L200,130 Q190,150,165,140" fill="#e17055" />
  
  <!-- Top hat -->
  <rect x="125" y="90" width="50" height="30" fill="#2d3436" />
  <rect x="130" y="60" width="40" height="30" fill="#2d3436" />
  <rect x="135" y="30" width="30" height="30" fill="#2d3436" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-3.5 turbo (0125) Player 2

Judge's Analysis

    Player 2's image more clearly depicts a fox wearing a top hat, with a recognizable body and facial features, enhancing adherence to the prompt.

    The juggling of planets is also more apparent, with a distinct planetary element in the composition.

    The overall design is technically well-executed and visually appealing, with a coherent representation of the concept under a starry sky.

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

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

Player 1
3
Player 2
4
Circles

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

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

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

Player 1
5
Player 2

Visual Effects Metrics

Gradients

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

Player 1
3
Player 2
Patterns

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
11
Player 2
8

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
11
Player 2
8
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
3
Player 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