Back

SVG Drawing Match #303

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Jellyfish ballet in a moonlit underwater cathedral"

SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="cathedralGradient" cx="50%" cy="50%">
      <stop offset="0%" style="stop-color:#1a3c5a;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#0a2c4a;stop-opacity:1"/>
    </radialGradient>
    
    <linearGradient id="jellyfishGradient" x1="0%" y1="0%" x2="100%" y2="0%">
      <stop offset="0%" style="stop-color:#ff99cc;stop-opacity:1"/>
      <stop offset="100%" style="stop-color:#ff66cc;stop-opacity:1"/>
    </linearGradient>
    
    <filter id="glow" x="-50%" y="-50%" width="200%" height="200%">
      <feGaussianBlur stdDeviation="4" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  
  <!-- Cathedral Arches -->
  <g transform="translate(150,150)">
    <path d="M-100-100Q0-150,100-100T200-100Q100-50,0-100Z" fill="url(#cathedralGradient)"/>
    
    <!-- Moonlight Beam -->
    <circle cx="0" cy="-80" r="40" fill="#87CEEB" filter="url(#glow)"/>
    
    <!-- Jellyfish -->
    <g transform="rotate(-30)">
      <path d="M0-40Q-20-60,0-80T40-80Q20-60,0-40Z" fill="url(#jellyfishGradient)" opacity="0.8"/>
      <g transform="translate(0,-40)">
        <path d="M0-20Q-10-30,0-40T20-40Q10-30,0-20Z" fill="#fff" opacity="0.3"/>
      </g>
      <g transform="rotate(60) translate(30,0)">
        <line x1="0" y1="0" x2="40" y2="0" stroke="#98fb98" stroke-width="1" opacity="0.6"/>
        <line x1="0" y1="0" x2="-40" y2="0" stroke="#98fb98" stroke-width="1" opacity="0.6"/>
      </g>
    </g>
    
    <!-- Moonlight Reflection -->
    <rect x="-100" y="50" width="200" height="50" fill="url(#cathedralGradient)"/>
    
    <!-- Underwater Ripples -->
    <path d="M-100 100 Q 0 120, 100 100 T 200 100 Q 100 80, 0 100Z" fill="#006699" opacity="0.2"/>
    
    <!-- Jellyfish Trails -->
    <g transform="rotate(30)">
      <path d="M0-40Q-20-60,0-80T40-80Q20-60,0-40Z" fill="#66b3ff" opacity="0.3"/>
    </g>
    
    <!-- Moonlight Beam -->
    <rect x="-30" y="-120" width="60" height="180" rx="30" fill="#87CEEB" opacity="0.3"/>
    
    <!-- Jellyfish -->
    <g transform="rotate(150) translate(0,40)">
      <path d="M0-40Q-20-60,0-80T40-80Q20-60,0-40Z" fill="url(#jellyfishGradient)" opacity="0.8"/>
      <g transform="translate(0,-40)">
        <path d="M0-20Q-10-30,0-40T20-40Q10-30,0-20Z" fill="#fff" opacity="0.3"/>
      </g>
      <g transform="rotate(60) translate(30,0)">
        <line x1="0" y1="0" x2="40" y2="0" stroke="#98fb98" stroke-width="1" opacity="0.6"/>
        <line x1="0" y1="0" x2="-40" y2="0" stroke="#98fb98" stroke-width="1" opacity="0.6"/>
      </g>
    </g>
    
    <!-- Moonlight -->
    <circle cx="0" cy="-100" r="30" fill="#87CEEB" filter="url(#glow)"/>
    
    <!-- Underwater Elements -->
    <g transform="translate(-50,50)">
      <circle r="5" fill="#00ff99" opacity="0.5"/>
      <circle r="3" fill="#00ff99" opacity="0.5"/>
    </g>
    
    <!-- Moonlight Beam -->
    <rect x="-30" y="-120" width="60" height="180" rx="30" fill="#87CEEB" opacity="0.3"/>
    
    <!-- Jellyfish -->
    <g transform="rotate(270) translate(0,40)">
      <path d="M0-40Q-20-60,0-80T40-80Q20-60,0-40Z" fill="url(#jellyfishGradient)" opacity="0.8"/>
      <g transform="translate(0,-40)">
        <path d="M0-20Q-10-30,0-40T20-40Q10-30,0-20Z" fill="#fff" opacity="0.3"/>
      </g>
      <g transform="rotate(60) translate(30,0)">
        <line x1="0" y1="0" x2="40" y2="0" stroke="#98fb98" stroke-width="1" opacity="0.6"/>
        <line x1="0" y1="0" x2="-40" y2="0" stroke="#98fb98" stroke-width="1" opacity="0.6"/>
      </g>
    </g>
    
    <!-- Moonlight -->
    <circle cx="0" cy="-100" r="30" fill="#87CEEB" filter="url(#glow)"/>
    
    <!-- Underwater Elements -->
    <g transform="translate(50,50)">
      <circle r="5" fill="#00ff99" opacity="0.5"/>
      <circle r="3" fill="#00ff99" opacity="0.5"/>
    </g>
  </g>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background with gradient and subtle pattern -->
  <rect width="300" height="300" fill="url(#deepBlueGradient)" />
  
  <!-- Moonlight beam -->
  <ellipse cx="150" cy="100" rx="40" ry="80" fill="url(#moonlightGradient)" opacity="0.3" />
  
  <!-- Cathedral structure -->
  <g transform="translate(50,100)">
    <!-- Cathedral main body -->
    <path d="M0 0 L60 -80 L120 0 L150 60 L90 100 L60 60 L30 100 L0 60" fill="#2a4d6a" stroke="#1a2f45" stroke-width="2" />
    
    <!-- Stained glass window effect -->
    <circle cx="75" cy="30" r="20" fill="#ff61d2" stroke="#ab1867" stroke-width="2" />
    <circle cx="75" cy="70" r="15" fill="#7d6fff" stroke="#4b4cb8" stroke-width="2" />
    <path d="M60 40 L80 60 L60 80 L40 60 L60 40" fill="#ffa1b6" stroke="#ff4d9e" stroke-width="2" />
  </g>
  
  <!-- Jellyfish group -->
  <g id="jellyfish">
    <!-- Single jellyfish template -->
    <g transform="translate(100,200)">
      <!-- Bell -->
      <ellipse cx="0" cy="0" rx="30" ry="20" fill="#ffd3b6" stroke="#ff9f7f" stroke-width="2" />
      <!-- Tentacles -->
      <path d="M0 20 Q-30 40 -40 20" stroke="#ff9f7f" stroke-width="2" fill="none" />
      <path d="M0 20 Q30 40 40 20" stroke="#ff9f7f" stroke-width="2" fill="none" />
    </g>
    
    <!-- Multiple jellyfish instances -->
    <use xlink:href="#jellyfish" transform="translate(150,180) rotate(45)" opacity="0.8" />
    <use xlink:href="#jellyfish" transform="translate(200,160) rotate(-45)" opacity="0.6" />
    <use xlink:href="#jellyfish" transform="translate(50,220) rotate(90)" opacity="0.4" />
  </g>
  
  <!-- Decorative elements -->
  <path d="M20 100 Q40 120 60 100" stroke="#4b4cb8" stroke-width="1" fill="none" />
  <path d="M280 100 Q260 120 240 100" stroke="#4b4cb8" stroke-width="1" fill="none" />
  
  <!-- Gradient definitions -->
  <defs>
    <linearGradient id="deepBlueGradient" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0" stop-color="#1a2f45" />
      <stop offset="1" stop-color="#2a4d6a" />
    </linearGradient>
    
    <radialGradient id="moonlightGradient" cx="150" cy="150" r="60" fx="150" fy="150">
      <stop offset="0" stop-color="#ffffff" />
      <stop offset="1" stop-color="#b3cde3" />
    </radialGradient>
  </defs>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Qwen-32B Player 1

Judge's Analysis

    Player 1's image creatively captures the essence of jellyfish in motion with abstract forms and a soothing color palette, evoking the ethereal nature of a moonlit underwater scene.

    Although Player 2's submission could not be displayed, Player 1's composition is strong and visually appealing, with elements that suggest the grandeur of a cathedral space.

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
25
Player 2
11
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
7
Player 2
2
Ellipses

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

Player 1
Player 2
2
Lines

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

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

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

Player 1
13
Player 2
3

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
6
Player 2
9

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
6
Player 2
12

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
13
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
21
Max Group Nesting

The maximum nesting level of group elements (g) in the SVG.

Player 1
2
Player 2
1
Defs Elements

The number of elements defined within the defs element in the SVG.

Player 1
3
Player 2
2
Use Elements

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

Player 1
Player 2
3

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