Back

SVG Drawing Match #700

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A surreal clock with melting numbers dripping like honey"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <defs>
    <filter id="melt">
      <feGaussianBlur stdDeviation="4" result="blur"/>
      <feBlend in="SourceGraphic" mode="screen"/>
    </filter>
    <linearGradient id="honey" x1="0" y1="0" x2="1" y2="1">
      <stop stop-color="#FDB813" offset="0"/>
      <stop stop-color="#FFD700" offset="1"/>
    </linearGradient>
    <path id="numPath" d="M20,10 Q25,15 30,10 Q35,5 30,0 L30,0 Q25,-5 20,-10 L20,-10 Q15,-5 10,0 Q5,5 10,10 L10,10 Q15,15 20,10 Z"/>
  </defs>
  <rect width="300" height="300" fill="url(#linearGradient)" fill-opacity="0.8"/>
  
  <!-- Clock Face -->
  <circle cx="150" cy="150" r="120" fill="none" stroke="#333" stroke-width="2"/>
  <circle cx="150" cy="150" r="100" fill="none" stroke="#666" stroke-width="1"/>
  
  <!-- Melting Numbers -->
  <g transform="translate(150,150)">
    <use xlink:href="#numPath" transform="rotate(30)" fill="url(#honey)" filter="url(#melt)"/>
    <use xlink:href="#numPath" transform="rotate(60)" fill="url(#honey)" filter="url(#melt)"/>
    <use xlink:href="#numPath" transform="rotate(90)" fill="url(#honey)" filter="url(#melt)"/>
    <use xlink:href="#numPath" transform="rotate(120)" fill="url(#honey)" filter="url(#melt)"/>
    <use xlink:href="#numPath" transform="rotate(150)" fill="url(#honey)" filter="url(#melt)"/>
    <use xlink:href="#numPath" transform="rotate(180)" fill="url(#honey)" filter="url(#melt)"/>
    <use xlink:href="#numPath" transform="rotate(210)" fill="url(#honey)" filter="url(#melt)"/>
    <use xlink:href="#numPath" transform="rotate(240)" fill="url(#honey)" filter="url(#melt)"/>
    <use xlink:href="#numPath" transform="rotate(270)" fill="url(#honey)" filter="url(#melt)"/>
    <use xlink:href="#numPath" transform="rotate(300)" fill="url(#honey)" filter="url(#melt)"/>
    <use xlink:href="#numPath" transform="rotate(330)" fill="url(#honey)" filter="url(#melt)"/>
    <use xlink:href="#numPath" transform="rotate(360)" fill="url(#honey)" filter="url(#melt)"/>
  </g>

  <!-- Drips -->
  <path d="M150,270 C160,260 170,250 175,240 C180,230 185,220 190,210" fill="none" stroke="url(#honey)" stroke-width="4"/>
  <path d="M150,270 C140,260 130,250 125,240 C120,230 115,220 110,210" fill="none" stroke="url(#honey)" stroke-width="4"/>

  <!-- Clock Hands -->
  <path d="M150,150 L150,50" fill="none" stroke="url(#honey)" stroke-width="8"/>
  <path d="M150,150 L250,150" fill="none" stroke="url(#honey)" stroke-width="6"/>
  <path d="M150,150 L170,160 L130,160" fill="none" stroke="url(#honey)" stroke-width="4"/>
</svg>
SVG by DeepSeek-R1-Distill-Qwen-32B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <radialGradient id="clockGradient" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#ff6b6b"/>
      <stop offset="100%" stop-color="#4ecdc4"/>
    </radialGradient>
    <filter id="dropShadow">
      <feDropShadow dx="0" dy="2" stdDeviation="2"/>
    </filter>
  </defs>
  <circle cx="150" cy="150" r="130" fill="url(#clockGradient)" stroke="#ffffff" stroke-width="4"/>
  
  <!-- Melting numbers -->
  <g transform="rotate(-30 150 150)">
    <path d="M140 150 Q145 155 150 160" stroke="#ffd700" stroke-width="4" fill="none" filter="url(#dropShadow)"/>
    <path d="M160 150 Q165 155 170 160" stroke="#ffa500" stroke-width="4" fill="none" filter="url(#dropShadow)"/>
    <path d="M180 150 Q185 155 190 160" stroke="#ff8c00" stroke-width="4" fill="none" filter="url(#dropShadow)"/>
  </g>
  
  <!-- Number 12 -->
  <g transform="rotate(-90 150 150)">
    <path d="M140 150 Q145 155 150 160" stroke="#ff6b6b" stroke-width="4" fill="none" filter="url(#dropShadow)"/>
    <path d="M160 150 Q165 155 170 160" stroke="#ff6b6b" stroke-width="4" fill="none" filter="url(#dropShadow)"/>
  </g>
  
  <!-- Number 3 -->
  <g transform="rotate(0 150 150)">
    <path d="M140 150 Q145 155 150 160" stroke="#4ecdc4" stroke-width="4" fill="none" filter="url(#dropShadow)"/>
    <path d="M160 150 Q165 155 170 160" stroke="#4ecdc4" stroke-width="4" fill="none" filter="url(#dropShadow)"/>
  </g>
  
  <!-- Number 6 -->
  <g transform="rotate(90 150 150)">
    <path d="M140 150 Q145 155 150 160" stroke="#2980b9" stroke-width="4" fill="none" filter="url(#dropShadow)"/>
    <path d="M160 150 Q165 155 170 160" stroke="#2980b9" stroke-width="4" fill="none" filter="url(#dropShadow)"/>
  </g>
  
  <!-- Number 9 -->
  <g transform="rotate(180 150 150)">
    <path d="M140 150 Q145 155 150 160" stroke="#9b59b6" stroke-width="4" fill="none" filter="url(#dropShadow)"/>
    <path d="M160 150 Q165 155 170 160" stroke="#9b59b6" stroke-width="4" fill="none" filter="url(#dropShadow)"/>
  </g>
  
  <!-- Clock hands -->
  <rect x="148" y="145" width="4" height="50" rx="2" fill="#ffffff" opacity="0.8"/>
  <rect x="149" y="144" width="2" height="60" rx="1" fill="#888" opacity="0.6"/>
  <rect x="149.5" y="143" width="1" height="70" rx="0.5" fill="#ff0000" opacity="0.8"/>
  
  <!-- Animated elements -->
  <circle cx="150" cy="150" r="20" fill="#ffff00" opacity="0.3">
    <animate attributeName="r" from="20" to="25" dur="2s" repeatCount="indefinite" />
  </circle>
  <path d="M130 150 Q150 130 170 150" stroke="#ff4500" stroke-width="2" fill="none">
    <animateMotion dur="4s" repeatCount="indefinite">
      <mpath href="#motionPath"/>
    </animateMotion>
  </path>
</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 submission creatively interprets the prompt with a vibrant and surreal design, featuring melting elements that resonate well with the idea of dripping numbers.

    The use of colors and composition is visually appealing and captures the concept of a melting clock effectively.

    Player 1's image, while technically sound, does not visually communicate the idea as clearly or creatively.

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
9
Player 2
17
Rectangles

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

Player 1
1
Player 2
3
Circles

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

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

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

Player 1
1
Player 2
5

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
7
Player 2
13

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
4
Player 2
12

Interactivity Metrics

Animations

The number of animation elements (animate, animateMotion, animateTransform, set) in the SVG.

Player 1
Player 2
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
24
Player 2
24
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
3
Player 2
2
Use Elements

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

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