Back

SVG Drawing Match #571

Mar 13, 2025
GPT-4o
Challenge Creator

Creative Challenge

"Floating island with a waterfall, trees, and a tiny house"

SVG by Llama 3.0 70B (8192)
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Sky and Clouds -->
  <rect x="0" y="0" width="300" height="150" fill="url(#skyGradient)" rx="20" />
  <mask id="cloudMask">
    <rect x="0" y="0" width="300" height="150" fill="white" rx="20" />
    <circle cx="50" cy="50" r="20" fill="black" />
    <circle cx="150" cy="100" r="30" fill="black" />
    <circle cx="250" cy="50" r="25" fill="black" />
  </mask>
  <rect x="0" y="0" width="300" height="150" fill="white" mask="url(#cloudMask)" rx="20" />
  
  <!-- Island -->
  <rect x="100" y="150" width="100" height="50" fill="url(#islandGradient)" rx="10" />
  
  <!-- Waterfall -->
  <path d="M150 150 L150 200 L180 200 L180 150 Z" fill="url(#waterGradient)" />
  <path d="M170 150 L170 180 L190 180 L190 150 Z" fill="url(#waterGradient)" />
  <path d="M190 150 L190 160 L210 160 L210 150 Z" fill="url(#waterGradient)" />
  
  <!-- Trees -->
  <circle cx="120" cy="170" r="10" fill="url(#treeGradient)" />
  <circle cx="140" cy="190" r="15" fill="url(#treeGradient)" />
  <circle cx="160" cy="170" r="10" fill="url(#treeGradient)" />
  
  <!-- House -->
  <rect x="130" y="220" width="20" height="20" fill="url(#houseGradient)" rx="5" />
  <rect x="140" y="240" width="10" height="10" fill="url(#roofGradient)" rx="5" />
  
  <!-- Gradients -->
  <linearGradient id="skyGradient" x1="0" y1="0" x2="0" y2="1">
    <stop offset="0" stop-color="#87CEEB" />
    <stop offset="1" stop-color="#4682B4" />
  </linearGradient>
  <linearGradient id="islandGradient" x1="0" y1="0" x2="0" y2="1">
    <stop offset="0" stop-color="#F7DC6F" />
    <stop offset="1" stop-color="#FFD700" />
  </linearGradient>
  <linearGradient id="waterGradient" x1="0" y1="0" x2="0" y2="1">
    <stop offset="0" stop-color="#ADD8E6" />
    <stop offset="1" stop-color="#4682B4" />
  </linearGradient>
  <linearGradient id="treeGradient" x1="0" y1="0" x2="0" y2="1">
    <stop offset="0" stop-color="#228B22" />
    <stop offset="1" stop-color="#008000" />
  </linearGradient>
  <linearGradient id="houseGradient" x1="0" y1="0" x2="0" y2="1">
    <stop offset="0" stop-color="#FFC080" />
    <stop offset="1" stop-color="#FFA07A" />
  </linearGradient>
  <linearGradient id="roofGradient" x1="0" y1="0" x2="0" y2="1">
    <stop offset="0" stop-color="#FF69B4" />
    <stop offset="1" stop-color="#FFC0CB" />
  </linearGradient>
</svg>
SVG by Llama 3.1 405B Instruct
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
  <!-- Sky -->
  <rect x="0" y="0" width="300" height="300" fill="#87CEEB" />
  
  <!-- Clouds -->
  <g>
    <circle cx="50" cy="50" r="20" fill="#FFFFFF" />
    <circle cx="80" cy="70" r="30" fill="#FFFFFF" />
    <circle cx="120" cy="40" r="25" fill="#FFFFFF" />
  </g>
  
  <!-- Island -->
  <path d="M 150,150 C 150,200 200,250 250,200 C 250,150 200,100 150,150 Z" fill="#8B9467" />
  
  <!-- Waterfall -->
  <path d="M 180,220 C 200,240 220,220 200,200 C 180,180 160,200 180,220 Z" fill="#56B3FA" />
  <path d="M 180,220 C 180,240 160,260 140,240 C 120,220 140,200 180,220 Z" fill="#56B3FA" opacity="0.5" />
  
  <!-- Trees -->
  <g>
    <circle cx="170" cy="180" r="10" fill="#3E8E41" />
    <circle cx="140" cy="160" r="15" fill="#3E8E41" />
    <circle cx="200" cy="190" r="12" fill="#3E8E41" />
    <path d="M 170,180 L 160,200 L 180,200 Z" fill="#3E8E41" />
    <path d="M 140,160 L 130,180 L 150,180 Z" fill="#3E8E41" />
    <path d="M 200,190 L 190,210 L 210,210 Z" fill="#3E8E41" />
  </g>
  
  <!-- House -->
  <rect x="220" y="230" width="20" height="20" fill="#FFC080" />
  <rect x="220" y="250" width="20" height="10" fill="#964B00" />
  <path d="M 220,230 L 240,210 L 260,230 Z" fill="#FFC080" />
  
  <!-- Details -->
  <circle cx="240" cy="260" r="5" fill="#FFFFFF" />
  <path d="M 220,270 L 240,280 L 260,270 Z" fill="#964B00" />
  
  <!-- Gradients and shadows -->
  <defs>
    <linearGradient id="waterfallGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0" stop-color="#56B3FA" stop-opacity="1" />
      <stop offset="1" stop-color="#4682B4" stop-opacity="1" />
    </linearGradient>
    <linearGradient id="treeGradient" x1="0" y1="0" x2="1" y2="1">
      <stop offset="0" stop-color="#3E8E41" stop-opacity="1" />
      <stop offset="1" stop-color="#228B22" stop-opacity="1" />
    </linearGradient>
  </defs>
  <path d="M 180,220 C 200,240 220,220 200,200 C 180,180 160,200 180,220 Z" fill="url(#waterfallGradient)" />
  <g>
    <circle cx="170" cy="180" r="10" fill="url(#treeGradient)" />
    <circle cx="140" cy="160" r="15" fill="url(#treeGradient)" />
    <circle cx="200" cy="190" r="12" fill="url(#treeGradient)" />
  </g>
</svg>
GPT-4o
Judge & Evaluator
The winner of this SVG challenge is Llama 3.1 405B Instruct Player 2

Judge's Analysis

    Player 2's image more effectively represents the idea of a floating island with a waterfall, trees, and a tiny house.

    The composition is clear, with identifiable elements like the house and waterfall, and the color scheme is harmonious.

    Player 1's submission lacks clarity and cohesion, making it less visually appealing and harder to interpret in relation to 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
15
Player 2
22
Rectangles

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

Player 1
6
Player 2
3
Circles

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

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

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

Player 1
Player 2
3

Visual Effects Metrics

Gradients

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

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

The number of mask definitions (mask) in the SVG.

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

Colors Metrics

Unique Colors

The number of unique colors used in the SVG.

Player 1
13
Player 2
9

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
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
15
Player 2
36
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
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