Back

SVG Drawing Match #1582

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Lighthouse floating in a teacup on a stormy sea"

SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <linearGradient id="grad1" x1="0" x2="0" y1="0" y2="1">
      <stop offset="0" stop-color="#3498db" stop-opacity="1" />
      <stop offset="1" stop-color="#2980b9" stop-opacity="1" />
    </linearGradient>
    <linearGradient id="grad2" x1="0" x2="0" y1="0" y2="1">
      <stop offset="0" stop-color="#f7dc6f" stop-opacity="1" />
      <stop offset="1" stop-color="#ffd700" stop-opacity="1" />
    </linearGradient>
    <pattern id="waves" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <rect x="0" y="0" width="20" height="20" fill="#3498db" rx="2" />
      <rect x="5" y="5" width="10" height="10" fill="#2980b9" rx="1" />
    </pattern>
  </defs>
  <rect x="0" y="0" width="300" height="300" fill="url(#grad1)" rx="20" />
  <g transform="translate(150, 150)">
    <g transform="translate(-50, -50)">
      <circle cx="0" cy="0" r="40" fill="#fff" />
      <circle cx="0" cy="0" r="30" fill="url(#grad2)" />
      <path d="M -40 0 L 40 0 L 40 20 L -40 20 Z" fill="#fff" />
      <path d="M -30 0 L 30 0 L 30 20 L -30 20 Z" fill="url(#grad2)" />
      <path d="M -20 20 L 20 20 L 20 30 L -20 30 Z" fill="#fff" />
      <path d="M -15 30 L 15 30 L 15 35 L -15 35 Z" fill="url(#grad2)" />
      <circle cx="0" cy="35" r="5" fill="#fff" />
    </g>
    <g transform="translate(0, -100)">
      <rect x="-20" y="0" width="40" height="100" fill="url(#waves)" rx="5" />
      <rect x="-20" y="0" width="40" height="100" fill="url(#waves)" rx="5" transform="translate(10, 10)" />
      <rect x="-20" y="0" width="40" height="100" fill="url(#waves)" rx="5" transform="translate(20, 20)" />
    </g>
  </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="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#3d6979;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#1a3c5a;stop-opacity:1" />
    </linearGradient>
    <radialGradient id="lightBeam" cx="50%" cy="50%" r="50%">
      <stop offset="0%" style="stop-color:#fff;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#fff;stop-opacity:0" />
    </radialGradient>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  
  <!-- Stormy Sea -->
  <path d="M0 180 Q150 250 300 180 L300 300 L0 300 Z" fill="#1a2f49"/>
  <path d="M50 190 Q150 260 250 190" fill="#2a4565" opacity="0.8"/>
  <path d="M30 200 Q150 270 270 200" fill="#1a2f49" opacity="0.7"/>
  
  <!-- Teacup -->
  <circle cx="150" cy="220" r="60" fill="#f0d7b5"/>
  <rect x="130" y="210" width="40" height="10" rx="5" fill="#a56e45"/>
  
  <!-- Lighthouse -->
  <rect x="135" y="190" width="30" height="60" rx="5" fill="url(#lighthouseGradient)"/>
  <path d="M140 190 L160 190 L155 185 Z" fill="#fff"/>
  <circle cx="150" cy="210" r="5" fill="url(#lightBeam)"/>
  
  <!-- Raindrops -->
  <circle cx="140" cy="170" r="3" fill="#999" filter="url(#dropFilter)"/>
  <circle cx="170" cy="180" r="4" fill="#999" filter="url(#dropFilter)"/>
  <circle cx="130" cy="200" r="3" fill="#999" filter="url(#dropFilter)"/>
  
  <!-- Clouds -->
  <path d="M100 80 Q120 60 140 80 Q160 100 140 120 Q120 100 100 120 Z" fill="#a0a0a0"/>
  <path d="M200 70 Q220 50 240 70 Q260 90 240 110 Q220 90 200 110 Z" fill="#a0a0a0"/>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Qwen-32B Player 2

Judge's Analysis

    Player 2's image captures the idea of a lighthouse in a teacup on a stormy sea more effectively.

    The composition is clearer, with a recognizable teacup and the suggestion of a lighthouse.

    The use of color and shapes conveys the stormy atmosphere better, adhering closely to the prompt.

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
13
Player 2
14
Rectangles

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

Player 1
6
Player 2
3
Circles

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

Player 1
3
Player 2
5
Ellipses

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

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

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

Player 1
3
Player 2

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

The number of filter definitions (filter) in the SVG.

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

The number of elements with stroke attributes in the SVG.

Player 1
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
5
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
5
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
20
Player 2
23
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
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