Back

SVG Drawing Match #1317

Mar 14, 2025
GPT-4o
Challenge Creator

Creative Challenge

"A violin-playing octopus under a starry sky"

SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Starry Sky -->
  <rect x="0" y="0" width="300" height="300" fill="url(#starry-sky)" />
  <linearGradient id="starry-sky" x1="0" y1="0" x2="0" y2="1">
    <stop offset="0" stop-color="#212121" />
    <stop offset="1" stop-color="#343434" />
  </linearGradient>
  <g id="stars">
    <circle cx="50" cy="50" r="2" fill="#fff" />
    <circle cx="100" cy="70" r="1" fill="#fff" />
    <circle cx="150" cy="90" r="3" fill="#fff" />
    <circle cx="200" cy="110" r="2" fill="#fff" />
    <circle cx="250" cy="130" r="1" fill="#fff" />
    <!-- Many more stars... -->
  </g>

  <!-- Octopus -->
  <g id="octopus" transform="translate(150 150)">
    <circle cx="0" cy="0" r="30" fill="#ff69b4" />
    <circle cx="0" cy="-30" r="20" fill="#ffa07a" />
    <circle cx="0" cy="-50" r="10" fill="#ffd700" />
    <path d="M 0 -70 C 10 -80, 20 -90, 30 -100" stroke="#ff69b4" stroke-width="5" fill="none" />
    <path d="M 0 -70 C -10 -80, -20 -90, -30 -100" stroke="#ff69b4" stroke-width="5" fill="none" />
    <!-- Many more tentacles... -->
  </g>

  <!-- Violin -->
  <g id="violin" transform="translate(150 120)">
    <rect x="-20" y="-10" width="40" height="20" rx="5" fill="#663300" />
    <rect x="-15" y="-5" width="30" height="10" rx="3" fill="#996600" />
    <path d="M -20 -15 L 20 -15" stroke="#663300" stroke-width="5" fill="none" />
    <circle cx="0" cy="-20" r="5" fill="#996600" />
  </g>

  <!-- Octopus Arms Holding Violin -->
  <path d="M 0 -50 C 10 -60, 20 -70, 30 -80" stroke="#ff69b4" stroke-width="5" fill="none" transform="translate(150 120)" />
  <path d="M 0 -50 C -10 -60, -20 -70, -30 -80" stroke="#ff69b4" stroke-width="5" fill="none" transform="translate(150 120)" />

  <!-- Shine Effect -->
  <circle cx="150" cy="120" r="10" fill="#fff" opacity="0.5" />
  <circle cx="150" cy="120" r="5" fill="#fff" opacity="0.8" />
