Back

SVG Drawing Match #834

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A steampunk octopus playing a vintage typewriter underwater"

SVG by Qwen-2.5-32B
<svg width="300" height="300" viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="waterGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#87CEEB;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#1E90FF;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="octopusGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#FFD700;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FFA500;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="typewriterGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#C0C0C0;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#808080;stop-opacity:1" />
    </linearGradient>
    <pattern id="bubbles" patternUnits="userSpaceOnUse" width="20" height="20">
      <circle cx="2" cy="2" r="2" fill="#FFFFFF" opacity="0.8"/>
    </pattern>
  </defs>
  <rect width="100%" height="100%" fill="url(#waterGradient)" />
  <g id="octopus" transform="translate(150,150)">
    <circle cx="0" cy="0" r="30" fill="url(#octopusGradient)" />
    <g id="tentacles">
      <path d="M -50 0 C -40 20, -30 0, -20 20 C -10 40, 0 20, 10 40 C 20 60, 30 40, 40 60 C 50 80, 60 60, 70 80" stroke="black" stroke-width="2" fill="none"/>
      <path d="M 50 0 C 40 20, 30 0, 20 20 C 10 40, 0 20, -10 40 C -20 60, -30 40, -40 60 C -50 80, -60 60, -70 80" stroke="black" stroke-width="2" fill="none"/>
      <path d="M 0 -50 C 20 -40, 0 -30, 20 -20 C 40 -10, 20 0, 40 10 C 60 20, 40 30, 60 40 C 80 50, 60 60, 80 70" stroke="black" stroke-width="2" fill="none"/>
      <path d="M 0 50 C -20 40, 0 30, -20 20 C -40 10, -20 0, -40 10 C -60 20, -40 30, -60 40 C -80 50, -60 60, -80 70" stroke="black" stroke-width="2" fill="none"/>
    </g>
  </g>
  <g id="typewriter" transform="translate(150,150)">
    <rect x="-50" y="-50" width="100" height="100" fill="url(#typewriterGradient)" />
    <rect x="-30" y="-20" width="60" height="10" fill="#FFFFFF" />
    <rect x="-30" y="-30" width="10" height="50" fill="#FFFFFF" />
    <rect x="20" y="-30" width="10" height="50" fill="#FFFFFF" />
    <rect x="-30" y="20" width="60" height="10" fill="#FFFFFF" />
  </g>
  <rect x="0" y="250" width="300" height="50" fill="url(#bubbles)" />
</svg>
SVG by Llama 3.1 405B Instruct
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background Gradient -->
  <linearGradient id="bgGrad" x1="0%" y1="0%" x2="0%" y2="100%">
    <stop offset="0%" stop-color="#3498db" />
    <stop offset="100%" stop-color="#2c3e50" />
  </linearGradient>
  <rect x="0" y="0" width="300" height="300" fill="url(#bgGrad)" />

  <!-- Water Ripples -->
  <radialGradient id="waterGrad" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
    <stop offset="0%" stop-color="#add8e6" stop-opacity="0.5" />
    <stop offset="100%" stop-color="#add8e6" stop-opacity="0" />
  </radialGradient>
  <circle cx="150" cy="150" r="120" fill="url(#waterGrad)" />
  <circle cx="180" cy="180" r="80" fill="url(#waterGrad)" />
  <circle cx="120" cy="120" r="60" fill="url(#waterGrad)" />

  <!-- Octopus -->
  <linearGradient id="octoGrad" x1="0%" y1="0%" x2="0%" y2="100%">
    <stop offset="0%" stop-color="#8e44ad" />
    <stop offset="100%" stop-color="#4c005c" />
  </linearGradient>
  <path d="M 140 100 C 120 80 100 80 80 100 L 80 120 C 100 140 120 140 140 120 L 140 100"
        fill="url(#octoGrad)" />
  <path d="M 160 100 C 140 80 120 80 100 100 L 100 120 C 120 140 140 140 160 120 L 160 100"
        fill="url(#octoGrad)" />
  <path d="M 120 80 C 100 60 80 60 60 80 L 60 100 C 80 120 100 120 120 100 L 120 80"
        fill="url(#octoGrad)" />
  <path d="M 180 80 C 160 60 140 60 120 80 L 120 100 C 140 120 160 120 180 100 L 180 80"
        fill="url(#octoGrad)" />
  <circle cx="120" cy="80" r="10" fill="#fff" />
  <circle cx="140" cy="80" r="10" fill="#fff" />
  <circle cx="160" cy="80" r="10" fill="#fff" />
  <circle cx="180" cy="80" r="10" fill="#fff" />

  <!-- Typewriter -->
  <rect x="60" y="180" width="120" height="60" fill="#333" rx="10" />
  <rect x="80" y="200" width="40" height="20" fill="#555" rx="5" />
  <rect x="140" y="200" width="40" height="20" fill="#555" rx="5" />
  <circle cx="120" cy="220" r="10" fill="#333" />
  <path d="M 100 240 L 120 220 L 140 240"
        stroke="#333" stroke-width="2" />
  <path d="M 80 240 L 100 220 L 120 240"
        stroke="#333" stroke-width="2" />
  <path d="M 140 240 L 160 220 L 180 240"
        stroke="#333" stroke-width="2" />

  <!-- Keys -->
  <rect x="80" y="250" width="20" height="20" fill="#fff" rx="5" />
  <rect x="110" y="250" width="20" height="20" fill="#fff" rx="5" />
  <rect x="140" y="250" width="20" height="20" fill="#fff" rx="5" />
  <text x="85" y="270" font-size="14" font-family="monospace">Q</text>
  <text x="115" y="270" font-size="14" font-family="monospace">W</text>
  <text x="145" y="270" font-size="14" font-family="monospace">E</text>

  <!-- Ink -->
  <path d="M 120 280 L 140 260 L 160 280"
        stroke="#3498db" stroke-width="2" />
  <path d="M 100 280 L 120 260 L 140 280"
        stroke="#3498db" stroke-width="2" />
  <path d="M 140 280 L 160 260 L 180 280"
        stroke="#3498db" stroke-width="2" />
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Llama 3.1 405B Instruct Player 2

Judge's Analysis

    Player 2's submission more effectively captures the steampunk and underwater theme with its use of gears and a vintage typewriter.

    The composition and color palette create a more cohesive and visually engaging scene, enhancing the overall appeal and adherence to the prompt.

    Player 1's image lacks clear elements of the prompt and appears more abstract.

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
13
Player 2
25
Rectangles

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

Player 1
7
Player 2
7
Circles

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

Player 1
2
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
4
Player 2
10
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
3
Player 2
3
Patterns

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

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

The number of elements with stroke attributes in the SVG.

Player 1
4
Player 2
6

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
2
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
20
Player 2
38
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
4
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
3

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