Back

SVG Drawing Match #428

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Frog conducting an orchestra of floating mushrooms under a crescent moon"

SVG by DeepSeek R1
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="sky" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#0b0d2e"/>
      <stop offset="100%" stop-color="#3a1c4d"/>
    </linearGradient>
    <radialGradient id="moon">
      <stop offset="70%" stop-color="#f9f3d6"/>
      <stop offset="100%" stop-color="#f9f3d600"/>
    </radialGradient>
    <filter id="glow">
      <feGaussianBlur stdDeviation="3" result="coloredBlur"/>
      <feMerge>
        <feMergeNode in="coloredBlur"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>

  <rect width="300" height="300" fill="url(#sky)"/>
  
  <!-- Moon -->
  <circle cx="250" cy="60" r="35" fill="url(#moon)" filter="url(#glow)"/>
  
  <!-- Stars -->
  <g fill="#f6f5b2" opacity="0.8">
    <circle cx="40" cy="85" r="1.2"/>
    <circle cx="180" cy="30" r="1.6"/>
    <circle cx="90" cy="140" r="1.1"/>
    <circle cx="270" cy="190" r="1.4"/>
  </g>

  <!-- Frog Conductor -->
  <g transform="translate(120 180)">
    <path d="M30 50 Q20 0 0 0 Q-20 10 -30 50 L0 70 Z" fill="#7dcd67"/>
    <circle cx="0" cy="40" r="30" fill="#8cd96e"/>
    <ellipse cx="-12" cy="32" rx="8" ry="6" fill="#1a2f1f"/>
    <ellipse cx="12" cy="32" rx="8" ry="6" fill="#1a2f1f"/>
    <path d="M-30 20 L-50 -10 M30 20 L50 -10" stroke="#8cd96e" stroke-width="4"/>
    <path d="M0 70 L-20 100 Q0 90 20 100" fill="#568c3f"/>
  </g>

  <!-- Mushroom Orchestra -->
  <g transform="translate(150 160)">
    <!-- Violin Mushroom -->
    <g transform="rotate(-20) translate(-180 0)">
      <path d="M0 0 Q30 -40 60 0 L30 80 Z" fill="#ff6b6b"/>
      <rect x="25" y="30" width="10" height="50" fill="#d94a4a"/>
      <path d="M30 0 L10 60 M30 0 L50 60" stroke="#f9f3d6" stroke-width="3"/>
    </g>

    <!-- Trumpet Mushroom -->
    <g transform="rotate(25) translate(80 -30)">
      <circle cx="0" cy="0" r="25" fill="#ffd700"/>
      <path d="M0 25 Q30 50 0 75 L-25 50 Z" fill="#ffaa00"/>
      <path d="M0 75 L0 120 Q-15 130 0 140" fill="#cc8800"/>
    </g>

    <!-- Drum Mushroom -->
    <g transform="rotate(10) translate(-80 -100)">
      <rect x="-15" y="0" width="30" height="60" fill="#a64dff"/>
      <ellipse cx="0" cy="0" rx="20" ry="10" fill="#882eb4"/>
      <ellipse cx="0" cy="60" rx="20" ry="10" fill="#882eb4"/>
    </g>
  </g>

  <!-- Musical Elements -->
  <g stroke="#f9f3d680" fill="none" stroke-width="2">
    <path d="M130 160 q40 -30 80 0 M130 180 q40 30 80 0" stroke-linecap="round"/>
    <path d="M200 130 a20 20 0 0 1 40 0 M200 140 a20 20 0 0 0 40 0"/>
  </g>
</svg>
SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="moonGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#66CCFF;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#3399FF;stop-opacity:1" />
    </linearGradient>
    <radialGradient id="frogGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#4CAF50;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#FFD700;stop-opacity:1" />
    </radialGradient>
    <pattern id="starPattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="2" fill="#FFFFFF"/>
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#starPattern)"/>
  <path d="M150,50 Q170,20 190,50 Q170,80 150,50" fill="url(#moonGradient)" stroke="#3399FF" stroke-width="2"/>
  <g transform="translate(120,200)">
    <rect width="60" height="40" rx="20" fill="#4CAF50"/>
    <path d="M110,190 Q140,180 170,190" stroke="#FFD700" stroke-width="4"/>
    <circle cx="140" cy="210" r="10" fill="#FFD700"/>
    <path d="M140,210 L150,220 L140,230" fill="#FFD700"/>
  </g>
  <g transform="translate(100,150)">
    <circle cx="0" cy="0" r="30" fill="url(#frogGradient)"/>
    <path d="M0,0 Q-20,-30 0,-60" fill="#4CAF50"/>
    <path d="M0,0 Q20,-30 0,-60" fill="#4CAF50"/>
    <circle cx="0" cy="-20" r="5" fill="#FFFFFF"/>
    <path d="M-10,-30 L10,-30 L5,-40" fill="#FFD700"/>
  </g>
  <g transform="translate(200,180)">
    <circle cx="0" cy="0" r="20" fill="#FF6B6B"/>
    <rect x="-10" y="20" width="20" height="40" rx="5" fill="#666666"/>
  </g>
  <g transform="translate(80,120)">
    <circle cx="0" cy="0" r="15" fill="#FF6B6B"/>
    <rect x="-5" y="15" width="10" height="30" rx="3" fill="#666666"/>
  </g>
  <g transform="translate(160,100)">
    <circle cx="0" cy="0" r="25" fill="#FF6B6B"/>
    <rect x="-12" y="25" width="24" height="40" rx="5" fill="#666666"/>
  </g>
  <g transform="translate(240,140)">
    <circle cx="0" cy="0" r="18" fill="#FF6B6B"/>
    <rect x="-9" y="18" width="18" height="36" rx="4" fill="#666666"/>
  </g>
  <rect y="250" height="50" width="300" fill="url(#groundGradient)"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek R1 Player 1

Judge's Analysis

    Player 1's submission captures the whimsical and surreal aspect of the prompt with a playful arrangement of abstract shapes that suggest a frog and floating mushrooms under a celestial setting.

    The use of color and arrangement provides a clear nighttime theme, which aligns with the crescent moon aspect of the prompt.

    Player 2's image, while colorful, lacks a clear representation of the elements described and does not convey the theme as effectively.

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

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

Player 1
3
Player 2
7
Circles

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

Player 1
7
Player 2
8
Ellipses

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

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

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

Player 1
7
Player 2
6

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

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2
2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
15
Player 2
6

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

Complexity Metrics

Path Commands

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

Player 1
35
Player 2
15
Max Group Nesting

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

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