Back

SVG Drawing Match #892

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Skateboarding octopus in a cityscape at dawn"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Gradient Definitions -->
  <defs>
    <linearGradient id="skyGradient" x1="0%" y1="0%" x2="0%" y2="100%">
      <stop offset="0%" style="stop-color:#1a4377;stop-opacity:1" />
      <stop offset="50%" style="stop-color:#0d47a1;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#7b1fa2;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="octoGradient" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#e91e63;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#9c27b0;stop-opacity:1" />
    </linearGradient>
    <linearGradient id="streetLight" x1="0%" y1="0%" x2="100%" y2="100%">
      <stop offset="0%" style="stop-color:#fff;stop-opacity:1" />
      <stop offset="100%" style="stop-color:#ffab00;stop-opacity:1" />
    </linearGradient>
  </defs>

  <!-- Background -->
  <rect width="300" height="300" fill="url(#skyGradient)" />
  
  <!-- Cityscape -->
  <g transform="translate(0,180)">
    <!-- Buildings -->
    <rect x="20" y="0" width="60" height="160" fill="#2f2f2f" rx="10" />
    <rect x="100" y="0" width="80" height="200" fill="#3f3f3f" rx="10" />
    <rect x="200" y="0" width="80" height="180" fill="#4f4f4f" rx="10" />
    
    <!-- Windows -->
    <rect x="30" y="30" width="10" height="10" fill="#1a1a1a" rx="2" />
    <rect x="40" y="30" width="10" height="10" fill="#1a1a1a" rx="2" />
    <rect x="30" y="50" width="10" height="10" fill="#1a1a1a" rx="2" />
    <rect x="40" y="50" width="10" height="10" fill="#1a1a1a" rx="2" />
    
    <!-- Street -->
    <rect x="0" y="220" width="300" height="20" fill="#2f2f2f" />
    <path d="M0 220 Q150 220 300 220" fill="#4f4f4f" />
  </g>

  <!-- Skateboarding Octopus -->
  <g transform="translate(150,200)">
    <!-- Skateboard -->
    <rect x="-30" y="0" width="60" height="15" fill="url(#streetLight)" rx="5" />
    <circle cx="-25" cy="10" r="2" fill="#333" />
    <circle cx="-5" cy="10" r="2" fill="#333" />
    
    <!-- Octopus Body -->
    <ellipse cx="0" cy="0" rx="15" ry="10" fill="url(#octoGradient)" />
    
    <!-- Tentacles -->
    <path d="M0 10 Q-20 20 -40 10" fill="url(#octoGradient)" />
    <path d="M0 10 Q-10 30 -20 40" fill="url(#octoGradient)" />
    <path d="M0 10 Q10 30 20 40" fill="url(#octoGradient)" />
    <path d="M0 10 Q10 0 20 -10" fill="url(#octoGradient)" />
    <path d="M0 10 Q-10 0 -20 -10" fill="url(#octoGradient)" />
    
    <!-- Eyes -->
    <circle cx="-5" cy="-5" r="3" fill="#fff" />
    <circle cx="5" cy="-5" r="3" fill="#fff" />
    <circle cx="-5" cy="-5" r="1" fill="#000" />
    <circle cx="5" cy="-5" r="1" fill="#000" />
  </g>

  <!-- Sunrise Glow -->
  <path d="M0 0 Q150 50 300 0" fill="#ffab00" opacity="0.3" />
  
  <!-- Motion Trail -->
  <path d="M150 200 Q160 190 170 180" stroke="#e91e63" stroke-width="4" opacity="0.5" />
</svg>
SVG by GPT-3.5 turbo (0125)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">

  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#87CEEB" />

  <!-- Sun -->
  <circle cx="250" cy="50" r="40" fill="#FFD700" />

  <!-- Cityscape -->
  <rect x="0" y="150" width="300" height="150" fill="#696969" />
  <circle cx="30" cy="120" r="10" fill="#FFFFFF" />
  <circle cx="70" cy="120" r="12" fill="#FFFFFF" />
  <circle cx="110" cy="120" r="14" fill="#FFFFFF" />
  <circle cx="150" cy="120" r="12" fill="#FFFFFF" />
  <circle cx="190" cy="120" r="10" fill="#FFFFFF" />
  <circle cx="230" cy="120" r="11" fill="#FFFFFF" />

  <!-- Octopus -->
  <circle cx="150" cy="180" r="40" fill="#800080" />
  <ellipse cx="130" cy="160" rx="10" ry="5" fill="#FFA07A" />
  <ellipse cx="170" cy="160" rx="10" ry="5" fill="#FFA07A" />
  <ellipse cx="145" cy="180" rx="17" ry="7" fill="#FFA07A" />
  <ellipse cx="155" cy="180" rx="17" ry="7" fill="#FFA07A" />
  <ellipse cx="150" cy="200" rx="10" ry="5" fill="#FFA07A" />

  <!-- Skateboard -->
  <rect x="140" y="210" width="20" height="40" fill="#000000" />
  <circle cx="150" cy="250" r="8" fill="#FFA500" />
  <circle cx="160" cy="250" r="8" fill="#FFA500" />
  <circle cx="150" cy="260" r="5" fill="#000000" />
  <circle cx="155" cy="265" r="3" fill="#000000" />
  <circle cx="160" cy="260" r="5" fill="#000000" />

</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek-R1-Distill-Llama-70B Player 1

Judge's Analysis

    Player 1's submission creatively integrates the octopus into a cityscape setting, capturing the dawn atmosphere with a gradient sky.

    The octopus is clearly depicted skateboarding, adhering well to the prompt.

    Player 2's image, while visually clean, lacks clarity in depicting a cityscape or the skateboarding theme, making Player 1's image more aligned with 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
25
Player 2
21
Rectangles

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

Player 1
10
Player 2
3
Circles

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

Player 1
6
Player 2
13
Ellipses

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

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

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

Player 1
2
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
1
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
9
Player 2
8

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