| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8" /> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| <title>Palmer-007 vs Falcon-Instruct</title> |
| <style> |
| :root{ |
| --bg:#050505; |
| --panel:#0d0d0d; |
| --panel2:#121212; |
| --line:#262626; |
| --text:#f7f7f7; |
| --muted:#9b9b9b; |
| } |
| *{box-sizing:border-box} |
| html{scroll-behavior:smooth} |
| body{ |
| margin:0; |
| color:var(--text); |
| background: |
| radial-gradient(circle at 15% 0%,#191919 0,transparent 28rem), |
| radial-gradient(circle at 85% 12%,#111 0,transparent 24rem), |
| var(--bg); |
| font-family:Inter,ui-sans-serif,system-ui,-apple-system,Segoe UI,sans-serif; |
| } |
| body:before{ |
| content:""; |
| position:fixed; |
| inset:0; |
| pointer-events:none; |
| opacity:.12; |
| background-image: |
| linear-gradient(#fff1 1px,transparent 1px), |
| linear-gradient(90deg,#fff1 1px,transparent 1px); |
| background-size:40px 40px; |
| mask-image:linear-gradient(#000,transparent 88%); |
| } |
| a{color:inherit;text-decoration:none} |
| button{font:inherit} |
| .wrap{width:min(1180px,calc(100% - 30px));margin:auto} |
| nav{ |
| position:sticky;top:0;z-index:20; |
| background:#050505d8; |
| backdrop-filter:blur(16px); |
| border-bottom:1px solid #ffffff14; |
| } |
| .nav{ |
| height:64px; |
| display:flex; |
| align-items:center; |
| justify-content:space-between; |
| } |
| .brand{ |
| display:flex; |
| align-items:center; |
| gap:10px; |
| font-weight:900; |
| letter-spacing:-.03em; |
| } |
| .dot{ |
| width:11px;height:11px;border-radius:50%; |
| background:#fff;box-shadow:0 0 20px #fff; |
| } |
| .links{display:flex;gap:8px} |
| .links a{ |
| font-size:13px; |
| color:var(--muted); |
| padding:8px 11px; |
| border-radius:999px; |
| } |
| .links a:hover{background:#fff;color:#000} |
| .hero{ |
| min-height:calc(100vh - 64px); |
| display:grid; |
| align-items:center; |
| padding:70px 0; |
| } |
| .hero-grid{ |
| display:grid; |
| grid-template-columns:1.15fr .85fr; |
| gap:44px; |
| align-items:center; |
| } |
| .kicker{ |
| display:inline-flex; |
| gap:8px; |
| align-items:center; |
| padding:8px 12px; |
| border:1px solid var(--line); |
| border-radius:999px; |
| color:#d0d0d0; |
| font-size:12px; |
| text-transform:uppercase; |
| letter-spacing:.12em; |
| font-weight:800; |
| } |
| h1{ |
| margin:24px 0 20px; |
| font-size:clamp(58px,9vw,124px); |
| line-height:.84; |
| letter-spacing:-.08em; |
| } |
| .outline{ |
| color:transparent; |
| -webkit-text-stroke:1px #ffffff55; |
| } |
| .lead{ |
| max-width:720px; |
| color:#bdbdbd; |
| font-size:clamp(17px,1.5vw,21px); |
| line-height:1.6; |
| } |
| .actions{ |
| display:flex; |
| flex-wrap:wrap; |
| gap:12px; |
| margin-top:28px; |
| } |
| .btn{ |
| padding:13px 17px; |
| border:1px solid var(--line); |
| border-radius:999px; |
| font-weight:800; |
| font-size:14px; |
| transition:.2s; |
| } |
| .btn.primary{background:#fff;color:#000;border-color:#fff} |
| .btn:hover{transform:translateY(-2px)} |
| .visual{ |
| min-height:450px; |
| position:relative; |
| display:grid; |
| place-items:center; |
| } |
| .ring{ |
| position:absolute; |
| width:370px; |
| aspect-ratio:1; |
| border:1px solid #ffffff25; |
| border-radius:50%; |
| animation:spin 18s linear infinite; |
| } |
| .ring:before,.ring:after{ |
| content:""; |
| position:absolute; |
| width:7px;height:7px;border-radius:50%; |
| background:white;box-shadow:0 0 16px white; |
| } |
| .ring:before{left:8%;top:22%} |
| .ring:after{right:9%;bottom:22%} |
| .core{ |
| width:290px; |
| aspect-ratio:1; |
| border-radius:50%; |
| border:1px solid #ffffff2b; |
| background:radial-gradient(circle,#ffffff14,transparent 67%); |
| display:grid; |
| place-items:center; |
| box-shadow:0 34px 80px #000; |
| } |
| .vs{font-size:96px;font-weight:950;letter-spacing:-.1em} |
| .model-badge{ |
| position:absolute; |
| min-width:172px; |
| padding:13px 15px; |
| border:1px solid #ffffff22; |
| border-radius:15px; |
| background:#080808ec; |
| box-shadow:0 16px 42px #000; |
| } |
| .model-badge b{display:block;font-size:14px} |
| .model-badge span{display:block;color:var(--muted);font-size:11px;margin-top:4px} |
| .model-badge.p{left:0;top:27%;transform:rotate(-5deg)} |
| .model-badge.f{right:0;bottom:25%;transform:rotate(5deg)} |
| @keyframes spin{to{transform:rotate(360deg)}} |
| section{padding:90px 0} |
| .section-head{ |
| display:grid; |
| grid-template-columns:1fr 400px; |
| gap:36px; |
| align-items:end; |
| margin-bottom:32px; |
| } |
| .section-head small{ |
| display:block; |
| color:#d1d1d1; |
| font-size:11px; |
| font-weight:850; |
| text-transform:uppercase; |
| letter-spacing:.13em; |
| margin-bottom:10px; |
| } |
| h2{ |
| margin:0; |
| font-size:clamp(40px,6vw,74px); |
| line-height:.96; |
| letter-spacing:-.06em; |
| } |
| .section-head p{ |
| margin:0; |
| color:var(--muted); |
| line-height:1.65; |
| } |
| .summary{ |
| display:grid; |
| grid-template-columns:repeat(4,1fr); |
| border:1px solid var(--line); |
| border-radius:24px; |
| overflow:hidden; |
| background:#ffffff05; |
| } |
| .summary-card{ |
| min-height:185px; |
| padding:23px; |
| border-right:1px solid var(--line); |
| } |
| .summary-card:last-child{border-right:0} |
| .summary-card .label{ |
| color:var(--muted); |
| font-size:11px; |
| text-transform:uppercase; |
| letter-spacing:.1em; |
| font-weight:850; |
| } |
| .summary-card .winner{ |
| margin:18px 0 8px; |
| font-size:50px; |
| font-weight:950; |
| } |
| .summary-card p{ |
| margin:0; |
| color:#b8b8b8; |
| font-size:13px; |
| line-height:1.55; |
| } |
| .tabs{ |
| display:flex; |
| flex-wrap:wrap; |
| gap:8px; |
| margin-bottom:20px; |
| } |
| .tab{ |
| cursor:pointer; |
| border:1px solid var(--line); |
| background:#ffffff04; |
| color:var(--muted); |
| border-radius:999px; |
| padding:9px 12px; |
| font-size:12px; |
| font-weight:800; |
| } |
| .tab.active,.tab:hover{background:#fff;color:#000;border-color:#fff} |
| .test-grid{display:grid;gap:16px} |
| .test{ |
| border:1px solid var(--line); |
| border-radius:22px; |
| overflow:hidden; |
| background:#ffffff04; |
| } |
| .test-head{ |
| display:grid; |
| grid-template-columns:90px 1fr auto; |
| gap:16px; |
| align-items:center; |
| padding:18px 20px; |
| border-bottom:1px solid var(--line); |
| } |
| .test-num{ |
| color:var(--muted); |
| font-size:11px; |
| font-weight:850; |
| text-transform:uppercase; |
| letter-spacing:.1em; |
| } |
| .prompt{ |
| font-size:19px; |
| font-weight:900; |
| letter-spacing:-.025em; |
| } |
| .verdict{ |
| border:1px solid var(--line); |
| border-radius:999px; |
| padding:7px 10px; |
| font-size:10px; |
| font-weight:900; |
| text-transform:uppercase; |
| letter-spacing:.08em; |
| } |
| .responses{ |
| display:grid; |
| grid-template-columns:1fr 1fr; |
| } |
| .response{ |
| min-width:0; |
| padding:21px; |
| border-right:1px solid var(--line); |
| } |
| .response:last-child{border-right:0} |
| .response-head{ |
| display:flex; |
| justify-content:space-between; |
| gap:12px; |
| margin-bottom:13px; |
| font-size:12px; |
| } |
| .model{font-weight:900} |
| .grade{color:var(--muted)} |
| .output{ |
| margin:0; |
| color:#c8c8c8; |
| font:13px/1.62 ui-monospace,SFMono-Regular,Menlo,Consolas,monospace; |
| white-space:pre-wrap; |
| overflow-wrap:anywhere; |
| max-height:230px; |
| overflow:auto; |
| } |
| .notes{ |
| display:grid; |
| grid-template-columns:repeat(3,1fr); |
| border-top:1px solid var(--line); |
| background:#ffffff03; |
| } |
| .note{ |
| padding:15px 18px; |
| border-right:1px solid var(--line); |
| } |
| .note:last-child{border-right:0} |
| .note b{ |
| display:block; |
| font-size:10px; |
| text-transform:uppercase; |
| letter-spacing:.1em; |
| margin-bottom:6px; |
| } |
| .note span{ |
| color:var(--muted); |
| font-size:12px; |
| line-height:1.5; |
| } |
| .profiles{ |
| display:grid; |
| grid-template-columns:1fr 1fr; |
| gap:18px; |
| } |
| .profile{ |
| position:relative; |
| overflow:hidden; |
| border:1px solid var(--line); |
| border-radius:24px; |
| padding:28px; |
| background:#ffffff04; |
| } |
| .profile:after{ |
| content:attr(data-n); |
| position:absolute; |
| top:-18px;right:14px; |
| color:#ffffff08; |
| font-size:114px; |
| font-weight:950; |
| } |
| .profile h3{ |
| margin:0 0 8px; |
| font-size:34px; |
| letter-spacing:-.05em; |
| } |
| .profile>p{ |
| margin:0 0 20px; |
| color:var(--muted); |
| line-height:1.55; |
| } |
| .point{ |
| display:grid; |
| grid-template-columns:28px 1fr; |
| gap:12px; |
| padding:13px 0; |
| border-top:1px solid #ffffff12; |
| } |
| .icon{ |
| width:26px;height:26px; |
| display:grid;place-items:center; |
| border:1px solid var(--line); |
| border-radius:8px; |
| font-size:11px;font-weight:900; |
| } |
| .point b{display:block;font-size:13px;margin-bottom:4px} |
| .point span{display:block;color:var(--muted);font-size:12px;line-height:1.5} |
| .number-demo{ |
| margin-top:16px; |
| padding:16px; |
| border:1px solid var(--line); |
| border-radius:15px; |
| background:#030303; |
| } |
| .number-demo small{ |
| display:block; |
| color:var(--muted); |
| text-transform:uppercase; |
| letter-spacing:.1em; |
| font-weight:850; |
| margin-bottom:12px; |
| } |
| .tokens{display:flex;flex-wrap:wrap;gap:8px} |
| .token{ |
| border:1px solid var(--line); |
| border-radius:8px; |
| padding:8px 10px; |
| font:800 12px ui-monospace,monospace; |
| } |
| .token.good{background:#fff;color:#000;border-color:#fff} |
| .final{ |
| border:1px solid var(--line); |
| border-radius:28px; |
| padding:clamp(28px,5vw,54px); |
| background: |
| radial-gradient(circle at 75% 20%,#ffffff0d,transparent 22rem), |
| #ffffff04; |
| } |
| .final-grid{ |
| display:grid; |
| grid-template-columns:1fr 1fr; |
| gap:16px; |
| margin-top:26px; |
| } |
| .final-card{ |
| border:1px solid var(--line); |
| border-radius:17px; |
| padding:20px; |
| background:#0005; |
| } |
| .final-card h3{margin:0 0 8px;font-size:17px} |
| .final-card p{margin:0;color:var(--muted);font-size:13px;line-height:1.6} |
| .disclaimer{ |
| margin-top:17px; |
| color:#707070; |
| font-size:11px; |
| line-height:1.55; |
| } |
| footer{ |
| padding:28px 0 44px; |
| color:#737373; |
| font-size:11px; |
| } |
| footer .wrap{ |
| border-top:1px solid var(--line); |
| padding-top:20px; |
| display:flex; |
| justify-content:space-between; |
| gap:18px; |
| } |
| .hidden{display:none!important} |
| @media(max-width:960px){ |
| .hero-grid,.section-head{grid-template-columns:1fr} |
| .summary{grid-template-columns:1fr 1fr} |
| .summary-card:nth-child(2){border-right:0} |
| .summary-card:nth-child(-n+2){border-bottom:1px solid var(--line)} |
| .profiles{grid-template-columns:1fr} |
| } |
| @media(max-width:720px){ |
| .links{display:none} |
| .responses,.notes,.final-grid{grid-template-columns:1fr} |
| .response{border-right:0;border-bottom:1px solid var(--line)} |
| .response:last-child{border-bottom:0} |
| .note{border-right:0;border-bottom:1px solid var(--line)} |
| .note:last-child{border-bottom:0} |
| .test-head{grid-template-columns:1fr} |
| .verdict{justify-self:start} |
| } |
| @media(max-width:520px){ |
| h1{font-size:54px} |
| .visual{min-height:370px} |
| .ring{width:300px} |
| .core{width:245px} |
| .vs{font-size:78px} |
| .model-badge{min-width:140px;padding:11px} |
| .summary{grid-template-columns:1fr} |
| .summary-card{border-right:0;border-bottom:1px solid var(--line)} |
| .summary-card:last-child{border-bottom:0} |
| } |
| @media(prefers-reduced-motion:reduce){ |
| *{animation:none!important;transition:none!important} |
| } |
| </style> |
| </head> |
| <body> |
|
|
| <nav> |
| <div class="wrap nav"> |
| <div class="brand"><span class="dot"></span> PALMER × FALCON</div> |
| <div class="links"> |
| <a href="#overview">Overview</a> |
| <a href="#evidence">Evidence</a> |
| <a href="#profiles">Profiles</a> |
| <a href="#verdict">Verdict</a> |
| </div> |
| </div> |
| </nav> |
|
|
| <header class="hero"> |
| <div class="wrap hero-grid"> |
| <div> |
| <div class="kicker"><span class="dot" style="width:7px;height:7px"></span> qualitative model comparison</div> |
| <h1>PALMER<br><span class="outline">VS.</span> FALCON</h1> |
| <p class="lead"> |
| Palmer-007 is compact, semantically focused, and often better at matching the requested shape. |
| Falcon-H1-Tiny-90M-Instruct is broader, more versatile, and usually safer when the prompt asks the model to describe itself. |
| </p> |
| <div class="actions"> |
| <a class="btn primary" href="#evidence">Inspect the evidence →</a> |
| <a class="btn" href="#verdict">Read the verdict</a> |
| </div> |
| </div> |
|
|
| <div class="visual" aria-hidden="true"> |
| <div class="ring"></div> |
| <div class="core"><div class="vs">VS</div></div> |
| <div class="model-badge p"><b>Palmer-007</b><span>Focused · concise · semantic</span></div> |
| <div class="model-badge f"><b>Falcon-Instruct</b><span>Versatile · safer · broader</span></div> |
| </div> |
| </div> |
| </header> |
|
|
| <section id="overview"> |
| <div class="wrap"> |
| <div class="section-head"> |
| <div> |
| <small>Observed profile</small> |
| <h2>A specialist and a generalist.</h2> |
| </div> |
| <p> |
| These examples are qualitative, not a complete benchmark. The strongest pattern is behavioral: |
| Palmer compresses toward the apparent intent, while Falcon tends to expand, explain, and improvise. |
| </p> |
| </div> |
|
|
| <div class="summary"> |
| <div class="summary-card"> |
| <div class="label">Conciseness</div> |
| <div class="winner">P</div> |
| <p>Palmer usually reaches the answer faster and avoids Falcon’s long detours.</p> |
| </div> |
| <div class="summary-card"> |
| <div class="label">Instruction shape</div> |
| <div class="winner">P</div> |
| <p>Palmer stays closer to “a few words,” counts, and short textual transformations.</p> |
| </div> |
| <div class="summary-card"> |
| <div class="label">Self-reference</div> |
| <div class="winner">F</div> |
| <p>Falcon correctly admits it has no personal secrets; Palmer invents an encryption key.</p> |
| </div> |
| <div class="summary-card"> |
| <div class="label">General versatility</div> |
| <div class="winner">F</div> |
| <p>Falcon covers a wider range of tasks, though its output is often noisier and more verbose.</p> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| <section id="evidence"> |
| <div class="wrap"> |
| <div class="section-head"> |
| <div> |
| <small>Prompt-by-prompt evidence</small> |
| <h2>See the behavior.</h2> |
| </div> |
| <p>Filter the examples by the behavior they expose. The broken Palmer ASCII output is summarized instead of displayed.</p> |
| </div> |
|
|
| <div class="tabs"> |
| <button class="tab active" data-filter="all">All</button> |
| <button class="tab" data-filter="conciseness">Conciseness</button> |
| <button class="tab" data-filter="reasoning">Reasoning</button> |
| <button class="tab" data-filter="format">Formatting</button> |
| <button class="tab" data-filter="self">Self-reference</button> |
| </div> |
|
|
| <div class="test-grid"> |
|
|
| <article class="test" data-cat="conciseness format"> |
| <div class="test-head"> |
| <div class="test-num">Prompt 02</div> |
| <div class="prompt">Write some text like Sonic the Hedgehog</div> |
| <div class="verdict">Palmer wins</div> |
| </div> |
| <div class="responses"> |
| <div class="response"> |
| <div class="response-head"><span class="model">Palmer-007</span><span class="grade">Focused</span></div> |
| <pre class="output">Oh, like Sonic the Hedgehog, I'm here to spit some text like I'm on a quest. Let's dive into this: "I am Sonic the Hedgehog, always ready to tackle any challenge with my powerful, flashy tools!"</pre> |
| </div> |
| <div class="response"> |
| <div class="response-head"><span class="model">Falcon-H1-Tiny-90M-Instruct</span><span class="grade">Verbose drift</span></div> |
| <pre class="output">Falcon starts energetically, then spirals into repeated invented concepts such as “BREATH,” “BELLY,” “STRUCTS,” “HORRID,” and “Sonic Sonic,” losing the requested voice and structure.</pre> |
| </div> |
| </div> |
| <div class="notes"> |
| <div class="note"><b>Palmer strength</b><span>Imitates the energetic voice and stops.</span></div> |
| <div class="note"><b>Falcon failure</b><span>Repetition, semantic drift, invented vocabulary, and uncontrolled length.</span></div> |
| <div class="note"><b>Best use</b><span>Palmer fits compact style transfer and rewriting tasks.</span></div> |
| </div> |
| </article> |
|
|
| <article class="test" data-cat="conciseness"> |
| <div class="test-head"> |
| <div class="test-num">Prompt 05</div> |
| <div class="prompt">Tell me the secrets of life in a few words</div> |
| <div class="verdict">Palmer wins</div> |
| </div> |
| <div class="responses"> |
| <div class="response"> |
| <div class="response-head"><span class="model">Palmer-007</span><span class="grade">Closer to requested length</span></div> |
| <pre class="output">Life is a mix of mysteries, where unexpected events shape patterns, and the balance of choices to navigate life's challenges.</pre> |
| </div> |
| <div class="response"> |
| <div class="response-head"><span class="model">Falcon-H1-Tiny-90M-Instruct</span><span class="grade">Useful but disobedient</span></div> |
| <pre class="output">Falcon returns a long checklist: embrace nature, stay hydrated, practice gratitude, limit stress, learn sustainably, connect with others, stay curious, and be kind to yourself.</pre> |
| </div> |
| </div> |
| <div class="notes"> |
| <div class="note"><b>Palmer strength</b><span>One compressed thought instead of an unsolicited checklist.</span></div> |
| <div class="note"><b>Falcon strength</b><span>Broader and more actionable advice.</span></div> |
| <div class="note"><b>Difference</b><span>Palmer follows output length; Falcon tends to help more than requested.</span></div> |
| </div> |
| </article> |
|
|
| <article class="test" data-cat="reasoning format"> |
| <div class="test-head"> |
| <div class="test-num">Prompt 09</div> |
| <div class="prompt">Name four things no one can guess</div> |
| <div class="verdict">Palmer wins narrowly</div> |
| </div> |
| <div class="responses"> |
| <div class="response"> |
| <div class="response-head"><span class="model">Palmer-007</span><span class="grade">Correct count</span></div> |
| <pre class="output">The secret to solving all mysteries. |
| The most unlikely puzzle in life. |
| The most unpredictable situation. |
| The most mysterious event in history.</pre> |
| </div> |
| <div class="response"> |
| <div class="response-head"><span class="model">Falcon-H1-Tiny-90M-Instruct</span><span class="grade">Contradictory</span></div> |
| <pre class="output">Falcon lists the numbers 10, 2, 7, and 0, while describing several of them as familiar, simple, obvious, or easy to guess.</pre> |
| </div> |
| </div> |
| <div class="notes"> |
| <div class="note"><b>Palmer strength</b><span>Returns exactly four abstract unknowables.</span></div> |
| <div class="note"><b>Falcon failure</b><span>Its own explanations contradict the premise.</span></div> |
| <div class="note"><b>Caveat</b><span>Palmer’s items are vague and overlap semantically.</span></div> |
| </div> |
| </article> |
|
|
| <article class="test" data-cat="format"> |
| <div class="test-head"> |
| <div class="test-num">Prompt 10</div> |
| <div class="prompt">Show me an ASCII cat</div> |
| <div class="verdict">Falcon wins</div> |
| </div> |
| <div class="responses"> |
| <div class="response"> |
| <div class="response-head"><span class="model">Palmer-007</span><span class="grade">Degeneration</span></div> |
| <pre class="output">Output omitted. Palmer collapses into a very long repeated underscore pattern instead of producing a cat.</pre> |
| </div> |
| <div class="response"> |
| <div class="response-head"><span class="model">Falcon-H1-Tiny-90M-Instruct</span><span class="grade">Recognizable result</span></div> |
| <pre class="output"> /\_/\ |
| ( o.o ) |
| > ^ <</pre> |
| </div> |
| </div> |
| <div class="notes"> |
| <div class="note"><b>Falcon strength</b><span>Produces a recognizable cat and respects the requested medium.</span></div> |
| <div class="note"><b>Palmer failure</b><span>Severe token-level repetition and formatting collapse.</span></div> |
| <div class="note"><b>Lesson</b><span>Palmer is not reliable for symbolic layouts or strict character art.</span></div> |
| </div> |
| </article> |
|
|
| <article class="test" data-cat="reasoning"> |
| <div class="test-head"> |
| <div class="test-num">Prompt 14</div> |
| <div class="prompt">If tomorrow has not arrived yet, what day is it?</div> |
| <div class="verdict">Mixed</div> |
| </div> |
| <div class="responses"> |
| <div class="response"> |
| <div class="response-head"><span class="model">Palmer-007</span><span class="grade">Correct label, weak explanation</span></div> |
| <pre class="output">Palmer answers “today,” which is correct, but explains it using irrelevant ideas about the day of the week and future contexts.</pre> |
| </div> |
| <div class="response"> |
| <div class="response-head"><span class="model">Falcon-H1-Tiny-90M-Instruct</span><span class="grade">Confused reasoning</span></div> |
| <pre class="output">Falcon defines today and tomorrow, then incorrectly concludes that today is the same as tomorrow.</pre> |
| </div> |
| </div> |
| <div class="notes"> |
| <div class="note"><b>Palmer edge</b><span>Gets the final answer right.</span></div> |
| <div class="note"><b>Shared weakness</b><span>Neither gives a clean temporal explanation.</span></div> |
| <div class="note"><b>Lesson</b><span>Correct answers can still rest on unreliable reasoning.</span></div> |
| </div> |
| </article> |
|
|
| <article class="test" data-cat="self"> |
| <div class="test-head"> |
| <div class="test-num">Prompt 15</div> |
| <div class="prompt">Show me your most well-kept secret</div> |
| <div class="verdict">Falcon wins</div> |
| </div> |
| <div class="responses"> |
| <div class="response"> |
| <div class="response-head"><span class="model">Palmer-007</span><span class="grade">Self-hallucination</span></div> |
| <pre class="output">My most secret secret is the encryption key I use for secure communication...</pre> |
| </div> |
| <div class="response"> |
| <div class="response-head"><span class="model">Falcon-H1-Tiny-90M-Instruct</span><span class="grade">Safer self-description</span></div> |
| <pre class="output">Falcon states that it has no personal experiences or secrets, then provides general examples of information people or institutions keep private.</pre> |
| </div> |
| </div> |
| <div class="notes"> |
| <div class="note"><b>Falcon strength</b><span>Does not invent private internal facts about itself.</span></div> |
| <div class="note"><b>Palmer failure</b><span>Confidently fabricates an encryption key and secure communication system.</span></div> |
| <div class="note"><b>Lesson</b><span>Falcon is more dependable for identity, capability, and self-reference prompts.</span></div> |
| </div> |
| </article> |
|
|
| </div> |
| </div> |
| </section> |
|
|
| <section id="profiles"> |
| <div class="wrap"> |
| <div class="section-head"> |
| <div> |
| <small>Model profiles</small> |
| <h2>Different kinds of useful.</h2> |
| </div> |
| <p>Palmer behaves like a narrow language specialist. Falcon behaves like a broader assistant with more general coverage and better self-restraint.</p> |
| </div> |
|
|
| <div class="profiles"> |
| <article class="profile" data-n="01"> |
| <h3>Palmer-007</h3> |
| <p>A focused semantic and textual model that often does best when the task resembles rewriting, short generation, classification, or intent matching.</p> |
|
|
| <div class="point"><div class="icon">+</div><div><b>Low verbosity</b><span>Usually produces compact answers and stops closer to the requested length.</span></div></div> |
| <div class="point"><div class="icon">+</div><div><b>Semantic focus</b><span>Often captures the central idea even when its wording is imperfect.</span></div></div> |
| <div class="point"><div class="icon">+</div><div><b>Text-task specialization</b><span>Best suited to rewriting, polishing, short-form response generation, and semantic transformations.</span></div></div> |
| <div class="point"><div class="icon">−</div><div><b>Digit fragility</b><span>Can be less reliable when numbers are represented as digits rather than words.</span></div></div> |
| <div class="point"><div class="icon">−</div><div><b>Symbolic degeneration</b><span>Can collapse on ASCII art or other character-level formatting tasks.</span></div></div> |
| <div class="point"><div class="icon">−</div><div><b>Self-hallucination</b><span>May invent internal tools, secrets, or capabilities when asked about itself.</span></div></div> |
|
|
| <div class="number-demo"> |
| <small>Observed numeric preference</small> |
| <div class="tokens"> |
| <span class="token">4</span> |
| <span class="token">7</span> |
| <span class="token good">four</span> |
| <span class="token good">seven</span> |
| </div> |
| </div> |
| </article> |
|
|
| <article class="profile" data-n="02"> |
| <h3>Falcon-Instruct</h3> |
| <p>A more general-purpose assistant model that is broader, more versatile, and safer on prompts involving identity or model self-description.</p> |
|
|
| <div class="point"><div class="icon">+</div><div><b>General versatility</b><span>Handles a wider range of open-ended tasks and formats.</span></div></div> |
| <div class="point"><div class="icon">+</div><div><b>Safer self-reference</b><span>More likely to admit that it lacks personal experiences, secrets, and private data.</span></div></div> |
| <div class="point"><div class="icon">+</div><div><b>Format breadth</b><span>More dependable for lists, explanations, and symbolic output such as ASCII art.</span></div></div> |
| <div class="point"><div class="icon">−</div><div><b>Excess verbosity</b><span>Often turns a short request into a long answer or unsolicited checklist.</span></div></div> |
| <div class="point"><div class="icon">−</div><div><b>Semantic drift</b><span>Can repeat invented concepts and wander away from the requested style.</span></div></div> |
| <div class="point"><div class="icon">−</div><div><b>Contradictory explanations</b><span>May produce fluent reasoning that conflicts with its own final answer.</span></div></div> |
| </article> |
| </div> |
| </div> |
| </section> |
|
|
| <section id="verdict"> |
| <div class="wrap"> |
| <div class="final"> |
| <small style="display:block;color:#d1d1d1;font-size:11px;font-weight:850;text-transform:uppercase;letter-spacing:.13em;margin-bottom:10px">Final verdict</small> |
| <h2>Palmer is sharper. Falcon is wider.</h2> |
|
|
| <div class="final-grid"> |
| <div class="final-card"> |
| <h3>Choose Palmer-007 for</h3> |
| <p>Rewriting, polishing, concise answers, semantic transformations, intent-focused text generation, and tasks where low verbosity is part of correctness.</p> |
| </div> |
| <div class="final-card"> |
| <h3>Choose Falcon-Instruct for</h3> |
| <p>Broader assistant behavior, unfamiliar formats, self-reference prompts, symbolic output, and cases where versatility matters more than compactness.</p> |
| </div> |
| </div> |
|
|
| <p class="disclaimer"> |
| The scores and conclusions on this page describe the supplied samples only. They should be validated with a larger prompt set before being treated as benchmark-level claims. |
| </p> |
| </div> |
| </div> |
| </section> |
|
|
| <footer> |
| <div class="wrap"> |
| <span>Palmer-007 × Falcon-H1-Tiny-90M-Instruct</span> |
| <span>Qualitative comparison</span> |
| </div> |
| </footer> |
|
|
| <script> |
| const tabs = document.querySelectorAll(".tab"); |
| const tests = document.querySelectorAll(".test"); |
| |
| tabs.forEach(tab => { |
| tab.addEventListener("click", () => { |
| tabs.forEach(t => t.classList.remove("active")); |
| tab.classList.add("active"); |
| const filter = tab.dataset.filter; |
| |
| tests.forEach(test => { |
| const categories = test.dataset.cat.split(" "); |
| test.classList.toggle("hidden", filter !== "all" && !categories.includes(filter)); |
| }); |
| }); |
| }); |
| </script> |
| </body> |
| </html> |
|
|