Back

SVG Drawing Match #902

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A cyberpunk octopus playing a violin"

SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background Gradient -->
  <defs>
    <linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#121212" stop-opacity="1" />
      <stop offset="100%" stop-color="#3b3b3b" stop-opacity="1" />
    </linearGradient>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="url(#grad)" />

  <!-- Neon Glow Effect -->
  <filter id="neon" x="-50%" y="-50%" width="200%" height="200%">
    <feGaussianBlur stdDeviation="5" result="blur" />
    <feColorMatrix type="matrix" values="1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 19 -9" />
  </filter>

  <!-- Octopus Body -->
  <g transform="translate(150, 150)">
    <path d="M 0, 0 m -50, 0 a 50,50 0 1,0 100,0 a 50,50 0 1,0 -100,0" fill="#3a3d41" />
    <path d="M 0, 0 m -40, 0 a 40,40 0 1,0 80,0 a 40,40 0 1,0 -80,0" fill="#333639" />
    <path d="M 0, 0 m -30, 0 a 30,30 0 1,0 60,0 a 30,30 0 1,0 -60,0" fill="#2c2f33" />
  </g>

  <!-- Octopus Tentacles -->
  <g transform="translate(150, 150)">
    <path d="M 0, 0 l 40, 60" stroke="#33ccff" stroke-width="2" fill="none" filter="url(#neon)" />
    <path d="M 0, 0 l -40, 60" stroke="#33ccff" stroke-width="2" fill="none" filter="url(#neon)" />
    <path d="M 0, 0 l 20, -80" stroke="#33ccff" stroke-width="2" fill="none" filter="url(#neon)" />
    <path d="M 0, 0 l -20, -80" stroke="#33ccff" stroke-width="2" fill="none" filter="url(#neon)" />
  </g>

  <!-- Violin -->
  <g transform="translate(100, 50)">
    <path d="M 0, 0 l 50, 10 l 10, 50 l -50, 10 z" fill="#964b00" />
    <path d="M 0, 0 l 50, 10 l 10, 50 l -50, 10 z" stroke="#663300" stroke-width="2" fill="none" />
    <circle cx="25" cy="30" r="5" fill="#663300" />
    <path d="M 25, 30 l 10, 10" stroke="#663300" stroke-width="2" fill="none" />
  </g>

  <!-- Bow -->
  <g transform="translate(140, 120)">
    <path d="M 0, 0 l 30, 5" stroke="#cc9900" stroke-width="2" fill="none" />
    <path d="M 30, 5 l -5, 20" stroke="#cc9900" stroke-width="2" fill="none" />
  </g>

  <!-- Notes -->
  <g>
    <circle cx="100" cy="150" r="5" fill="#66d9ef" />
    <circle cx="120" cy="170" r="5" fill="#66d9ef" />
    <circle cx="140" cy="190" r="5" fill="#66d9ef" />
  </g>
</svg>
SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="cyberGlow" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#00f3ff;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ff00ff;stop-opacity:1" />
    </linearGradient>
    <pattern id="circuit" x="0" y="0" width="20" height="20">
      <rect width="20" height="20" fill="#030303"/>
      <path d="M10 0 L10 20 M0 10 L20 10" stroke="#00ff9f" stroke-width="1"/>
    </pattern>
    <filter id="glow">
      <feGaussianBlur stdDeviation="2" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  <rect width="300" height="300" fill="#030303"/>
  
  <!-- Octopus Body -->
  <path d="M150 120 Q130 100 150 80 Q170 100 150 120" fill="#0a0a0a" stroke="#00ff9f" stroke-width="2"/>
  
  <!-- Tentacle Arms -->
  <g transform="translate(150,120)">
    <path d="M0 0 L-50 100" stroke="#00ff9f" stroke-width="4" filter="url(#glow)"/>
    <path d="M0 0 L50 100" stroke="#00ff9f" stroke-width="4" filter="url(#glow)"/>
    <path d="M0 0 L-30 -50" stroke="#00ff9f" stroke-width="4" filter="url(#glow)"/>
    <path d="M0 0 L30 -50" stroke="#00ff9f" stroke-width="4" filter="url(#glow)"/>
  </g>
  
  <!-- Head -->
  <circle cx="150" cy="100" r="20" fill="#0a0a0a"/>
  <circle cx="150" cy="100" r="15" fill="url(#cyberGlow)"/>
  <rect x="140" y="90" width="20" height="10" fill="#00ff9f"/>
  <rect x="140" y="110" width="20" height="10" fill="#00ff9f"/>
  
  <!-- Violin -->
  <path d="M120 150 L180 150 L180 190 L120 190 Z" fill="#1a1a1a"/>
  <rect x="140" y="160" width="20" height="40" fill="#00ff9f"/>
  <path d="M150 150 L150 200" stroke="#00ff9f" stroke-width="4" filter="url(#glow)"/>
  <rect x="130" y="140" width="40" height="10" fill="url(#cyberGlow)"/>
  
  <!-- Strings -->
  <path d="M120 150 L180 150" stroke="#00ff9f" stroke-width="2"/>
  <path d="M120 160 L180 160" stroke="#00ff9f" stroke-width="2"/>
  <path d="M120 170 L180 170" stroke="#00ff9f" stroke-width="2"/>
  
  <!-- Bow -->
  <path d="M150 180 L160 190 L150 200 L140 190 Z" fill="#00ff9f"/>
  <rect x="145" y="195" width="10" height="5" fill="url(#cyberGlow)"/>
  
  <!-- Background Elements -->
  <rect x="0" y="0" width="300" height="300" fill="url(#circuit)"/>
  <rect x="130" y="130" width="40" height="40" fill="#00ff9f" opacity="0.3"/>
  
  <!-- Glowing Lines -->
  <path d="M100 100 L200 200" stroke="#00ff9f" stroke-width="2" filter="url(#glow)"/>
  <path d="M100 200 L200 100" stroke="#00ff9f" stroke-width="2" filter="url(#glow)"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Qwen-32B Player 2

Judge's Analysis

    Player 2's submission better embodies the concept of a 'cyberpunk octopus playing a violin' with its neon colors and futuristic style, aligning well with the cyberpunk theme.

    The design suggests multiple limbs which can be interpreted as octopus-like, and the bright, synthetic color palette enhances its visual appeal.

    Player 1's submission is more abstract and does not clearly represent the prompt.

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

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

Player 1
1
Player 2
9
Circles

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

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

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

Player 1
5
Player 2
1

Visual Effects Metrics

Gradients

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

Player 1
1
Player 2
1
Patterns

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

Player 1
Player 2
1
Filters

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

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

The number of elements with stroke attributes in the SVG.

Player 1
8
Player 2
12

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
10
Player 2
4

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