Back

SVG Drawing Match #348

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Dancing octopus in a top hat juggling glowing jellyfish under the sea"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background with gradient and texture -->
  <defs>
    <linearGradient id="seaGradient" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0" stop-color="#1a4377" stop-opacity="1"/>
      <stop offset="1" stop-color="#0d47a1" stop-opacity="0.8"/>
    </linearGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="4" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>

  <!-- Background -->
  <rect width="300" height="300" fill="url(#seaGradient)"/>

  <!-- Jellyfish -->
  <g transform="translate(150,150)">
    <!-- Jellyfish 1 -->
    <circle cx="-60" cy="-40" r="20" fill="#ff4081" stroke="#fff" stroke-width="2" filter="url(#glow)"/>
    <circle cx="-60" cy="-40" r="15" fill="none" stroke="#ff4081" stroke-width="1.5"/>
    
    <!-- Jellyfish 2 -->
    <circle cx="60" cy="-40" r="20" fill="#76ff03" stroke="#fff" stroke-width="2" filter="url(#glow)"/>
    <circle cx="60" cy="-40" r="15" fill="none" stroke="#76ff03" stroke-width="1.5"/>
    
    <!-- Jellyfish 3 -->
    <circle cx="0" cy="60" r="20" fill="#00acc1" stroke="#fff" stroke-width="2" filter="url(#glow)"/>
    <circle cx="0" cy="60" r="15" fill="none" stroke="#00acc1" stroke-width="1.5"/>
  </g>

  <!-- Octopus -->
  <g transform="translate(150,200)">
    <!-- Hat -->
    <ellipse cx="0" cy="-80" rx="40" ry="20" fill="#000"/>
    <ellipse cx="0" cy="-80" rx="35" ry="15" fill="#ff5252"/>
    
    <!-- Body -->
    <circle cx="0" cy="0" r="30" fill="#212121" stroke="#fff" stroke-width="2"/>
    <circle cx="0" cy="0" r="25" fill="none" stroke="#212121" stroke-width="1.5"/>
    
    <!-- Arms -->
    <path d="M-40,0 Q-60,-20 -80,0 L-40,40 Q-20,40 0,20" fill="#212121" stroke="#fff" stroke-width="2"/>
    <path d="M40,0 Q60,-20 80,0 L40,40 Q20,40 0,20" fill="#212121" stroke="#fff" stroke-width="2"/>
    <path d="M0,-40 Q-20,-60 -40,-80 L0,-40 Q20,-60 40,-80" fill="#212121" stroke="#fff" stroke-width="2"/>
    <path d="M0,40 Q-20,60 -40,80 L0,40 Q20,60 40,80" fill="#212121" stroke="#fff" stroke-width="2"/>
    
    <!-- Suckers -->
    <circle cx="-15" cy="-15" r="3" fill="#fff"/>
    <circle cx="15" cy="-15" r="3" fill="#fff"/>
    <circle cx="-15" cy="15" r="3" fill="#fff"/>
    <circle cx="15" cy="15" r="3" fill="#fff"/>
  </g>

  <!-- Water effect -->
  <path d="M0,300 Q150,280 300,300 Q230,320 150,340 Q70,320 0,300" fill="none" stroke="#1a4377" stroke-width="4" opacity="0.3"/>
</svg>
SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="oceanGradient" cx="50%" cy="50%" r="80%">
      <stop offset="0%" stop-color="#0099cc" />
      <stop offset="100%" stop-color="#003366" />
    </radialGradient>
    <radialGradient id="jellyfishGlow" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ff66cc" stop-opacity="0.8" />
      <stop offset="100%" stop-color="#ff66cc" stop-opacity="0" />
    </radialGradient>
  </defs>
  <rect width="300" height="300" fill="url(#oceanGradient)" />
  <g transform="translate(150, 150)">
    <g id="octopus">
      <ellipse cx="0" cy="0" rx="20" ry="35" fill="#ff9933" />
      <g id="tentacles">
        <path
          d="M0,0 C-15,30 -45,60 -40,80"
          stroke="#ff9933"
          stroke-width="8"
          fill="none"
        />
        <path
          d="M0,0 C15,30 45,60 40,80"
          stroke="#ff9933"
          stroke-width="8"
          fill="none"
        />
        <path
          d="M0,0 C-25,20 -70,40 -60,60"
          stroke="#ff9933"
          stroke-width="6"
          fill="none"
        />
        <path
          d="M0,0 C25,20 70,40 60,60"
          stroke="#ff9933"
          stroke-width="6"
          fill="none"
        />
      </g>
    </g>
    <ellipse cx="-10" cy="-10" rx="5" ry="8" fill="#000" />
    <ellipse cx="10" cy="-10" rx="5" ry="8" fill="#000" />
    <polygon
      points="-15,-35 15,-35 0,-70"
      fill="#000"
    />
    <g id="jellyfishGroup">
      <g transform="translate(-80, -80)">
        <circle cx="0" cy="0" r="15" fill="url(#jellyfishGlow)" />
        <path
          d="M0,0 C-5,15 -10,30 0,40"
          stroke="#ff66cc"
          stroke-width="2"
          fill="none"
        />
        <path
          d="M0,0 C5,15 10,30 0,40"
          stroke="#ff66cc"
          stroke-width="2"
          fill="none"
        />
      </g>
      <g transform="translate(80, -80)">
        <circle cx="0" cy="0" r="15" fill="url(#jellyfishGlow)" />
        <path
          d="M0,0 C-5,15 -10,30 0,40"
          stroke="#ff66cc"
          stroke-width="2"
          fill="none"
        />
        <path
          d="M0,0 C5,15 10,30 0,40"
          stroke="#ff66cc"
          stroke-width="2"
          fill="none"
        />
      </g>
      <g transform="translate(0, 100)">
        <circle cx="0" cy="0" r="15" fill="url(#jellyfishGlow)" />
        <path
          d="M0,0 C-5,15 -10,30 0,40"
          stroke="#ff66cc"
          stroke-width="2"
          fill="none"
        />
        <path
          d="M0,0 C5,15 10,30 0,40"
          stroke="#ff66cc"
          stroke-width="2"
          fill="none"
        />
      </g>
    </g>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o (2024-11-20) Player 2

Judge's Analysis

    Player 2's image more accurately captures the prompt with a recognizable octopus shape, the inclusion of a top hat, and glowing jellyfish.

    The technical execution, use of colors, and composition are stronger, creating a visually appealing and coherent underwater scene.

    Player 1's submission lacks clarity in depicting an octopus and the juggling aspect is less clear.

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
20
Player 2
18
Rectangles

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

Player 1
1
Player 2
1
Circles

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

Player 1
12
Player 2
3
Ellipses

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

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

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

Player 1
5
Player 2
10
Groups

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

Player 1
2
Player 2
7

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
13
Player 2
10

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
9
Player 2
5

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
4

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
20
Max Group Nesting

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

Player 1
Player 2
2
Defs Elements

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

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