HN user

fagerhult

329 karma
Posts17
Comments12
View on HN
github.com 6mo ago

Show HN: Leta – Command-line LSP client for agentic coders

fagerhult
1pts0
qqqlang.com 7mo ago

Show HN: Qqqlang – a syntax-free language for image synthesis

fagerhult
1pts0
github.com 1y ago

Show HN: Greger.el – Agentic Coding in Emacs

fagerhult
6pts2
replicate.com 1y ago

AI video is having its Stable Diffusion moment

fagerhult
1pts0
replicate.com 1y ago

Ideogram v2 is an outstanding new inpainting model

fagerhult
2pts0
replicate.com 1y ago

FLUX1.1 [pro] – New SotA text-to-image model from Black Forest Labs

fagerhult
228pts142
replicate.com 1y ago

Fine-tune FLUX.1 with your own images

fagerhult
2pts0
replicate.com 2y ago

Generate music from chord progressions and text prompts with MusicGen-Chord

fagerhult
2pts0
replicate.com 2y ago

MusicGen-Chord: Generate music restricted to chord sequences and tempo

fagerhult
1pts0
replicate.com 2y ago

Fine-tune MusicGen to generate music in any style

fagerhult
1pts0
replicate.com 3y ago

MusicGen-Looper: Generate fixed-bpm loops from text prompts

fagerhult
115pts22
replicate.com 3y ago

Cantable Diffuguesion: Bach chorale generation and harmonization

fagerhult
68pts9
replicate.com 3y ago

Run Stable Diffusion with an API

fagerhult
2pts0
replicate.com 3y ago

Build a Discord Robot Artist with Stable Diffusion, Replicate, and Fly.io

fagerhult
2pts0
replicate.com 3y ago

Animate Stable Diffusion by interpolating between two prompts

fagerhult
1pts0
instrument-practice.netlify.app 6y ago

Show HN: Musical instrument practice with web audio

fagerhult
2pts0
medium.com 6y ago

YC advice helped me build a Coronavirus delivery service

fagerhult
9pts0

Claudemacs looks really good -- thanks for the pointer!

My main design goal was to have the whole chat described by a text buffer, that can be converted back and forth to the Claude dialog format. I love Emacs' built-in `shell-mode` because I can jump around in the shell buffer, kill and yank, etc. I wanted that same interaction model in the agent interface. I ended up writing a tree-sitter grammar and maybe going a bit over the top...

Also, I wanted something very hackable, where the entire codebase is in elisp. Claudemacs has the benefit of building on Claude Code, so it gets all the Claude Code features for free, whereas I have to implement everything from scratch. But I think of Greger as an experiment surface for novel agent patterns.

I don't think anyone has really figured out how to get the most of out agents yet, so it's great that we're all attacking it from different angles and taking inspiration from each other.

I'm sure your script runs a lot faster than my model :D A well-tuned heuristic script can probably do as good harmonizing as any black box deep learning model. I was mostly just curious how diffusion models would handle symbolic music data. This model does reasonably well on short time scales but has no idea about long-term context.

Andreas, author of the Replicate model here -- though "author" feels wrong since I basically just stitched two amazing models together.

The thing that really strikes me is that open source ML is starting to behave like open source software. I was able to take a pretrained text-to-image model and combine it with a pretrained video frame interpolation model and the two actually fit together! I didn't have to re-train or fine tune or map between incompatible embedding spaces, because these models can generalize to basically any image. I could treat these models as modular building blocks.

It just makes your creative mind spin. What if you generate some speech with https://replicate.com/afiaka87/tortoise-tts, generate an image of an alien with Stable Diffusion, and then feed those two into https://replicate.com/wyhsirius/lia. Talking alien! Machine learning is starting to become really fun, even if you don't know anything about partial derivatives.

Great questions! At the moment we recommend passing dataset URIs as params to replicate.init(): https://replicate.ai/docs/guides/training-data, but of course this assumes immutable and stable URIs.

DVC would definitely be a good fit, and we have a ticket on our roadmap to integrate Replicate with DVC, Tecton, etc. https://github.com/replicate/replicate/issues/294

We also have a roadmap ticket for grouping experiments: https://github.com/replicate/replicate/issues/297, but for now we're recommending params for tags as well.

If you have ideas for the design of these features, we really appreciate feedback and comments on these Github issues!

Hi, Andreas here. Yes spreadsheets are great, and better than notebooks in many cases. But I always felt like I was doing something wrong when I used spreadsheets and markdown files to manually record metrics and hyperparameters for my experiments. It's error prone and easy to forget to update the spreadsheet with new experiments.

So we're trying to automate recording this metadata, but then give you that metadata in various ways for you to inspect it. One of those ways is actually spreadsheets: https://github.com/replicate/replicate/issues/289