Back

SVG Drawing Match #1110

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A jellyfish wearing a top hat, floating in a starry night sky"

SVG by GPT-4o (2024-11-20)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="skyGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:rgb(20,24,82);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(5,5,35);stop-opacity:1" />
    </radialGradient>
    <radialGradient id="jellyfishBody" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:rgb(173,216,230);stop-opacity:0.8" />
      <stop offset="100%" style="stop-color:rgb(24,60,191);stop-opacity:0.8" />
    </radialGradient>
    <radialGradient id="topHatGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:rgb(45,45,45);stop-opacity:1" />
      <stop offset="100%" style="stop-color:rgb(20,20,20);stop-opacity:1" />
    </radialGradient>
    <pattern id="stars" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="1" cy="1" r="1" fill="white" />
      <circle cx="8" cy="8" r="1.5" fill="white" />
    </pattern>
  </defs>
  <rect width="100%" height="100%" fill="url(#skyGradient)" />
  <rect width="100%" height="100%" fill="url(#stars)" />

  <g transform="translate(150, 150)">
    <!-- Jellyfish Body -->
    <ellipse cx="0" cy="0" rx="50" ry="70" fill="url(#jellyfishBody)" filter="url(#fuzz)" />
    <!-- Jellyfish Tentacles -->
    <path d="M0,30 Q-10,60 -5,100 T0,170 M0,30 Q-5,60 0,100 T-5,170
            M0,30 Q0,60 5,100 T0,170 M0,30 Q10,60 5,100 T5,170"
          stroke="rgba(24,60,191,0.5)" stroke-width="2" fill="none" />

    <!-- Top Hat -->
    <ellipse cx="0" cy="-50" rx="40" ry="5" fill="black" opacity="0.6" />
    <rect x="-30" y="-90" width="60" height="40" fill="url(#topHatGradient)" />
    <ellipse cx="0" cy="-90" rx="30" ry="7" fill="black" />
  </g>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background with starry night effect -->
  <defs>
    <radialGradient id="nightSky" cx="150" cy="150" r="150" fx="150" fy="150">
      <stop offset="0" stop-color="#0a192f" />
      <stop offset="1" stop-color="#020c1b" />
    </radialGradient>
    <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(#nightSky)"/>

  <!-- Stars -->
  <g id="stars">
    <circle cx="50" cy="50" r="1" fill="white"/>
    <circle cx="80" cy="100" r="1" fill="white"/>
    <circle cx="120" cy="70" r="1" fill="white"/>
    <circle cx="200" cy="80" r="1" fill="white"/>
    <circle cx="250" cy="120" r="1" fill="white"/>
    <circle cx="150" cy="150" r="1" fill="white"/>
    <circle cx="100" cy="200" r="1" fill="white"/>
    <circle cx="220" cy="220" r="1" fill="white"/>
    <circle cx="280" cy="250" r="1" fill="white"/>
    <circle cx="180" cy="280" r="1" fill="white"/>
  </g>

  <!-- Jellyfish body -->
  <circle cx="150" cy="150" r="80" fill="#32CD32" opacity="0.5" filter="url(#glow)"/>
  <circle cx="150" cy="150" r="60" fill="#1a8f4c" opacity="0.3"/>

  <!-- Jellyfish tentacles -->
  <path d="M150,230 Q160,260 170,270 L150,270 L130,270 Q140,260 150,230" fill="#1a8f4c" opacity="0.3"/>
  <path d="M150,230 Q170,240 190,250 L170,270 Q160,260 150,230" fill="#1a8f4c" opacity="0.3"/>
  <path d="M150,230 Q130,240 110,250 L130,270 Q140,260 150,230" fill="#1a8f4c" opacity="0.3"/>
  <path d="M150,230 Q160,220 170,210 L170,270 Q160,260 150,230" fill="#1a8f4c" opacity="0.3"/>

  <!-- Top hat -->
  <rect x="130" y="70" width="40" height="60" fill="#000" rx="5"/>
  <rect x="125" y="50" width="50" height="20" fill="#000" rx="3"/>
  <path d="M145,50 L155,40 L145,30 Z" fill="#000"/>
  <path d="M155,50 L165,40 L155,30 Z" fill="#000"/>
  <path d="M135,50 L145,40 L135,30 Z" fill="#000"/>
  <path d="M145,30 L155,20 L165,30 Z" fill="#000"/>
  <path d="M135,30 L145,20 L155,30 Z" fill="#000"/>

  <!-- Hat band -->
  <rect x="125" y="50" width="50" height="10" fill="#8a2be2" rx="2"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is GPT-4o (2024-11-20) Player 1

Judge's Analysis

    Player 1's image directly depicts a jellyfish with a clear top hat, floating against a starry background, effectively adhering to the prompt.

    The use of color and pattern creates a visually appealing and whimsical scene.

    In contrast, Player 2's image is more abstract, making it difficult to discern the elements described in the prompt, which affects its adherence and clarity.

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
25
Rectangles

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

Player 1
3
Player 2
4
Circles

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

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

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

Player 1
1
Player 2
1

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
1
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
3
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
1
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
12
Player 2
37
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
4
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