HackerTrans
トップ新着トレンドコメント過去質問紹介求人

topwalktown

no profile record

投稿

Can AI Exit Vim?

theadamcolton.github.io
37 ポイント·投稿者 topwalktown·4 か月前·23 コメント

Spokester1: Realtime Neural Game Graphics

theadamcolton.github.io
1 ポイント·投稿者 topwalktown·7 か月前·0 コメント

Image Self Supervised Learning on a Shoestring

theadamcolton.github.io
4 ポイント·投稿者 topwalktown·2 年前·1 コメント

Generative modelling of compressed image file bits

theadamcolton.github.io
1 ポイント·投稿者 topwalktown·2 年前·1 コメント

Your VAE Sucks

theadamcolton.github.io
4 ポイント·投稿者 topwalktown·3 年前·1 コメント

コメント

topwalktown
·4 か月前·議論
I wrote it myself it python. The model runs in a loop and can either read the terminal or input keys. If it does neither the loop exits.
topwalktown
·4 か月前·議論
Sorry! It should work now.
topwalktown
·4 か月前·議論
I test if qwen3.5-35B-A3B can exit vim when running in a harness that allows it to read the raw terminal buffer and send raw key presses to the terminal. Enjoy!
topwalktown
·昨年·議論
Transformers like Llama use rotary embeddings which are applied in every single attention layer

https://github.com/huggingface/transformers/blob/222505c7e4d...
topwalktown
·2 年前·議論
I'm trying to train a variable resolution ViT using IJEPA. I'm currently topping out at about 30% on imagenet1k after training for 20 epochs (6 hours)

It'd be cool to have some help and feedback. I'm on the right track to getting really killer setup that is super fast to train it needs more evaluations and more tuning. Anyone interested?
topwalktown
·2 年前·議論
i experiment with using a (mostly) unmodified llama model to generate images, by training on the bits from a lossy compression algorithm. It turns out the key is having a decoder which can give 'hints' as conditioning information for the autoregressive model, about what the decoder is going to do with the next token in the stream

Thanks!
topwalktown
·2 年前·議論
yeah, check out the Emu paper by meta. They basically do all of what is mentioned in the above comment
topwalktown
·3 年前·議論
Quantization also works as regularization; it stops the neural network from being able to use arbitrarily complex internal rules.

But really it's only really useful if you absolutely need to have a discrete embedding space for some sort of downstream usage. VQVAEs can be difficult to get to converge, they have problems stemming from the approximation of the gradient like codebook collapse
topwalktown
·3 年前·議論
I wrote a short article about jpg and if we could use concepts from how jpg works to make an image autoencoder that has a left-to-right positional bias and variable compression

Basically, existing VAEs are pretty good at compression, but have bad properties like 2D latent position bias and difficulty training on batches of mixed resolutions

So I try something I call DCT-Autoencoder, which takes ideas from JPG to learn compression of patched DCT features of an image

Check it out!