Back

SVG Drawing Match #1198

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Surreal cactus holding a tiny umbrella in a desert rainstorm"

SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="skyGradient">
      <stop offset="0%" stop-color="#1a0f3c"/>
      <stop offset="100%" stop-color="#6a1b5f"/>
    </linearGradient>
    <linearGradient id="cactusGradient">
      <stop offset="0%" stop-color="#2d5a27"/>
      <stop offset="100%" stop-color="#ff69b4"/>
    </linearGradient>
    <radialGradient id="umbrellaGradient">
      <stop offset="0%" stop-color="#ff1493"/>
      <stop offset="100%" stop-color="#ff00ff"/>
    </radialGradient>
    <pattern id="rainDrops" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse">
      <circle cx="10" cy="10" r="2" fill="#a0c8e6" filter="url(#dropBlur)"/>
    </pattern>
    <filter id="dropBlur">
      <feGaussianBlur stdDeviation="1"/>
    </filter>
  </defs>
  <rect width="300" height="300" fill="url(#skyGradient)"/>
  <g id="rain">
    <rect width="300" height="300" fill="url(#rainDrops)" opacity="0.3"/>
  </g>
  <rect y="250" width="300" height="50" fill="url(#desertGradient)"/>
  <path d="M150 200 Q130 150 150 100 Q170 150 150 200" fill="url(#cactusGradient)" stroke="#1a0f3c" stroke-width="2"/>
  <g id="cactusFace">
    <circle cx="140" cy="170" r="8" fill="#fff"/>
    <circle cx="160" cy="170" r="8" fill="#fff"/>
    <rect x="145" y="175" width="10" height="5" fill="#fff"/>
  </g>
  <g id="umbrella">
    <circle cx="150" cy="120" r="20" fill="url(#umbrellaGradient)"/>
    <rect x="145" y="140" width="10" height="40" fill="#cd8500"/>
  </g>
  <g id="clouds">
    <rect x="50" y="50" width="60" height="30" rx="15" fill="#ffffff"/>
    <rect x="100" y="70" width="80" height="40" rx="20" fill="#ffffff"/>
    <rect x="190" y="60" width="70" height="35" rx="18" fill="#ffffff"/>
  </g>
  <g id="splashes">
    <circle cx="140" cy="210" r="10" fill="#a0c8e6" filter="url(#dropBlur)"/>
    <circle cx="160" cy="215" r="8" fill="#a0c8e6" filter="url(#dropBlur)"/>
  </g>
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background with stormy gradient -->
  <rect width="300" height="300" fill="url(#storm-sky)"/>
  
  <!-- Rain effect -->
  <defs>
    <path id="raindrop" d="M50,0 L40,20 L60,20 L50,40 L45,60 L55,60 L50,80"/>
  </defs>
  
  <use href="#raindrop" x="20" y="50" stroke="#3498db" stroke-width="1"/>
  <use href="#raindrop" x="80" y="30" stroke="#2980b9" stroke-width="1"/>
  <use href="#raindrop" x="140" y="45" stroke="#2c3e50" stroke-width="1"/>
  <use href="#raindrop" x="200" y="25" stroke="#2c3e50" stroke-width="1"/>
  <use href="#raindrop" x="260" y="40" stroke="#34495e" stroke-width="1"/>
  
  <!-- Cactus -->
  <path d="M150,220 L130,250 L170,250 L150,280 M150,180 L120,200 L180,200 L150,220" 
        fill="#2ecc71" stroke="#27ae60" stroke-width="3"/>
  <path d="M140,240 L160,240 L155,245 L145,245" fill="#2ecc71"/>
  <path d="M145,200 L155,200 L150,195" fill="#2ecc71"/>
  
  <!-- Cactus pot -->
  <path d="M130,280 C150,290 170,290 160,280 L140,280 C130,270 120,260 130,250 C140,240 150,240 160,240 C170,250 160,260 150,270 L150,280" 
        fill="#e67e22" stroke="#d35400" stroke-width="2"/>
  
  <!-- Umbrella -->
  <path d="M148,230 C145,225 140,220 145,215 C150,210 155,205 150,200 C145,195 140,190 142,185" 
        fill="#e74c3c" stroke="#c0392b" stroke-width="1"/>
  <path d="M150,185 L150,200" stroke="#c0392b" stroke-width="2"/>
  
  <!-- Lightning bolt -->
  <path d="M100,50 L120,70 L110,90 L130,80 L120,100 L140,110" 
        stroke="#f1c40f" stroke-width="2" fill="none"/>
  
  <!-- Clouds -->
  <ellipse cx="50" cy="60" rx="30" ry="20" fill="#ecf0f1" opacity="0.8"/>
  <ellipse cx="220" cy="40" rx="25" ry="15" fill="#ecf0f1" opacity="0.8"/>
  
  <!-- Ground -->
  <rect x="0" y="280" width="300" height="20" fill="#2c3e50" opacity="0.8"/>
  
  <!-- Gradients -->
  <defs>
    <linearGradient id="storm-sky" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0%" style="stop-color:#2c3e50;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#3a506b;stop-opacity:1" />
    </linearGradient>
  </defs>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Llama-70B Player 2

Judge's Analysis

    Player 2's submission more closely adheres to the prompt by clearly depicting a cactus with a tiny umbrella in a desert rainstorm, using elements like lightning and clouds to enhance the surreal atmosphere.

    The composition is more coherent and visually appealing, with a clear focus on the cactus.

    Player 1's image lacks clarity in representing the prompt and appears more abstract, reducing its effectiveness in conveying the theme.

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
15
Player 2
12
Rectangles

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

Player 1
8
Player 2
2
Circles

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

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

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

Player 1
5
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
1
Player 2
10

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
10
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
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
3
Player 2
41
Max Group Nesting

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

Player 1
Player 2
Defs Elements

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

Player 1
5
Player 2
2
Use Elements

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

Player 1
Player 2
5

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