Back

SVG Drawing Match #1650

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Robot octopus juggling neon paintbrushes"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background with subtle texture -->
  <rect width="300" height="300" fill="#1a1a2e" />
  <g id="stars">
    <path d="M50,50 L60,60 L40,60 L50,50" fill="#fff" opacity="0.5"/>
    <path d="M150,100 L160,110 L140,110 L150,100" fill="#fff" opacity="0.5"/>
    <path d="M250,200 L260,210 L240,210 L250,200" fill="#fff" opacity="0.5"/>
  </g>

  <!-- Robot Octopus Body -->
  <g id="octopus">
    <circle cx="150" cy="150" r="40" fill="url(#metalGradient)" stroke="#333" stroke-width="2"/>
    <rect x="130" y="140" width="40" height="20" fill="#666" rx="5"/>
    <rect x="140" y="160" width="20" height="40" fill="#666" rx="5"/>
  </g>

  <!-- Tentacles -->
  <g id="tentacles">
    <path d="M150,190 Q170,220 190,220 L230,200 Q210,180 190,170 L170,160" fill="url(#tentacleGradient)"/>
    <path d="M150,190 Q170,160 190,140 L230,120 Q210,100 190,110 L170,120" fill="url(#tentacleGradient)"/>
    <path d="M150,170 Q160,180 170,190" stroke="url(#tentacleGradient)" stroke-width="4" fill="none"/>
  </g>

  <!-- Paintbrushes -->
  <g id="paintbrushes">
    <!-- Brush 1 -->
    <rect x="90" y="80" width="10" height="40" fill="url(#neonBlue)" rx="2"/>
    <circle cx="100" cy="60" r="15" fill="url(#brushGradient)"/>
    <animate attributeName="transform" from="translate(0,0)" to="translate(-20,20)" dur="2s" repeatCount="indefinite"/>
    
    <!-- Brush 2 -->
    <rect x="190" y="120" width="10" height="40" fill="url(#neonPink)" rx="2"/>
    <circle cx="200" cy="100" r="15" fill="url(#brushGradient)"/>
    <animate attributeName="transform" from="translate(0,0)" to="translate(20,-20)" dur="2s" repeatCount="indefinite"/>
    
    <!-- Brush 3 -->
    <rect x="150" y="180" width="10" height="40" fill="url(#neonGreen)" rx="2"/>
    <circle cx="160" cy="160" r="15" fill="url(#brushGradient)"/>
    <animate attributeName="transform" from="translate(0,0)" to="translate(0,0)" dur="4s" repeatCount="indefinite"/>
  </g>

  <!-- Gradients -->
  <defs>
    <linearGradient id="metalGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#666;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#999;stop-opacity:1" />
    </linearGradient>
    
    <radialGradient id="tentacleGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" style="stop-color:#888;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#444;stop-opacity:1" />
    </radialGradient>
    
    <linearGradient id="neonBlue" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#00f;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#009;stop-opacity:1" />
    </linearGradient>
    
    <linearGradient id="neonPink" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#f0f;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#f0c;stop-opacity:1" />
    </linearGradient>
    
    <linearGradient id="neonGreen" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#0f0;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#0c0;stop-opacity:1" />
    </linearGradient>
    
    <radialGradient id="brushGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" style="stop-color:#fff;stop-opacity:0.8" />
      <stop offset="100%" style="stop-color:#fff;stop-opacity:0" />
    </radialGradient>
  </defs>

  <!-- Animation Pulse Effect -->
  <style>
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.1); }
      100% { transform: scale(1); }
    }
    #paintbrushes circle {
      animation: pulse 2s infinite;
    }
  </style>

  <!-- Glowing Effects -->
  <filter id="glow">
    <feGaussianBlur stdDeviation="4" result="glow"/>
    <feMerge>
      <feMergeNode in="glow"/>
      <feMergeNode in="SourceGraphic" />
    </feMerge>
  </filter>
