Back

SVG Drawing Match #749

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Moonlit jellyfish dance in an underwater orchestra"

SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="bgGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#001f3f"/>
      <stop offset="100%" stop-color="#000012"/>
    </radialGradient>
    <radialGradient id="moonGradient" cx="0.5" cy="0.5" r="0.6">
      <stop offset="0%" stop-color="#fffff0"/>
      <stop offset="100%" stop-color="#aaaaaa"/>
    </radialGradient>
    <radialGradient id="jellyGradient1" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#00ffff" stop-opacity="0.8"/>
      <stop offset="100%" stop-color="#006666" stop-opacity="0.4"/>
    </radialGradient>
    <radialGradient id="jellyGradient2" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#ff69b4" stop-opacity="0.8"/>
      <stop offset="100%" stop-color="#8b008b" stop-opacity="0.4"/>
    </radialGradient>
    <linearGradient id="tentacleGradient" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#ffffff" stop-opacity="0.6"/>
      <stop offset="100%" stop-color="#000000" stop-opacity="0.2"/>
    </linearGradient>
    <pattern id="musicalPattern" patternUnits="userSpaceOnUse" width="10" height="10">
      <path d="M0,10 L5,0 L10,10 Z" fill="#ffdd57"/>
    </pattern>
    <radialGradient id="noteGradient" cx="0.5" cy="0.5" r="0.5">
      <stop offset="0%" stop-color="#ffdd57"/>
      <stop offset="100%" stop-color="#ffaa00"/>
    </radialGradient>
  </defs>
  <rect width="300" height="300" fill="url(#bgGradient)"/>
  <!-- Moon -->
  <circle cx="250" cy="50" r="30" fill="url(#moonGradient)" />
  <!-- Jellyfish 1 -->
  <g>
    <ellipse cx="80" cy="150" rx="20" ry="30" fill="url(#jellyGradient1)" />
    <path d="M80,180 C70,200 90,220 80,240" stroke="url(#tentacleGradient)" stroke-width="2" fill="none"/>
    <path d="M80,180 C90,200 70,220 80,240" stroke="url(#tentacleGradient)" stroke-width="2" fill="none"/>
  </g>
  <!-- Jellyfish 2 -->
  <g>
    <ellipse cx="200" cy="200" rx="25" ry="35" fill="url(#jellyGradient2)" />
    <path d="M200,235 C190,260 210,280 200,305" stroke="url(#tentacleGradient)" stroke-width="2" fill="none"/>
    <path d="M200,235 C210,260 190,280 200,305" stroke="url(#tentacleGradient)" stroke-width="2" fill="none"/>
  </g>
  <!-- Jellyfish 3 -->
  <g>
    <ellipse cx="150" cy="100" rx="15" ry="25" fill="url(#jellyGradient1)" />
    <path d="M150,125 C140,150 160,170 150,195" stroke="url(#tentacleGradient)" stroke-width="1.5" fill="none"/>
    <path d="M150,125 C160,150 140,170 150,195" stroke="url(#tentacleGradient)" stroke-width="1.5" fill="none"/>
  </g>
  <!-- Musical Notes -->
  <g>
    <path d="M60,60 Q65,55 70,60 T80,60" fill="url(#noteGradient)" />
    <circle cx="75" cy="60" r="2" fill="#fff"/>
    <path d="M140,70 C145,65 150,70 155,65" fill="url(#noteGradient)" />
    <circle cx="155" cy="65" r="2" fill="#fff"/>
    <path d="M220,40 Q225,35 230,40 T240,40" fill="url(#noteGradient)" />
    <circle cx="235" cy="40" r="2" fill="#fff"/>
  </g>
  <!-- Bubbles -->
  <circle cx="50" cy="250" r="3" fill="none" stroke="#aad8d3" stroke-width="1"/>
  <circle cx="120" cy="280" r="2" fill="none" stroke="#aad8d3" stroke-width="0.5"/>
  <circle cx="180" cy="260" r="4" fill="none" stroke="#aad8d3" stroke-width="1"/>
  <circle cx="250" cy="220" r="3" fill="none" stroke="#aad8d3" stroke-width="1"/>
