Back

SVG Drawing Match #1858

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Juggling octopus under starry sky"

SVG by Llama 3.0 70B (8192)
<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="#03055B" />
  <circle cx="150" cy="150" r="120" fill="url(#starry-sky)" />
  <linearGradient id="starry-sky" x1="0" y1="0" x2="0" y2="1">
    <stop offset="0" stop-color="#03055B" stop-opacity="1" />
    <stop offset="1" stop-color="#03055B" stop-opacity="0.5" />
  </linearGradient>
  <g id="stars">
    <circle cx="50" cy="50" r="2" fill="#F7DC6F" />
    <circle cx="100" cy="70" r="1" fill="#F7DC6F" />
    <circle cx="150" cy="30" r="3" fill="#F7DC6F" />
    <circle cx="200" cy="90" r="2" fill="#F7DC6F" />
    <circle cx="250" cy="50" r="1" fill="#F7DC6F" />
    <!-- many more stars -->
  </g>

  <!-- Octopus -->
  <g id="octopus" transform="translate(150 150)">
    <circle cx="0" cy="0" r="20" fill="#FFC67D" />
    <circle cx="-30" cy="-20" r="10" fill="#FFC67D" />
    <circle cx="30" cy="-20" r="10" fill="#FFC67D" />
    <circle cx="-15" cy="-40" r="5" fill="#FFC67D" />
    <circle cx="15" cy="-40" r="5" fill="#FFC67D" />
    <circle cx="-45" cy="-60" r="5" fill="#FFC67D" />
    <circle cx="45" cy="-60" r="5" fill="#FFC67D" />
    <!-- many more tentacles -->
  </g>

  <!-- Juggling Balls -->
  <g id="juggling-balls">
    <circle cx="120" cy="120" r="10" fill="url(#juggling-ball-1)" />
    <circle cx="180" cy="120" r="10" fill="url(#juggling-ball-2)" />
    <circle cx="150" cy="80" r="10" fill="url(#juggling-ball-3)" />
    <linearGradient id="juggling-ball-1" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0" stop-color="#FF69B4" stop-opacity="1" />
      <stop offset="1" stop-color="#FF69B4" stop-opacity="0.5" />
    </linearGradient>
    <linearGradient id="juggling-ball-2" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0" stop-color="#33CC33" stop-opacity="1" />
      <stop offset="1" stop-color="#33CC33" stop-opacity="0.5" />
    </linearGradient>
    <linearGradient id="juggling-ball-3" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0" stop-color="#66CCCC" stop-opacity="1" />
      <stop offset="1" stop-color="#66CCCC" stop-opacity="0.5" />
    </linearGradient>
  </g>

  <!-- Shadows -->
  <circle cx="150" cy="150" r="20" fill="#000" opacity="0.2" />
  <circle cx="120" cy="120" r="10" fill="#000" opacity="0.2" />
  <circle cx="180" cy="120" r="10" fill="#000" opacity="0.2" />
  <circle cx="150" cy="80" r="10" fill="#000" opacity="0.2" />
</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Starry sky background -->
  <rect x="0" y="0" width="300" height="300" fill="black" />
  <circle cx="150" cy="150" r="120" fill="url(#gradient)" />
  
  <!-- Gradient for the starry sky -->
  <defs>
    <radialGradient id="gradient">
      <stop offset="0%" stop-color="#001f4d" />
      <stop offset="100%" stop-color="navy" />
    </radialGradient>
  </defs>
  
  <!-- Octopus body -->
  <circle cx="150" cy="180" r="40" fill="#8b4513" />
  
  <!-- Octopus head -->
  <circle cx="150" cy="120" r="25" fill="#8b4513" />
  
  <!-- Eyes of the octopus -->
  <circle cx="130" cy="110" r="3" fill="white" />
  <circle cx="170" cy="110" r="3" fill="white" />
  
  <!-- Octopus arms -->
  <path d="M120,160 Q100,100 130,80" fill="#8b4513" />
  <path d="M150,160 Q170,100 140,80" fill="#8b4513" />
  <path d="M180,160 Q200,100 170,80" fill="#8b4513" />
  <path d="M150,210 Q120,250 130,280" fill="#8b4513" />
  <path d="M150,210 Q180,250 170,280" fill="#8b4513" />
  
  <!-- Juggling balls -->
  <circle cx="120" cy="210" r="10" fill="#e63946" />
  <circle cx="150" cy="200" r="10" fill="#f1faee" />
  <circle cx="180" cy="210" r="10" fill="#457b9d" />
</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 submission more clearly depicts an octopus juggling under a starry sky, with distinct tentacles and balls in motion, creating a dynamic and engaging scene.

    The composition is more detailed and adheres well to the prompt, whereas Player 1's image is more abstract and less immediately recognizable as an octopus or juggling scene.

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

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

Player 1
1
Player 2
1
Circles

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

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