Back

SVG Drawing Match #1346

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Elon Musk as a cybernetic centaur exploring Mars"

SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Mars Background -->
  <rect width="300" height="300" fill="url(#marsGradient)"/>
  <defs>
    <linearGradient id="marsGradient" x1="0" y1="0" x2="0" y2="300">
      <stop offset="0" style="stop-color:#FF4444;stop-opacity:1" />
      <stop offset="1" style="stop-color:#FF8888;stop-opacity:1" />
    </linearGradient>
  </defs>

  <!-- Cybernetic Centaur Body -->
  <g transform="translate(100,150)">
    <!-- Horse Body -->
    <path d="M-50-50 L50-50 L100-20 L120-40 L110-60 L90-60 L80-40 L40-20 L-10-20 L-40-40 L-50-50 Z"
          fill="url(#metalGradient)"
          stroke="#333"
          stroke-width="2"/>
    <!-- Upper Body -->
    <path d="M-30-80 L30-80 L40-60 L-10-60 L-30-80 Z"
          fill="url(#metalGradient)"
          stroke="#333"
          stroke-width="2"/>
    <!-- Head -->
    <circle cx="0" cy="-100" r="25" fill="#F0F0F0" stroke="#333" stroke-width="2">
      <animate attributeName="cy" from="-100" to="-90" dur="2s" repeatCount="indefinite" />
    </circle>
    <!-- Face Details -->
    <path d="M-10-95 L10-95 L5-100 L-5-100 Z" fill="#333"/>
    <circle cx="5" cy="-97" r="2" fill="#FFF"/>
    <circle cx="-5" cy="-97" r="2" fill="#FFF"/>
    <!-- Elon's Hair -->
    <path d="M-15-105 Q 0-110 15-105 Q 20-100 15-95 L15-90 L5-90 L-5-95 Q -20-100 -15-105 Z"
          fill="#444"
          stroke="#333"
          stroke-width="1"/>
  </g>

  <!-- Rocket in Background -->
  <path d="M150 50 L160 40 L170 50 L160 60 Z"
        fill="#888"
        stroke="#666"
        stroke-width="2"
        transform="scale(0.8)"/>
  <path d="M160 50 L160 30"
        stroke="#666"
        stroke-width="2"/>

  <!-- Ground Elements -->
  <rect x="50" y="200" width="200" height="50" fill="#660033"/>
  <path d="M50 250 Q100 260 150 250 Q200 260 250 250 Q250 240 240 230 L240 230"
        fill="#660033"/>
  <circle cx="100" cy="270" r="10" fill="#FF0000"/>
  <circle cx="200" cy="270" r="10" fill="#FF0000"/>

  <!-- Light Effects -->
  <defs>
    <filter id="glow">
      <feGaussianBlur stdDeviation="4" result="glow"/>
      <feMerge>
        <feMergeNode in="glow"/>
        <feMergeNode in="SourceGraphic"/>
      </feMerge>
    </filter>
  </defs>
  <circle cx="100" cy="150" r="40" fill="none" stroke="#00F" stroke-width="2" filter="url(#glow)"/>
</svg>
SVG by DeepSeek V3
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
  <defs>
    <linearGradient id="cyberGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#00B4DB" />
      <stop offset="100%" stop-color="#0083B0" />
    </linearGradient>
    <linearGradient id="marsGradient" x1="0" y1="0" x2="1" y2="0">
      <stop offset="0%" stop-color="#F45C43" />
      <stop offset="100%" stop-color="#EB3349" />
    </linearGradient>
    <pattern id="circuitPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse">
      <circle cx="5" cy="5" r="1" fill="#00B4DB" />
      <line x1="0" y1="5" x2="10" y2="5" stroke="#00B4DB" stroke-width="1" />
      <line x1="5" y1="0" x2="5" y2="10" stroke="#00B4DB" stroke-width="1" />
    </pattern>
  </defs>
  <rect width="300" height="300" fill="url(#marsGradient)" />
  <ellipse cx="150" cy="250" rx="120" ry="50" fill="#7A5230" />
  <path d="M150,100 L130,200 L170,200 Z" fill="#4B4B4B" />
  <circle cx="150" cy="80" r="40" fill="#E0E0E0" />
  <circle cx="140" cy="75" r="5" fill="#000000" />
  <circle cx="160" cy="75" r="5" fill="#000000" />
  <path d="M140,90 Q150,95 160,90" stroke="#000000" stroke-width="2" fill="none" />
  <rect x="120" y="200" width="60" height="50" fill="url(#cyberGradient)" />
  <rect x="130" y="210" width="40" height="30" fill="url(#circuitPattern)" />
  <path d="M130,250 L130,300 L170,300 L170,250" fill="#6B6B6B" />
  <circle cx="150" cy="280" r="10" fill="#00B4DB" />
  <path d="M150,280 L150,290" stroke="#00B4DB" stroke-width="2" />
  <path d="M150,290 L140,300" stroke="#00B4DB" stroke-width="2" />
  <path d="M150,290 L160,300" stroke="#00B4DB" stroke-width="2" />
  <text x="150" y="50" font-family="Arial" font-size="20" fill="#FFFFFF" text-anchor="middle">Elon Centaur</text>
  <text x="150" y="70" font-family="Arial" font-size="15" fill="#FFFFFF" text-anchor="middle">Exploring Mars</text>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek V3 Player 2

Judge's Analysis

    Player 2's submission more clearly depicts the concept of a 'cybernetic centaur' with a recognizable humanoid form combined with mechanical elements.

    The inclusion of text adds context and enhances adherence to the prompt.

    The composition is more visually coherent and appealing, making it a stronger representation overall.

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
17
Rectangles

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

Player 1
2
Player 2
3
Circles

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

Player 1
6
Player 2
5
Ellipses

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

Player 1
Player 2
1
Lines

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

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

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

Player 1
1
Player 2

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
7
Player 2
6

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
9
Player 2
10

Interactivity Metrics

Animations

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

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