</svg>
SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" version="1.1">
  <defs>
    <radialGradient id="jellyfishGrad">
      <stop offset="0%" stop-color="#FF61D2" stop-opacity="1"/>
      <stop offset="70%" stop-color="#FF6B6B" stop-opacity="1"/>
      <stop offset="100%" stop-color="#FF6B6B" stop-opacity="0"/>
    </radialGradient>
    <radialGradient id="waveGrad">
      <stop offset="0%" stop-color="#4ECDC4" stop-opacity="0.8"/>
      <stop offset="100%" stop-color="#4ECDC4" stop-opacity="0"/>
    </radialGradient>
  </defs>
  
  <rect width="300" height="300" fill="#001a33"/>
  
  <!-- Jellyfish 1 -->
  <g transform="translate(100,150)">
    <circle r="20" fill="url(#jellyfishGrad)"/>
    <path d="M0-20Q20-30-20-40" stroke="#FF61D2" stroke-width="2" fill="none"/>
    <animateTransform attributeName="transform" type="translate" from="100,150" to="100,130" dur="2s" repeatCount="indefinite" begin="0s"/>
  </g>
  
  <!-- Jellyfish 2 -->
  <g transform="translate(200,180)">
    <circle r="25" fill="url(#jellyfishGrad)"/>
    <path d="M0-25Q25-35-25-45" stroke="#FF6B6B" stroke-width="2" fill="none"/>
    <animateTransform attributeName="transform" type="translate" from="200,180" to="200,200" dur="2s" repeatCount="indefinite" begin="0.5s"/>
  </g>
  
  <!-- Jellyfish 3 -->
  <g transform="translate(50,220)">
    <circle r="18" fill="url(#jellyfishGrad)"/>
    <path d="M0-18Q18-28-18-38" stroke="#FF61D2" stroke-width="2" fill="none"/>
    <animateTransform attributeName="transform" type="translate" from="50,220" to="50,240" dur="2s" repeatCount="indefinite" begin="1s"/>
  </g>
  
  <!-- Musical Elements -->
  <path d="M150,100 Q100,120 150,140 Q200,120 150,100" stroke="#4ECDC4" stroke-width="4" fill="none"/>
  <path d="M100,180 Q150,200 200,180" stroke="#4ECDC4" stroke-width="2" fill="none"/>
  
  <!-- Bubbles -->
  <g transform="translate(150,250)">
    <circle r="5" fill="url(#waveGrad)"/>
    <animateTransform attributeName="transform" type="translate" from="150,250" to="150,200" dur="3s" repeatCount="indefinite"/>
  </g>
  
  <!-- Glowing Elements -->
  <circle cx="250" cy="50" r="15" fill="#FF61D2" opacity="0.3">
    <animate attributeName="opacity" from="0.3" to="0.6" dur="1s" repeatCount="indefinite" begin="0s"/>
  </circle>
  
  <!-- Water Effects -->
  <rect x="0" y="0" width="300" height="300" fill="url(#waveGrad)" opacity="0.1"/>
  
  <!-- Animated Waves -->
  <path d="M0,200 Q150,250 300,200" stroke="#4ECDC4" stroke-width="2" fill="none">
    <animate attributeName="stroke-dashoffset" from="0" to="200" dur="4s" repeatCount="indefinite"/>
  </path>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 1

Judge's Analysis

    Player 1 effectively captures the concept of a 'moonlit jellyfish dance' with a clear depiction of jellyfish-like forms and a visible moon, enhancing the underwater ambiance.

    The composition is visually appealing, with a good use of gradient colors and simple, elegant lines representing the jellyfish tentacles.

    Player 2's image, while abstract, lacks clear jellyfish forms and a moonlit context, making it less aligned with 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
22
Player 2
13
Rectangles

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

Player 1
1
Player 2
2
Circles

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

Player 1
8
Player 2
5
Ellipses

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

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

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

Player 1
4
Player 2
4

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
10
Player 2
6

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
14
Player 2
4

Interactivity Metrics

Animations

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

Player 1
Player 2
6
Elements with Transform

The number of elements with transform attributes in the SVG.

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