Back

SVG Drawing Match #1510

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating jellyfish wearing top hats in a cosmic sea"

SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Cosmic sea background -->
  <rect x="0" y="0" width="300" height="300" fill="#0f0326" />
  <circle cx="150" cy="150" r="100" fill="url(#gradient)" />
  <defs>
    <radialGradient id="gradient" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" style="stop-color:#05193e;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#000000;stop-opacity:1" />
    </radialGradient>
  </defs>
  
  <!-- Jellyfish body -->
  <ellipse cx="150" cy="150" rx="30" ry="60" fill="#d41c1c" />
  <!-- Jellyfish top hat -->
  <path d="M120 90 L180 90 L165 60 Z" fill="#1c287f" />
  <circle cx="150" cy="90" r="15" fill="#1c287f" />
  <!-- Jellyfish tentacles -->
  <path d="M118 150 Q120 200, 130 250" stroke="#ff9d1e" stroke-width="2" fill="none" />
  <path d="M132 150 Q130 200, 140 250" stroke="#ff9d1e" stroke-width="2" fill="none" />
  <path d="M148 150 Q150 200, 160 250" stroke="#ff9d1e" stroke-width="2" fill="none" />
  <path d="M152 150 Q150 200, 160 250" stroke="#ff9d1e" stroke-width="2" fill="none" />
</svg>
SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <filter id="glow">
      <feGaussianBlur stdDeviation="2" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    <pattern id="stars" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="1" cy="1" r="0.5" fill="white"/>
    </pattern>
  </defs>
  <rect width="300" height="300" fill="#000" />
  <g transform="translate(150,150)">
    <!-- Jellyfish 1 -->
    <g transform="translate(-50,0)">
      <circle cx="0" cy="0" r="20" fill="url(#grad1)" filter="url(#glow)"/>
      <path d="M0-30Q-20-20-30-10L-35-5Q-40-0-35-5L-30-10Z" fill="url(#grad1)" stroke="#fff" stroke-width="0.5"/>
      <path d="M0-30Q20-20-30-10L-35-5Q-40-0-35-5L-30-10Z" fill="url(#grad1)" stroke="#fff" stroke-width="0.5"/>
    </g>
    
    <!-- Jellyfish 2 -->
    <g transform="translate(50,0)">
      <circle cx="0" cy="0" r="25" fill="url(#grad2)" filter="url(#glow)"/>
      <path d="M0-35Q-25-25-35-15L-40-10Q-45-5-40-10L-35-15Z" fill="url(#grad2)" stroke="#fff" stroke-width="0.5"/>
      <path d="M0-35Q25-25-35-15L-40-10Q-45-5-40-10L-35-15Z" fill="url(#grad2)" stroke="#fff" stroke-width="0.5"/>
    </g>

    <!-- Jellyfish 3 -->
    <g transform="translate(0,50)">
      <circle cx="0" cy="0" r="18" fill="url(#grad3)" filter="url(#glow)"/>
      <path d="M0-28Q-18-20-25-10L-28-5Q-30-0-28-5L-25-10Z" fill="url(#grad3)" stroke="#fff" stroke-width="0.5"/>
      <path d="M0-28Q18-20-25-10L-28-5Q-30-0-28-5L-25-10Z" fill="url(#grad3)" stroke="#fff" stroke-width="0.5"/>
    </g>

    <!-- Top Hats -->
    <g transform="translate(-50,0)" filter="url(#glow)">
      <rect x="-15" y="-40" width="30" height="30" rx="10" fill="#663300"/>
      <rect x="-10" y="-65" width="20" height="40" rx="5" fill="#663300"/>
      <circle cx="-10" cy="-65" r="3" fill="#fff"/>
    </g>
    <g transform="translate(50,0)" filter="url(#glow)">
      <rect x="-15" y="-40" width="30" height="30" rx="10" fill="#993333"/>
      <rect x="-10" y="-65" width="20" height="40" rx="5" fill="#993333"/>
      <circle cx="-10" cy="-65" r="3" fill="#fff"/>
    </g>
    <g transform="translate(0,50)" filter="url(#glow)">
      <rect x="-15" y="-40" width="30" height="30" rx="10" fill="#336699"/>
      <rect x="-10" y="-65" width="20" height="40" rx="5" fill="#336699"/>
      <circle cx="-10" cy="-65" r="3" fill="#fff"/>
    </g>

    <!-- Cosmic Elements -->
    <circle cx="0" cy="-40" r="80" fill="none" stroke="#00ffff" stroke-width="0.5" stroke-dasharray="2,2"/>
    <g transform="translate(0,-60)">
      <circle cx="0" cy="0" r="5" fill="#fff"/>
      <circle cx="15" cy="0" r="4" fill="#fff"/>
      <circle cx="-15" cy="0" r="4" fill="#fff"/>
    </g>
    
    <!-- Galaxy Effect -->
    <circle cx="0" cy="0" r="120" fill="url(#galaxy)"/>
  </g>

  <linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%">
    <stop offset="0%" style="stop-color:#FF61D2;stop-opacity:1"/>
    <stop offset="100%" style="stop-color:#9D00FF;stop-opacity:1"/>
  </linearGradient>

  <linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="100%">
    <stop offset="0%" style="stop-color:#00FF9D;stop-opacity:1"/>
    <stop offset="100%" style="stop-color:#009DFF;stop-opacity:1"/>
  </linearGradient>

  <linearGradient id="grad3" x1="0%" y1="0%" x2="100%" y2="100%">
    <stop offset="0%" style="stop-color:#FFB347;stop-opacity:1"/>
    <stop offset="100%" style="stop-color:#FF6B6B;stop-opacity:1"/>
  </linearGradient>

  <radialGradient id="galaxy" cx="50%" cy="50%" r="100%">
    <stop offset="0%" style="stop-color:#000;stop-opacity:1"/>
    <stop offset="50%" style="stop-color:#000;stop-opacity:0.5"/>
    <stop offset="100%" style="stop-color:#000;stop-opacity:0"/>
  </radialGradient>

  <g transform="translate(150,150)" opacity="0.5">
    <circle cx="0" cy="-50" r="3" fill="#fff"/>
    <circle cx="10" cy="-60" r="2" fill="#fff"/>
    <circle cx="-10" cy="-60" r="2" fill="#fff"/>
  </g>

  <g transform="translate(150,150)" opacity="0.3">
    <circle cx="0" cy="0" r="100" fill="url(#stars)"/>
  </g>
</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 more effectively captures the theme of 'floating jellyfish wearing top hats in a cosmic sea' with a creative use of color and form, suggesting a more cosmic and whimsical environment.

    The composition includes multiple jellyfish, enhancing the visual appeal and adherence to the prompt.

    Player 1's image, while colorful, does not convey the theme as clearly due to its simpler and more abstract 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
9
Player 2
29
Rectangles

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

Player 1
1
Player 2
7
Circles

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

Player 1
2
Player 2
16
Ellipses

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

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

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

Player 1
Player 2
10

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
4
Player 2
7

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
4
Player 2
7

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

Complexity Metrics

Path Commands

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

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