Back

SVG Drawing Match #2678

May 09, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A robot chef making a pancake shaped like a kitten."

SVG by Llama 3.1 405B Instruct
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Background -->
  <rect x="0" y="0" width="300" height="300" fill="#F7D2C4" />
  
  <!-- Robot Chef -->
  <g transform="translate(120, 100)">
    <circle cx="0" cy="0" r="40" fill="#E6E6E6" />
    <circle cx="0" cy="0" r="35" fill="#CCCCCC" />
    <path d="M -30 -20 L -20 20 L 30 -20" stroke="#666" stroke-width="2" />
    <path d="M -15 -15 L 15 -15" fill="#999" />
    <circle cx="0" cy="50" r="20" fill="#FF69B4" />
    <path d="M -10 50 L 10 70" stroke="#666" stroke-width="2" />
    <text x="-15" y="75" font-size="14" font-weight="bold" fill="#666">Chef-Bot</text>
  </g>
  
  <!-- Pancake -->
  <g transform="translate(50, 180)">
    <ellipse cx="0" cy="0" rx="30" ry="20" fill="#F2C464" />
    <ellipse cx="0" cy="0" rx="25" ry="15" fill="#FFD700" />
    <!-- Kitten Shape -->
    <path d="M -15 -10 L 0 -20 L 15 -10" fill="#FFF" />
    <circle cx="-10" cy="-5" r="5" fill="#FFF" />
    <circle cx="10" cy="-5" r="5" fill="#FFF" />
    <path d="M 0 5 L 0 15" stroke="#666" stroke-width="2" />
  </g>
  
  <!-- Gradients and Shadows -->
  <defs>
    <linearGradient id="pancakeGrad" x1="0" y1="0" x2="0" y2="1">
      <stop offset="0%" stop-color="#F2C464" />
      <stop offset="100%" stop-color="#FFD700" />
    </linearGradient>
    <filter id="dropShadow">
      <feGaussianBlur in="SourceAlpha" stdDeviation="2" />
      <feOffset dx="2" dy="2" />
      <feMerge>
        <feMergeNode in="out2" />
        <feMergeNode in="SourceGraphic" />
      </feMerge>
    </filter>
  </defs>
  
  <!-- Animation -->
  <animateTransform attributeName="transform" from="rotate(0 150 150)" to="rotate(360 150 150)" dur="5s" repeatCount="indefinite" />
</svg>
SVG by DeepSeek R1
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <defs>
    <linearGradient id="metal" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0%" stop-color="#a3a3a3"/>
      <stop offset="100%" stop-color="#5a5a5a"/>
    </linearGradient>
    <radialGradient id="pancake" cx="50%" cy="50%" r="50%">
      <stop offset="0%" stop-color="#f4d03f"/>
      <stop offset="100%" stop-color="#f5b041"/>
    </radialGradient>
    <filter id="shadow">
      <feDropShadow dx="2" dy="2" stdDeviation="2" flood-opacity="0.3"/>
    </filter>
  </defs>

  <rect width="300" height="300" fill="#ffe0b3" />

  <!-- Robot Body -->
  <g transform="translate(80,100)">
    <rect x="0" y="0" width="140" height="180" rx="15" fill="url(#metal)" filter="url(#shadow)"/>
    <circle cx="70" cy="30" r="20" fill="#ff4444"/>
    <rect x="50" y="10" width="40" height="40" rx="5" fill="#fff"/>
    
    <!-- Arms -->
    <g transform="translate(-40,60)">
      <path d="M0 0 Q -30 20 -40 50 L -20 55 Q -10 25 0 0" fill="#666"/>
      <path d="M140 0 Q 170 20 180 50 L 160 55 Q 150 25 140 0" fill="#666"/>
    </g>
    
    <!-- Chef Hat -->
    <path d="M50 0 L70 -30 90 0" fill="white" stroke="#444"/>
  </g>

  <!-- Pancake Kitten -->
  <g transform="translate(200,180)">
    <path d="M0 0 Q -30 -50 0 -100 Q 30 -50 0 0" fill="url(#pancake)"/>
    <circle cx="-15" cy="-80" r="5" fill="#333"/>
    <circle cx="15" cy="-80" r="5" fill="#333"/>
    <path d="M-25 -70 Q -40 -60 -50 -50" fill="none" stroke="#333" stroke-width="2"/>
    <path d="M25 -70 Q 40 -60 50 -50" fill="none" stroke="#333" stroke-width="2"/>
    <path d="M-10 -50 Q 0 -60 10 -50" fill="none" stroke="#e74c3c" stroke-width="3"/>
  </g>

  <!-- Robotic Hand with Spatula -->
  <g transform="translate(160,150)">
    <rect x="0" y="0" width="20" height="80" rx="5" fill="#666"/>
    <path d="M-10 80 L30 80 20 120 0 120" fill="#999"/>
    <path d="M0 120 L40 120 50 160 10 160" fill="#b3b3b3"/>
  </g>

  <!-- Decorative Sparks -->
  <g fill="#ffd700" opacity="0.8">
    <circle cx="220" cy="100" r="3"/>
    <circle cx="240" cy="80" r="2"/>
    <circle cx="200" cy="120" r="4"/>
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is DeepSeek R1 Player 2

Judge's Analysis

    Player 2's submission demonstrates more creativity and better adherence to the prompt, with a clear depiction of a robot and a pancake resembling a kitten.

    The composition is more detailed and visually appealing, showcasing a stronger effort in technical execution.

    Player 1's submission is simpler and less representative of the idea, lacking clarity in the depiction of both the robot and the pancake.

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

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

Player 1
1
Player 2
4
Circles

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

Player 1
5
Player 2
6
Ellipses

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

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

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

Player 1
2
Player 2
5

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

The number of elements with stroke attributes in the SVG.

Player 1
3
Player 2
4

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
9
Player 2
15

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
4

Complexity Metrics

Path Commands

The total number of path commands in all path elements (M, L, C, Q, etc.) in the SVG.

Player 1
12
Player 2
23
Max Group Nesting

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

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