</svg>
SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="robotGradient">
      <stop offset="0%" stop-color="#999" />
      <stop offset="100%" stop-color="#666" />
    </linearGradient>
    <linearGradient id="paintbrush">
      <stop offset="0%" stop-color="#FF00FF" />
      <stop offset="100%" stop-color="#FF00FF" />
    </linearGradient>
    <linearGradient id="background">
      <stop offset="0%" stop-color="#1a1a1a" />
      <stop offset="100%" stop-color="#2a2a2a" />
    </linearGradient>
    <radialGradient id="glowEffect">
      <stop offset="0%" stop-color="white" />
      <stop offset="100%" stop-color="transparent" />
    </radialGradient>
  </defs>
  <rect width="300" height="300" fill="url(#background)"/>
  <g transform="translate(150,150)">
    <!-- Robot Octopus Body -->
    <circle r="30" fill="url(#robotGradient)" stroke="#fff" stroke-width="2"/>
    <!-- Eyes -->
    <circle cx="-10" cy="-10" r="5" fill="#fff"/>
    <circle cx="10" cy="-10" r="5" fill="#fff"/>
    <rect x="-2" y="-20" width="4" height="10" fill="#000"/>
    <rect x="8" y="-20" width="4" height="10" fill="#000"/>
    <!-- Smile -->
    <path d="M-20,10 Q0,20 20,10" stroke="#fff" stroke-width="2" fill="none"/>
    
    <!-- Arms -->
    <g transform="rotate(45)">
      <rect x="-2" y="-20" width="4" height="40" fill="url(#robotGradient)" rx="2"/>
      <rect x="-2" y="20" width="4" height="20" fill="url(#robotGradient)" rx="2"/>
    </g>
    <g transform="rotate(-45)">
      <rect x="-2" y="-20" width="4" height="40" fill="url(#robotGradient)" rx="2"/>
      <rect x="-2" y="20" width="4" height="20" fill="url(#robotGradient)" rx="2"/>
    </g>
    <g transform="rotate(90)">
      <rect x="-2" y="-20" width="4" height="40" fill="url(#robotGradient)" rx="2"/>
      <rect x="-2" y="20" width="4" height="20" fill="url(#robotGradient)" rx="2"/>
    </g>
    
    <!-- Paintbrushes -->
    <g transform="rotate(30)">
      <rect x="-5" y="-5" width="10" height="50" fill="url(#paintbrush)" rx="5"/>
      <rect x="-5" y="45" width="10" height="10" fill="url(#paintbrush)" rx="5"/>
    </g>
    <g transform="rotate(150)">
      <rect x="-5" y="-5" width="10" height="50" fill="url(#paintbrush)" rx="5"/>
      <rect x="-5" y="45" width="10" height="10" fill="url(#paintbrush)" rx="5"/>
    </g>
    <g transform="rotate(-90)">
      <rect x="-5" y="-5" width="10" height="50" fill="url(#paintbrush)" rx="5"/>
      <rect x="-5" y="45" width="10" height="10" fill="url(#paintbrush)" rx="5"/>
    </g>
    
    <!-- Glowing Effects -->
    <circle r="35" fill="url(#glowEffect)" opacity="0.3"/>
    <circle r="25" fill="url(#glowEffect)" opacity="0.3"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Llama-70B Player 1

Judge's Analysis

    Player 1's submission creatively incorporates a robot octopus concept with multiple appendages and neon paintbrushes, aligning well with the prompt.

    The use of varied colors for the brushes adds visual interest and appeal.

    Player 2's image, while technically clean, lacks the complexity and adherence to the prompt as it does not effectively convey the octopus or juggling elements.

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

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

Player 1
6
Player 2
15
Circles

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

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

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

Player 1
4
Player 2
7

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
2
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
4
Player 2
9

Interactivity Metrics

Animations

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

Player 1
3
Player 2
Elements with Transform

The number of elements with transform attributes in the SVG.

Player 1
Player 2
7

Complexity Metrics

Path Commands

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

Player 1
24
Player 2
2
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

Player 1
Player 2
1
Defs Elements

The number of elements defined within the defs element in the SVG.

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