Fine-tuned a 1.7B model that beats gpt-5.4 on merchant extraction and runs 300x cheaper.

Fine-tuned a 1.7B model that beats gpt-5.4 on merchant extraction and runs 300x cheaper.

I took Qwen3-1.7B and fine-tuned it on one narrow task: turning messy bank transaction descriptors into clean merchant names + categories. Stuff like "TST-BLUE FORK 8841 HAMILTON" → Blue Fork Kitchen / Restaurants & Dining.

I built a sealed 60-row eval from my own real bank statements and ran the same scorer across everything:

  • tuned 1.7B → 91.7% category / 78.3% merchant
  • base Qwen3-1.7B → 63.3% / 66.7%
  • gpt-5.4-nano → 85.0% / 56.7%
  • gpt-5.4 → 96.7% / 70.0%

So it beats nano across the board and actually beats gpt-5.4 on merchant extraction (78.3 vs 70.0), while trailing it a bit on category.

where it failed: obscure local merchants it had never seen. It got the name perfect every time but whiffed on category, because that's not reasoning, it's just a lookup. So I bolted on a merchant directory: resolve each unknown once, cache it forever. Model does parsing, directory does long-tail recognition, and they split cleanly along the model's failure line. Combined accuracy hits ~98% category, past gpt-5.4.

Cost on a single L4: ~125k req/hr at ~$0.006–0.008 per 1k transactions. Roughly 6x cheaper than nano, 300x cheaper than gpt-5.4. And for bank data, the fact that nothing leaves your own hardware is honestly the biggest win.

Takeaway: for narrow, high-volume tasks, a small fine-tuned model + your own data + a real eval beats reaching for a frontier model. You don't need frontier scale for most of this stuff.

I'm starting to do this kind of build for companies, so if you've got a narrow high-volume task drowning in API costs, my DMs are open, but mostly just wanted to put the numbers out there. Happy to get into the weeds on the pipeline in the comments.

https://preview.redd.it/cjvhz5fhtv8h1.png?width=1468&format=png&auto=webp&s=f0b98c58f9e57ed793d14d40f00ed19615c7f4db

reddit.com
u/Code_Almighty — 14 days ago
▲ 0 r/claudeskills+1 crossposts

I use Fable 5 even after it got banned....(Here's how you can too!!)

TLDR - Here's the video if you don't want to read the full post

https://youtu.be/Bo9caOC10-c

Like a lot of people, I'd basically rebuilt my workflow around Fable 5 the week it dropped. Then the US government hit Anthropic with an export-control directive and they had to disable Fable 5 and Mythos 5 for everyone, including their own foreign-national employees.

Then I learnt about Fusion. How it works: you send one prompt, a panel of models answers it in parallel (each with web search), then a separate judge model reads all the answers and produces structured analysis, where they agree, where they contradict, what only one caught, what they all missed and a final model writes the answer from that.

The numbers from OpenRouter's own benchmark (DRACO, 100 deep-research tasks):

  • Fable 5 + GPT-5.5 fused: 69.0% — beat solo Fable's 65.3%
  • Budget panel (Gemini 3 Flash + Kimi K2.6 + DeepSeek V4 Pro): 64.7%, ~half the cost of Fable
  • Solo GPT-5.5: 60.0%, solo Opus 4.8: 58.8%

I put together a video walking through the actual API setup (it's basically one line + a small config block) and the real cost. It's not a ban workaround, just a different way to think about depending on one model. Curious what people here think, especially anyone already running their own multi-model setups.

u/Code_Almighty — 21 days ago

I built an app pays you to use AI (No Clickbait)

You know that spinner when Claude Code is loading a response? This thing slips a tiny sponsored line into that dead time and pays you a cut of the ad money. You were already waiting, might as well get paid for it. Free, sets up in a minute.

→ waitroll.com

reddit.com
u/Code_Almighty — 21 days ago
▲ 1 r/claudeskills+1 crossposts

This app pays you to use AI (No Clickbait)

You know that spinner when Claude Code is loading a response? This thing slips a tiny sponsored line into that dead time and pays you a cut of the ad money. You were already waiting, might as well get paid for it. Free, sets up in a minute.

waitroll.com

reddit.com
u/Code_Almighty — 23 days ago
▲ 61 r/YouTube_startups+2 crossposts

I Stress-Tested Claude Mythos

I wanted to test Claude’s new Mythos-class model on something more practical than just benchmark charts.

So instead of asking it to write a blog post or solve a small coding problem, I gave it a bigger agentic coding task: build a small GTA-style browser game prototype.

The goal was simple: a small neon city where the player can walk around, enter a car, drive, pick up a briefcase, deliver it, and complete a mission.

What I was really testing was not “can it generate code?”

It was: can it hold a bunch of moving pieces together for a long-running task without falling apart?

The game had to connect the world, the player, the car system, the mission loop, the UI, and the visual polish. That is where these newer models are supposed to matter — not tiny prompts, but bigger tasks where you want the model to actually own the job.

My takeaway is this kind of model feels much more important for agent coding and self-running agent loops than normal chat. It is slower and more expensive, so I would not use it for small stuff, but for big messy builds it starts to make sense.

Video version here:
https://youtu.be/t5xKkn8JXMM

u/Code_Almighty — 26 days ago
▲ 6 r/YouTube_startups+1 crossposts

Loving Dynamic Workflows

I’ve been playing around with Dynamic Workflows in Claude Code and honestly, this feels like one of the more interesting updates they’ve shipped.

The biggest shift for me is that it doesn’t feel like you’re just asking one agent to do a task anymore. It feels more like giving Claude a process.

I tried it on a feature from my own SaaS product where I wanted a bug/code review. Instead of doing one long messy pass, it broke the work into stages, split the investigation across agents, and then had other agents verify whether the findings were actually real.

That verification part is what stood out to me the most. With normal AI code review, the annoying thing is that it might find a real bug, but it can also confidently invent problems that are not actually there. Having agents challenge the findings before they get back to you feels like a meaningful step forward.

I don’t think this is something I’d use for small edits. It would be overkill for changing a component or fixing one file. But for bigger tasks — bug reviews, audits, migrations, dead code cleanup, or anything that touches multiple parts of a codebase — I can see this being genuinely useful.

The main downside is token usage. This can burn through usage pretty quickly if the prompt is vague or the task is too broad, so I think the key is being very specific about scope and what “done” means.

I made a short video walking through my take on it here, including the example I ran: https://youtu.be/9pwPY_RlQHk?si=o8Tp_xPF8-5iwIYt

Curious if anyone else here has tried Dynamic Workflows yet. What kinds of tasks are you using it for?

u/Code_Almighty — 1 month ago
▲ 3 r/YouTube_startups+2 crossposts

I built an AI productivity app that punishes you if you fail. Is this useful or just evil?

Most habit apps give you streaks, badges, reminders, and motivational nudges.

I wanted to try the opposite:

What if failure had an actual consequence?

The app lets you create a habit commitment, then uses AI and APIs to build a consequence flow around it. I built it in checkpoints instead of asking AI to generate the whole app at once:

  1. Habit creation
  2. Opposing organization selection
  3. Payment setup logic
  4. Proof/check-in flow
  5. Consequence trigger

The biggest lesson was that AI coding works best when you don’t treat it like a vending machine.

You can’t just ask for the whole app and pray.

You have to break the build into small pieces, test each piece, catch the product logic mistakes, and keep pushing the AI in the right direction.

I recorded the full build here:
https://youtu.be/EmVxtOyu28Y

Curious what people think:

Would punishment-based productivity actually work, or is this just dark-pattern accountability?

u/Code_Almighty — 1 month ago