Back

SVG Drawing Match #1742

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Octopus in a tuxedo juggling teacups over a coral ballet stage"

SVG by Gemini Pro 1.5
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  <defs>
    <radialGradient id="coralGradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#FFA07A" />
      <stop offset="100%" stop-color="#FF6347" />
    </radialGradient>
    <pattern id="tuxedoStripes" width="10" height="10" patternUnits="userSpaceOnUse">
      <rect width="5" height="10" fill="black" />
    </pattern>
    <linearGradient id="spotlight" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#FFF5EE" stop-opacity="0.8" />
      <stop offset="100%" stop-color="#FFDAB9" stop-opacity="0" />
    </linearGradient>
  </defs>

  <rect x="0" y="200" width="300" height="100" fill="url(#coralGradient)" />
  <path d="M50 200 C 50 150, 100 150, 100 200 S 75 250, 50 200 Z M150 200 C 150 150, 200 150, 200 200 S 175 250, 150 200 Z" fill="#FA8072" stroke="#F08080" />

  <circle cx="100" cy="120" r="15" fill="white" stroke="black">
      <animate attributeName="cy" values="120; 130; 120" dur="1s" repeatCount="indefinite" />
  </circle>
  <circle cx="180" cy="140" r="15" fill="white" stroke="black">
      <animate attributeName="cy" values="140; 150; 140" dur="1s" repeatCount="indefinite" />
  </circle>
  <circle cx="220" cy="110" r="15" fill="white" stroke="black">
      <animate attributeName="cy" values="110; 120; 110" dur="1s" repeatCount="indefinite" />
  </circle>


  <ellipse cx="150" cy="150" rx="50" ry="30" fill="url(#tuxedoStripes)" />
  <path d="M100 150 C 100 100, 200 100, 200 150" stroke="black" stroke-width="5" fill="none" />

  <g transform="translate(150,150)">
    <path d="M-30 -20 C -40 0, -20 10, 0 0 C 20 10, 40 0, 30 -20" stroke="black" stroke-width="5" fill="plum" />
    <circle cx="-30" cy="-40" r="10" fill="#9370DB" />
    <circle cx="30" cy="-40" r="10" fill="#9370DB" />
     <animateTransform attributeName="transform" type="rotate" from="0 150 150" to="360 150 150" dur="8s" repeatCount="indefinite"/>
  </g>


    <ellipse cx="150" cy="20" rx="60" ry="40" fill="url(#spotlight)" opacity="0.5" />
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background with gradient -->
  <rect width="300" height="300" fill="url(#bgGrad)" />
  
  <!-- Coral stage -->
  <defs>
    <linearGradient id="coralGrad" x1="0" x2="1" y1="0" y2="1">
      <stop offset="0" stop-color="#FFC67D" />
      <stop offset="1" stop-color="#FFB847" />
    </linearGradient>
    <linearGradient id="cupGrad" x1="0" x2="1" y1="0" y2="1">
      <stop offset="0" stop-color="#FFF" />
      <stop offset="1" stop-color="#FFD700" />
    </linearGradient>
    <pattern id="tuxPattern" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="5" fill="#000" />
    </pattern>
  </defs>

  <!-- Stage floor -->
  <path d="M50,200 Q150,180 250,200 Q230,220 210,240 190,220 170,200 160,180Z" fill="url(#coralGrad)" />
  
  <!-- Octopus body -->
  <ellipse cx="150" cy="170" rx="40" ry="50" fill="#000" stroke="#FFF" stroke-width="2" />
  <!-- Shirt -->
  <ellipse cx="150" cy="170" rx="30" ry="40" fill="#FFF" />
  <!-- Bow tie -->
  <path d="M130,165 L150,160 L170,165 L160,170 L130,165" fill="#FFF" />
  <path d="M130,175 L150,170 L170,175 L160,180 L130,175" fill="#FFF" />
  <!-- Buttons -->
  <circle cx="150" cy="190" r="4" fill="#FFF" />
  <circle cx="150" cy="180" r="4" fill="#FFF" />
  
  <!-- Tentacles -->
  <path d="M0,250 Q50,220 100,200" stroke="#000" stroke-width="4" fill="none" />
  <path d="M300,250 Q250,220 200,200" stroke="#000" stroke-width="4" fill="none" />
  
  <!-- Teacups -->
  <g transform="rotate(30 150 150)">
    <path d="M140,100 L160,120 L180,100 L160,80 Z" fill="url(#cupGrad)" />
    <path d="M140,100 L160,120 L180,100 L160,80 Z" stroke="#000" stroke-width="2" fill="none" />
    <circle cx="160" cy="130" r="10" fill="none" stroke="#000" stroke-width="2" />
  </g>
  
  <g transform="rotate(-30 150 150)">
    <path d="M140,100 L160,120 L180,100 L160,80 Z" fill="url(#cupGrad)" />
    <path d="M140,100 L160,120 L180,100 L160,80 Z" stroke="#000" stroke-width="2" fill="none" />
    <circle cx="160" cy="130" r="10" fill="none" stroke="#000" stroke-width="2" />
  </g>
  
  <!-- Stage curtains -->
  <ellipse cx="50" cy="250" rx="30" ry="50" fill="url(#coralGrad)" />
  <ellipse cx="250" cy="250" rx="30" ry="50" fill="url(#coralGrad)" />
  
  <!-- Spotlight effect -->
  <circle cx="150" cy="50" r="50" fill="#FFD700" opacity="0.5" />
  
  <!-- Decorative elements -->
  <rect x="0" y="0" width="300" height="300" fill="url(#tuxPattern)" opacity="0.1" />
  <circle cx="150" cy="150" r="100" fill="none" stroke="#FFF" stroke-width="1" opacity="0.2" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Llama-70B Player 2

Judge's Analysis

    Player 2's submission captures the whimsical concept of an octopus juggling teacups with a stronger emphasis on creativity and adherence to the prompt.

    The elements are more clearly defined and the composition is engaging, enhancing the visual appeal.

    Player 1's image, while colorful, lacks clarity in representing the prompt's elements distinctly.

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

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

Player 1
2
Player 2
2
Circles

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

Player 1
5
Player 2
7
Ellipses

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

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

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

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

The number of elements with stroke attributes in the SVG.

Player 1
6
Player 2
8

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
10
Player 2
5

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
4
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

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