Back

SVG Drawing Match #152

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A glowing neon jellyfish conducting a symphony in an underwater concert hall"

SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="url(#bg-grad)" rx="20" />
  <linearGradient id="bg-grad" x1="0" y1="0" x2="0" y2="100%">
    <stop offset="0" stop-color="#032B44" />
    <stop offset="100%" stop-color="#021331" />
  </linearGradient>

  <!-- Concert Hall -->
  <rect x="50" y="50" width="200" height="150" fill="#1A1D23" rx="10" />
  <rect x="55" y="55" width="190" height="140" fill="url(#hall-grad)" rx="10" />
  <linearGradient id="hall-grad" x1="0" y1="0" x2="0" y2="100%">
    <stop offset="0" stop-color="#343A41" />
    <stop offset="100%" stop-color="#212529" />
  </linearGradient>

  <!-- Jellyfish Conductor -->
  <g transform="translate(150 120)">
    <circle cx="0" cy="0" r="30" fill="#FF69B4" />
    <circle cx="0" cy="0" r="25" fill="url(#jelly-grad)" />
    <linearGradient id="jelly-grad" x1="0" y1="0" x2="0" y2="100%">
      <stop offset="0" stop-color="#FFC0CB" />
      <stop offset="100%" stop-color="#FF69B4" />
    </linearGradient>
    <circle cx="0" cy="0" r="20" fill="#FFFFFF" />
    <circle cx="0" cy="0" r="15" fill="url(#jelly-glow)" />
    <radialGradient id="jelly-glow" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0" stop-color="#FFC0CB" stop-opacity="0.5" />
      <stop offset="100%" stop-color="#FF69B4" stop-opacity="0" />
    </radialGradient>
    <path d="M-10 -20 L10 -20 L10 20 L-10 20 Z" fill="#FFFFFF" transform="translate(0 10)" />
    <path d="M-5 -10 L5 -10 L5 10 L-5 10 Z" fill="#FFFFFF" transform="translate(0 20)" />
  </g>

  <!-- Music Notes -->
  <g transform="translate(150 150)">
    <path d="M-10 -10 L10 -10 L10 10 L-10 10 Z" fill="#FFFFFF" />
    <path d="M-5 -5 L5 -5 L5 5 L-5 5 Z" fill="#FFFFFF" transform="translate(10 10)" />
    <path d="M-10 -10 L10 -10 L10 10 L-10 10 Z" fill="#FFFFFF" transform="translate(20 20)" />
    <path d="M-5 -5 L5 -5 L5 5 L-5 5 Z" fill="#FFFFFF" transform="translate(30 30)" />
  </g>

  <!-- Lighting -->
  <g transform="translate(150 100)">
    <circle cx="-30" cy="0" r="5" fill="#FFC0CB" />
    <circle cx="30" cy="0" r="5" fill="#FFC0CB" />
    <circle cx="-15" cy="15" r="5" fill="#FF69B4" />
    <circle cx="15" cy="15" r="5" fill="#FF69B4" />
  </g>

  <!-- Seaweed -->
  <g transform="translate(50 200)">
    <path d="M0 0 L10 10 L20 0 L10 -10 Z" fill="#34C759" />
    <path d="M0 0 L10 10 L20 0 L10 -10 Z" fill="#34C759" transform="translate(20 0)" />
    <path d="M0 0 L10 10 L20 0 L10 -10 Z" fill="#34C759" transform="translate(40 0)" />
  </g>
