Back

SVG Drawing Match #2077

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"An octopus riding a unicycle on a rainbow"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Rainbow -->
  <rect x="0" y="0" width="300" height="60" fill="#FF0000"/>
  <rect x="0" y="60" width="300" height="60" fill="#FF7F00"/>
  <rect x="0" y="120" width="300" height="60" fill="#FFFF00"/>
  <rect x="0" y="180" width="300" height="60" fill="#00FF00"/>
  <rect x="0" y="240" width="300" height="60" fill="#0000FF"/>
  
  <!-- Unicycle -->
  <circle cx="150" cy="200" r="40" fill="#C0C0C0"/>
  <line x1="150" y1="200" x2="150" y2="260" stroke="#C0C0C0" stroke-width="10"/>
  <rect x="130" y="260" width="40" height="20" fill="#C0C0C0"/>
  <circle cx="150" cy="260" r="10" fill="#C0C0C0"/>
  
  <!-- Octopus Body -->
  <circle cx="120" cy="160" r="30" fill="#800080"/>
  
  <!-- Octopus Legs -->
  <path d="M120,190 C90,230 150,240 120,270" stroke="#800080" stroke-width="5" fill="none"/>
  <path d="M120,190 C150,230 90,240 120,270" stroke="#800080" stroke-width="5" fill="none"/>
  <path d="M120,160 Q140,140 160,160" stroke="#800080" stroke-width="5" fill="none"/>
  <path d="M120,160 Q100,140 80,160" stroke="#800080" stroke-width="5" fill="none"/>
</svg>
SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Rainbow Background -->
  <linearGradient id="rainbow" x1="0" x2="0" y1="0" y2="1">
    <stop offset="0" stop-color="#FFC67D" />
    <stop offset="0.2" stop-color="#FF69B4" />
    <stop offset="0.4" stop-color="#8BC34A" />
    <stop offset="0.6" stop-color="#45B3FA" />
    <stop offset="0.8" stop-color="#9C27B0" />
    <stop offset="1" stop-color="#FFC67D" />
  </linearGradient>
  <rect x="0" y="0" width="300" height="300" fill="url(#rainbow)" rx="20" />

  <!-- Unicycle -->
  <circle cx="150" cy="140" r="20" fill="#F7F7F7" />
  <circle cx="150" cy="140" r="15" fill="#333" />
  <circle cx="150" cy="140" r="10" fill="#F7F7F7" />
  <path d="M150 160 C150 170 140 180 130 180 L170 180 C180 180 190 170 190 160 Z" fill="#333" />
  <path d="M150 160 C150 170 160 180 170 180 L130 180 C140 180 150 170 150 160 Z" fill="#F7F7F7" />

  <!-- Octopus -->
  <g transform="translate(150 140)">
    <!-- Body -->
    <ellipse cx="0" cy="0" rx="30" ry="20" fill="#FFC080" />
    <!-- Eyes -->
    <circle cx="-15" cy="-10" r="5" fill="#FFFFFF" />
    <circle cx="15" cy="-10" r="5" fill="#FFFFFF" />
    <circle cx="-15" cy="-10" r="2" fill="#000000" />
    <circle cx="15" cy="-10" r="2" fill="#000000" />
    <!-- Tentacles -->
    <path d="M-30 -20 C-40 -30 -50 -30 -60 -20" fill="none" stroke="#FFC080" stroke-width="10" />
    <path d="M-20 -30 C-30 -40 -40 -40 -50 -30" fill="none" stroke="#FFC080" stroke-width="10" />
    <path d="M0 -40 C-10 -50 -20 -50 -30 -40" fill="none" stroke="#FFC080" stroke-width="10" />
    <path d="M20 -30 C30 -40 40 -40 50 -30" fill="none" stroke="#FFC080" stroke-width="10" />
    <path d="M30 -20 C40 -30 50 -30 60 -20" fill="none" stroke="#FFC080" stroke-width="10" />
    <!-- Suckers -->
    <circle cx="-45" cy="-35" r="5" fill="#FFFFFF" />
    <circle cx="-35" cy="-45" r="5" fill="#FFFFFF" />
    <circle cx="-25" cy="-55" r="5" fill="#FFFFFF" />
    <circle cx="25" cy="-55" r="5" fill="#FFFFFF" />
    <circle cx="35" cy="-45" r="5" fill="#FFFFFF" />
    <circle cx="45" cy="-35" r="5" fill="#FFFFFF" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Llama 3.0 70B (8192) Player 2

Judge's Analysis

    Player 2's submission demonstrates greater creativity and visual appeal with a more dynamic and colorful gradient background representing the rainbow.

    The octopus is more clearly defined with distinct features and a whimsical expression, enhancing the overall composition.

    Player 1's image, while adhering to the prompt, lacks the same level of detail and vibrancy.

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
14
Player 2
22
Rectangles

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

Player 1
6
Player 2
1
Circles

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

Player 1
3
Player 2
13
Ellipses

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

Player 1
Player 2
1
Lines

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

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

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

Player 1
Player 2
1

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

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

Complexity Metrics

Path Commands

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

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