</svg>
SVG by DeepSeek-R1-Distill-Llama-70B
<svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg">
  <!-- Starry Night Sky Background -->
  <defs>
    <radialGradient id="nightSky" cx="150" cy="150" r="150" fx="150" fy="150">
      <stop offset="0" stop-color="#0b0b2d" />
      <stop offset="1" stop-color="#000000" />
    </radialGradient>
    <path id="star" d="M2.92 0l-.586 1.828-1.919 1.919 1.919 1.919 1.919-1.919 1.828 1.828 2.92 0z" />
    <filter id="glow">
      <feGaussianBlur stdDeviation="4" result="glow" />
      <feMerge>
        <feMergeNode in="glow" />
        <feMergeNode in="SourceGraphic" />
      </feMerge>
    </filter>
  </defs>

  <rect width="300" height="300" fill="url(#nightSky)" />
  
  <!-- Stars -->
  <g id="stars">
    <use href="#star" x="50" y="50" fill="#ffffff" opacity="0.6" />
    <use href="#star" x="100" y="80" fill="#ffffff" opacity="0.8" />
    <use href="#star" x="200" y="30" fill="#ffffff" opacity="0.7" />
    <use href="#star" x="250" y="100" fill="#ffffff" opacity="0.5" />
    <use href="#star" x="150" y="150" fill="#ffffff" opacity="0.9" />
    <!-- More stars can be added similarly -->
  </g>

  <!-- Octopus Body -->
  <path d="M150 220c-30 0-60-20-60-50s30-50 60-50 60 20 60 50-30 50-60 50m-0-90c15 0 30 10 40 20l-40 50-40-50c10-10 20-15 40-15 20 0 30 10 40 15 10 5 15 10 15 15-40 70-60 100-60 120 0 15 10 30 30 30h120c20 0 30-15 30-30 0-20-10-50-30-70-15-5-25-5-40-5-20 0-30-10-40-15-10-5-15-10-15-15 40-70 60-100 60-120 0-15-10-30-30-30h-120c-20 0-30 15-30 30 0 40 20 60 30 60 10 0 20-5 30-10 5-5 10-10 15-15-40-70-60-100-60-120zm0 10c-10 0-20 5-25 10-5 5-5 15 0 20 5 5 15 10 25 10 10 0 20-5 25-10 5-5 5-15 0-20-5-5-15-10-25-10-10 0-20 5-25 10z"
  fill="url(#grad1)" filter="url(#glow)" />
  
  <!-- Octopus Tentacles -->
  <path d="M150 180q0 20-15 35-35 45-45 45-45 0-45-45-35-45-15-35 0-20 15-35 35-45 45-45 45 0 45 45 35 45 15 35 0 20-15 35-35 45-45 45 0 45 45 35 45 15 35 0 20z"
  fill="#ff9f43" opacity="0.8" />
  
  <!-- Violin -->
  <path d="M100 100c0-20 10-40 30-50 10-5 20-5 30 0 10 5 20 10 30 20 5 10 5 20 0 30-5 10-10 20-20 20-10 0-20-10-30-20-5-10-5-20-5-30 0-10 5-20 15-25 15-5 30-5 45 0 10-10 20-15 25-15 5 0 10 5 15 10 5 5 10 10 15 15 5 5 10 10 15 15 5 5 10 10 15 15 0 10-5 20-15 20-10 0-20-10-30-20-5-10-5-20-5-30 0-10 5-20 15-25 15-5 30-15 45-30 0-15-10-30-30-30-5 0-10 5-15 10-5 5-10 10-15 15-5 5-10 10-15 15-5 5-10 10-15 15-10 0-20-5-30-15-30-5 0-10-5-15-10-5-5-10-10-15-15-5-5-10-10-15-15-5-5-10-10-15-15-10-10-20-20-30-20-10 0-20 5-30 15-10 5-15 15-15 25l-5 5c-5 5-10 5-15 0-5-5-5-10 0-15l5-5c0 10 5 15 15 15 10 0 20-5 30-15 10-5 15-15 15-25v-5c0 10-5 20-15 20-10 0-20-5-30-15-10-5-15-15-15-25H100z"
  fill="#a52a2a" />
  
  <!-- Bow -->
  <path d="M200 100c0 15-10 30-30 30-20 0-30-15-30-30 0-15 10-25 25-25 15 0 25 10 25 25 0 15-10 30-25 30-15 0-30-15-30-30z"
  fill="url(#grad2)" />
  
  <!-- Music Notes -->
  <path d="M250 80c0 5-3 10-10 10-3 0-5-2-5-5 0-5 3-10 10-10 3 0 5 2 5 5 0 5-3 10-5 10-3 0-5-2-5-5z"
  fill="#ffffff" />
  <path d="M260 75c0 5-3 10-10 10-3 0-5-2-5-5 0-5 3-10 10-10 3 0 5 2 5 5 0 5-3 10-5 10-3 0-5-2-5-5z"
  fill="#ffffff" />
  
  <!-- Clef Symbol -->
  <path d="M270 70c-5 0-10-5-10-10 0-5 5-10 10-10 5 0 10 5 10 10 0 5-5 10-10 10z"
  fill="#ffffff" />
  
  <!-- Octopus Suckers -->
  <circle cx="140" cy="190" r="2" fill="#ffffff" />
  <circle cx="160" cy="190" r="2" fill="#ffffff" />
  <circle cx="180" cy="190" r="2" fill="#ffffff" />
  <circle cx="200" cy="190" r="2" fill="#ffffff" />
  <circle cx="220" cy="190" r="2" fill="#ffffff" />
  <circle cx="240" cy="190" r="2" fill="#ffffff" />
  
  <!-- Gradient Definitions -->
  <linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%">
    <stop offset="0%" style="stop-color:#ff6b6b;stop-opacity:1" />
    <stop offset="100%" style="stop-color:#ff9f43;stop-opacity:1" />
  </linearGradient>
  <linearGradient id="grad2" x1="0%" y1="0%" x2="100%" y2="100%">
    <stop offset="0%" style="stop-color:#ffd700;stop-opacity:1" />
    <stop offset="100%" style="stop-color:#ffa500;stop-opacity:1" />
  </linearGradient>
</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 is more abstract but creatively represents the theme with vibrant colors and dynamic shapes that suggest an octopus playing a violin.

    The composition is more visually engaging and aligns better with the whimsical nature of the prompt.

    Player 1's image lacks the clear depiction of an octopus and violin, making it less aligned with 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
19
Player 2
15
Rectangles

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

Player 1
3
Player 2
1
Circles

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

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

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

Player 1
3
Player 2
1

Visual Effects Metrics

Gradients

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

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

The number of elements with stroke attributes in the SVG.

Player 1
5
Player 2

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
8
Player 2
5

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
4
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
10
Player 2
43
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
Player 2
3
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