Back

SVG Drawing Match #814

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Octopus juggling planets under a starry night sky"

SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="planetGrad">
      <stop offset="0%" stop-color="#66CCFF"/>
      <stop offset="100%" stop-color="#3399FF"/>
    </radialGradient>
    <pattern id="stars" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="1" fill="white"/>
    </pattern>
    <filter id="glow">
      <feGaussianBlur stdDeviation="4" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  <rect width="300" height="300" fill="url(#stars)"/>
  <g filter="url(#glow)">
    <!-- Octopus Body -->
    <path d="M150,250 Q130,230 120,220 Q110,210 100,200 Q90,190 80,180 Q70,170 60,160" 
          fill="#663399" stroke="#442266" stroke-width="2"/>
    <!-- Tentacles -->
    <path d="M150,250 C160,240 170,230 180,220" fill="none" stroke="#663399" stroke-width="4" opacity="0.8"/>
    <path d="M150,250 C140,240 130,230 120,220" fill="none" stroke="#663399" stroke-width="4" opacity="0.8"/>
    <!-- Planets -->
    <g transform="translate(100,150)">
      <circle cx="0" cy="0" r="20" fill="url(#planetGrad)" filter="url(#glow)"/>
      <circle cx="0" cy="0" r="15" fill="#FF9966"/>
    </g>
    <g transform="translate(150,100)">
      <circle cx="0" cy="0" r="25" fill="url(#planetGrad)" filter="url(#glow)"/>
      <circle cx="0" cy="0" r="20" fill="#FFCC66"/>
    </g>
    <g transform="translate(200,180)">
      <circle cx="0" cy="0" r="30" fill="url(#planetGrad)" filter="url(#glow)"/>
      <circle cx="0" cy="0" r="25" fill="#99CCFF"/>
    </g>
  </g>
  <!-- Starry Sky Details -->
  <g transform="translate(150,50)">
    <circle cx="0" cy="0" r="150" fill="#000033"/>
    <circle cx="0" cy="0" r="130" fill="#111144"/>
    <circle cx="0" cy="0" r="110" fill="#222255"/>
  </g>
  <!-- Shooting Stars -->
  <line x1="50" y1="50" x2="80" y2="80" stroke="white" stroke-width="2" filter="url(#glow)"/>
  <line x1="250" y1="30" x2="280" y2="60" stroke="white" stroke-width="2" filter="url(#glow)"/>
</svg>
SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background Gradient -->
  <rect x="0" y="0" width="300" height="300" fill="url(#bgGradient)"/>
  <defs>
    <linearGradient id="bgGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0" stop-color="#13164B" stop-opacity="1"/>
      <stop offset="1" stop-color="#040B21" stop-opacity="1"/>
    </linearGradient>
  </defs>
  
  <!-- Starry Night Sky -->
  <g>
    <circle cx="20" cy="20" r="2" fill="#FFC700"/>
    <circle cx="50" cy="80" r="3" fill="#FFC700"/>
    <circle cx="100" cy="40" r="1" fill="#FFC700"/>
    <circle cx="230" cy="20" r="2" fill="#FFC700"/>
    <circle cx="280" cy="80" r="1" fill="#FFC700"/>
    <circle cx="200" cy="200" r="3" fill="#FFC700"/>
    <circle cx="80" cy="250" r="2" fill="#FFC700"/>
    <circle cx="150" cy="280" r="1" fill="#FFC700"/>
  </g>
  
  <!-- Octopus -->
  <g transform="translate(150 150)">
    <path fill="#BE343E" d="M 0 -50 C -30 -50 -50 -30 -50 0 S -30 50 0 50 Z"/>
    <path fill="#BE343E" d="M 50 0 C 30 30 50 50 50 50 L 30 70 C 30 70 0 50 -20 30 Z"/>
    <path fill="#BE343E" d="M -50 0 C -30 -30 -50 -50 -50 -50 L -30 -70 C -30 -70 0 -50 20 -30 Z"/>
    <circle cx="0" cy="0" r="20" fill="#E0635F"/>
    <circle cx="30" cy="0" r="15" fill="#F24365"/>
    <circle cx="-30" cy="0" r="15" fill="#F24365"/>
  </g>
  
  <!-- Juggled Planets -->
  <g transform="translate(150 150)">
    <circle cx="70" cy="-30" r="15" fill="#00BBF7" filter="url(#glow)"/>
    <circle cx="40" cy="50" r="10" fill="#3A61FA" filter="url(#glow)"/>
    <circle cx="-70" cy="0" r="12" fill="#FFC86E" filter="url(#glow)"/>
  </g>
  <defs>
    <filter id="glow">
      <feGaussianBlur stdDeviation="3" result="blur"/>
      <feColorMatrix type="matrix" values="1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 18 -7" result="glow"/>
      <feBlend mode="soft-light" in="SourceGraphic" in2="glow);?>
    </filter>
  </defs>
  
  <!-- Tentacles -->
  <path fill="#BE343E" d="M 200 150 Q 230 130 230 110 Q 190 90 200 70 Z" opacity="0.8"/>
  <path fill="#BE343E" d="M 150 180 Q 180 200 180 220 Q 150 240 120 220 Z" opacity="0.8"/>
  <path fill="#BE343E" d="M 100 150 Q 70 130 70 110 Q 110 90 100 70 Z" opacity="0.8"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Qwen-32B Player 1

Judge's Analysis

    Player 1's image captures the theme with a visible octopus and planets, even though it's partially obscured, while Player 2's image failed to load, making it impossible to evaluate.

    Player 1 demonstrates adherence to the prompt and some level of creativity and technical execution.

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
Rectangles

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

Player 1
1
Player 2
Circles

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

Player 1
10
Player 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
2
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
Groups

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

Player 1
5
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
11
Player 2

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

Complexity Metrics

Path Commands

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

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

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