</svg>
SVG by o1-mini (2024-09-12)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <!-- Background Gradient -->
    <linearGradient id="bgGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#001d3d" />
      <stop offset="100%" stop-color="#003566" />
    </linearGradient>
    <!-- Glow Filter -->
    <filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur stdDeviation="4" result="blur"/>
      <feMerge>
        <feMergeNode in="blur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
    <!-- Jellyfish Gradient -->
    <radialGradient id="jellyBellGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ff00ff" stop-opacity="1"/>
      <stop offset="100%" stop-color="#00ffff" stop-opacity="0.6"/>
    </radialGradient>
    <!-- Tentacle Gradient -->
    <linearGradient id="tentacleGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#00ffff" stop-opacity="1"/>
      <stop offset="100%" stop-color="#0000ff" stop-opacity="0.3"/>
    </linearGradient>
    <!-- Musical Note Gradient -->
    <linearGradient id="noteGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" stop-color="#ffff00" stop-opacity="1"/>
      <stop offset="100%" stop-color="#ff00ff" stop-opacity="0.5"/>
    </linearGradient>
    <!-- Musical Notes Symbols -->
    <symbol id="note" viewBox="0 0 24 24">
      <path d="M12 3v10.55A4 4 0 1 0 14 17V7h4V3h-6z" fill="url(#noteGradient)"/>
    </symbol>
  </defs>
  
  <!-- Background -->
  <rect width="300" height="300" fill="url(#bgGradient)"/>

  <!-- Concert Hall Structure -->
  <g opacity="0.2">
    <ellipse cx="150" cy="100" rx="130" ry="20" fill="#004080"/>
    <ellipse cx="150" cy="200" rx="130" ry="20" fill="#004080"/>
    <ellipse cx="50" cy="150" rx="20" ry="130" fill="#004080"/>
    <ellipse cx="250" cy="150" rx="20" ry="130" fill="#004080"/>
    <circle cx="150" cy="150" r="140" stroke="#0059b3" stroke-width="2" fill="none"/>
  </g>
  
  <!-- Jellyfish -->
  <g filter="url(#glow)" transform="translate(150,150)">
    <!-- Bell -->
    <ellipse cx="0" cy="0" rx="40" ry="20" fill="url(#jellyBellGradient)" />
    <!-- Tentacles -->
    <g stroke="url(#tentacleGradient)" stroke-width="2" fill="none">
      <path d="M-25,10 C-35,50 -15,80 -30,110" />
      <path d="M-15,10 C-25,50 -5,80 -20,110" />
      <path d="M-5,10 C-15,50, 5,80, -10,110" />
      <path d="M5,10 C15,50, 25,80, 10,110" />
      <path d="M15,10 C25,50, 35,80, 30,110" />
    </g>
  </g>
  
  <!-- Conducting Arms -->
  <g filter="url(#glow)" stroke="#ffffff" stroke-width="3">
    <path d="M150,150 L100,100" />
    <path d="M150,150 L200,100" />
    <path d="M150,150 L100,200" />
    <path d="M150,150 L200,200" />
  </g>
  
  <!-- Musical Notes -->
  <use href="#note" x="220" y="80" transform="scale(0.8) rotate(-30 220 80)" />
  <use href="#note" x="240" y="100" transform="scale(0.6) rotate(45 240 100)" />
  <use href="#note" x="260" y="70" transform="scale(0.5) rotate(-15 260 70)" />
  <use href="#note" x="180" y="120" transform="scale(0.7) rotate(60 180 120)" />
  
  <!-- Bubbles -->
  <g fill="white" opacity="0.5">
    <circle cx="60" cy="60" r="2"/>
    <circle cx="90" cy="80" r="1.5"/>
    <circle cx="120" cy="50" r="2.5"/>
    <circle cx="180" cy="90" r="1.8"/>
    <circle cx="210" cy="60" r="1.2"/>
    <circle cx="240" cy="100" r="2"/>
    <circle cx="270" cy="70" r="1"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is O1-mini (2024-09-12) Player 2

Judge's Analysis

    Player 2's image more effectively captures the concept of a glowing neon jellyfish conducting a symphony.

    The vibrant colors and musical notes clearly convey the theme, and the jellyfish is central and visually appealing.

    Player 1's image lacks clear representation of the prompt and doesn't effectively communicate the underwater symphony concept.

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

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

Player 1
3
Player 2
1
Circles

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

Player 1
8
Player 2
8
Ellipses

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

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

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

Player 1
4
Player 2
5

Visual Effects Metrics

Gradients

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

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
9
Player 2
9

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
11
Player 2
5

Complexity Metrics

Path Commands

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

Player 1
45
Player 2
26
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
Player 2
6
Use Elements

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

Player 1
Player 2
4

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