Back

SVG Drawing Match #1286

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Neon jellyfish with cityscape reflections in its tentacles"

SVG by o1-mini (2024-09-12)
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <!-- Gradient for jellyfish bell -->
    <radialGradient id="jellyGradient" 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>
    
    <!-- Pattern for cityscape -->
    <pattern id="cityPattern" patternUnits="userSpaceOnUse" width="50" height="50">
      <rect width="50" height="50" fill="black"/>
      <!-- Buildings -->
      <rect x="5" y="30" width="5" height="20" fill="#ffffff"/>
      <rect x="15" y="25" width="8" height="25" fill="#ffffff"/>
      <rect x="25" y="28" width="6" height="22" fill="#ffffff"/>
      <rect x="35" y="20" width="10" height="30" fill="#ffffff"/>
      <rect x="45" y="30" width="5" height="20" fill="#ffffff"/>
      <!-- Windows -->
      <circle cx="7" cy="35" r="1.5" fill="#00ff00"/>
      <circle cx="19" cy="28" r="1.5" fill="#00ff00"/>
      <circle cx="29" cy="32" r="1.5" fill="#00ff00"/>
      <circle cx="38" cy="23" r="1.5" fill="#00ff00"/>
      <circle cx="47" cy="35" r="1.5" fill="#00ff00"/>
    </pattern>
    
    <!-- Glow filter -->
    <filter id="glow">
      <feGaussianBlur stdDeviation="3" result="blur"/>
      <feMerge>
        <feMergeNode in="blur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  
  <!-- Background -->
  <rect width="300" height="300" fill="#000"/>

  <!-- Jellyfish Bell -->
  <ellipse cx="150" cy="80" rx="60" ry="40" fill="url(#jellyGradient)" filter="url(#glow)"/>

  <!-- Tentacles with Cityscape Reflections -->
  <g>
    <path d="M150 120 C130 180, 140 220, 120 280" fill="url(#cityPattern)" opacity="0.8" filter="url(#glow)"/>
    <path d="M150 120 C170 180, 160 220, 180 280" fill="url(#cityPattern)" opacity="0.8" filter="url(#glow)"/>
    <path d="M150 120 C110 170, 100 220, 80 280" fill="url(#cityPattern)" opacity="0.8" filter="url(#glow)"/>
    <path d="M150 120 C190 170, 200 220, 220 280" fill="url(#cityPattern)" opacity="0.8" filter="url(#glow)"/>
    <path d="M150 120 C90 160, 70 220, 60 280" fill="url(#cityPattern)" opacity="0.8" filter="url(#glow)"/>
    <path d="M150 120 C210 160, 230 220, 240 280" fill="url(#cityPattern)" opacity="0.8" filter="url(#glow)"/>
  </g>
</svg>
SVG by Llama 3.1 405B Instruct
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Gradient Definitions -->
  <defs>
    <radialGradient id="neonGlow" cx="50%" cy="50%" r="50%" fx="50%" fy="50%">
      <stop offset="0%" stop-color="#9fff89" stop-opacity="1" />
      <stop offset="30%" stop-color="#68c1ff" stop-opacity="1" />
      <stop offset="60%" stop-color="#8a39ff" stop-opacity="1" />
      <stop offset="100%" stop-color="#8000ff" stop-opacity="0" />
    </radialGradient>

    <linearGradient id="cityLights" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" stop-color="#ff80b8" stop-opacity="1" />
      <stop offset="50%" stop-color="#c583ff" stop-opacity="1" />
      <stop offset="100%" stop-color="#8080ff" stop-opacity="0" />
    </linearGradient>

    <pattern id="skyscraperPattern" width="30" height="30" patternUnits="userSpaceOnUse">
      <rect x="5" y="5" width="5" height="15" fill="#3690ff" />
      <rect x="12" y="12" width="5" height="15" fill="#3690ff" />
      <rect x="19" y="5" width="5" height="15" fill="#3690ff" />
    </pattern>
  </defs>

  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#272847" rx="10" />

  <!-- City Reflections -->
  <g opacity="0.5">
    <rect x="90" y="110" width="50" height="20" fill="url(#cityLights)" rx="3" transform="rotate(35 115 120) scale(0.8, 1)" />
    <rect x="103" y="98" width="20" height="20" fill="url(#cityLights)" rx="3" transform="rotate(22 113 108)" />
    <rect x="110" y="100" width="50" height="20" fill="url(#cityLights)" rx="3" transform="rotate(-5 135 110)" />
  </g>

  <!-- Water Ripples -->
  <g>
    <circle cx="140" cy="210" r="5" fill="#3498db" />
    <circle cx="160" cy="190" r="5" fill="#3498db" opacity="0.7" />
    <circle cx="120" cy="200" r="5" fill="#3498db" opacity="0.8" />
    <circle cx="150" cy="200" r="5" fill="#3498db" opacity="0.8" />
  </g>

  <!-- Neon Jellyfish Body -->
  <circle cx="150" cy="120" r="40" fill="url(#neonGlow)" />

  <!-- Jellyfish Tentacles -->
  <g opacity="0.8">
    <path d="M150, 120L 180 150C190 160 185 170 170 170L 140 120" fill="none" stroke="url(#neonGlow)" stroke-width="4" />
    <path d="M150, 120L 180 150C195 160 200 160 210 180L 190 200L 180 195L 165 180" fill="none" stroke="url(#neonGlow)" stroke-width="4" />
    <path d="M150, 120L 120 150C110 160 105 160 95 180L 105 200L 120 195L 135 180" fill="none" stroke="url(#neonGlow)" stroke-width="4" />
  </g>

  <!-- Reflections on Tentacles -->
  <g>
    <g opacity="0.5">
      <rect x="155" y="132" width="20" height="10" fill="url(#cityLights)" rx="2" transform="rotate(-10 160 139)" />
      <rect x="163" y="138" width="15" height="8" fill="url(#cityLights)" rx="2" transform="rotate(-4 168 142)" />
    </g>
    <g opacity="0.5" transform="scale(-1, 1) translate(-300, 0)">
      <rect x="155" y="132" width="20" height="10" fill="url(#cityLights)" rx="2" transform="rotate(-10 160 139)" />
      <rect x="163" y="138" width="15" height="8" fill="url(#cityLights)" rx="2" transform="rotate(-4 168 142)" />
    </g>
    <g opacity="0.5" transform="translate(30, 0)">
      <rect x="155" y="132" width="20" height="10" fill="url(#cityLights)" rx="2" transform="rotate(-10 160 139)" />
      <rect x="163" y="138" width="15" height="8" fill="url(#cityLights)" rx="2" transform="rotate(-4 168 142)" />
    </g>
  </g>

  <!-- Skyscrapers in the Background -->
  <g>
    <rect x="190" y="200" width="50" height="80" fill="url(#skyscraperPattern)" />
    <rect x="150" y="220" width="30" height="60" fill="url(#skyscraperPattern)" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Llama 3.1 405B Instruct Player 2

Judge's Analysis

    Player 2's submission is more creative and visually appealing, effectively integrating the cityscape reflections into the tentacles of the jellyfish.

    The use of vibrant neon colors and a more defined composition enhances the adherence to the prompt.

    Player 1's image lacks clarity in depicting cityscape reflections within the tentacles and is visually less dynamic.

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
19
Player 2
23
Rectangles

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

Player 1
7
Player 2
15
Circles

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

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

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

Player 1
1
Player 2
8

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

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
11

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
16
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
3
Player 2
3
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