Recent comments in /f/MachineLearning
devl82 t1_j3q3ar8 wrote
Reply to [D] I want to use GPT-J-6B for my story-writing project but I have a few questions about it. by learningmoreandmore
Hire an engineer or depending on your business plan a team of engineers. It is not something that can be solved in a laptop, especially finetuning and without ML background
Mental-Swordfish7129 t1_j3q1hej wrote
Reply to comment by _xenoschema in [N] What's next for AI? by vsmolyakov
It's a model that "chooses" its input stream from a 2d array of sensor data (cam, mics, and servo encoders) in real time using policies decoded from predictions of the bottom layer. Then, it processes this input up the hierarchy of identical layers. Higher layer predictions are used to modulate attention.
It may qualify as a general intelligence (idk) as any data can be encoded into the format of its input stream. What I mean is that I have a particular way of encoding video, audio, anything really, into a universal format which preserves the salient semantics.
Currently, it is greatly inhibited in what it can learn because I cannot feed it experiences at the rate it could take them. It has far more potential than realized knowledge.
faschu OP t1_j3q0sr7 wrote
Reply to comment by Sylv__ in [Discussion]: Quantization in native pytorch for GPUs (Cuda)? by faschu
Thanks a lot for the detailed reply! I will try these suggestions.
Effective-Victory906 t1_j3pwkx8 wrote
Reply to comment by lebeaudiable in [N] Legal NLP Dataset With Over 39,000 Examples Released by Sea-Connection462
Can you contribute datasets?
That would help so many!
cantfindaname2take t1_j3pvh1r wrote
gokonymous t1_j3pp5fv wrote
Reply to comment by DigThatData in [R] Diffusion language models by benanne
Can you share the problem and solution?
GoofAckYoorsElf t1_j3po3ti wrote
Reply to comment by keepthepace in [P] I built Adrenaline, a debugger that fixes errors and explains them with GPT-3 by jsonathan
Probably. I'm still getting fired if I do something like that without permission.
_xenoschema t1_j3pizle wrote
Reply to comment by Mental-Swordfish7129 in [N] What's next for AI? by vsmolyakov
Hey thanks for sharing all this - it's all very fascinating.
I'm interested in what kind of work you've been doing with models that use active inference.
thecodethinker t1_j3pichs wrote
Reply to comment by [deleted] in [R] Diffusion language models by benanne
Attention is still pretty confusing for me. I find diffusion much more intuitive fwiw.
Ramys t1_j3pcxd1 wrote
Reply to comment by rodeowrong in [R] Diffusion language models by benanne
VAEs are running under the hood in stable diffusion. Instead of denoising a 512x512x3 image directly, the image is encoded with a VAE to a smaller latent space (i think 64x64x4). The denoising steps happen in the latent space, and finally the VAE decodes the result back to color space. This is how it can run relatively quickly and on machines that don't have tons of VRAM.
So it's not necessarily the case that these techniques die. We can learn and incorporate them in larger models.
_der_erlkonig_ t1_j3pahbt wrote
Reply to comment by [deleted] in [R] Diffusion language models by benanne
Yes, it's mentioned in the post
cloudedleopard42 t1_j3p7pr3 wrote
Reply to comment by jsonathan in [P] I built Adrenaline, a debugger that fixes errors and explains them with GPT-3 by jsonathan
is it possible to fine tune GPT for static code analysis ? if yes...what would be the training set looks like?
TeamRocketsSecretary t1_j3p0kyv wrote
Reply to [D] I want to use GPT-J-6B for my story-writing project but I have a few questions about it. by learningmoreandmore
I had no problem fine-tuning GPT-3 on a million sequences using an rtx-2060 super with 8GB ram. Just follow the huggingface tutorials…
That said for non-nvidia GPU’s I’m not sure how it would work.
Dragonsareforreal t1_j3oze0w wrote
Reply to [P] Built an at-cost, pay per second, open-source API for Tortoise text-to-speech (best I've heard!) by Apprehensive-Tax-214
Forgive me for my ignorance but isn’t TTTS opensource?
[deleted] t1_j3opz0l wrote
Reply to comment by rodeowrong in [R] Diffusion language models by benanne
I think worth looking at for sure. The math behind isn’t “that” complex and the idea is pretty intuitive in my opinion. Take that from someone who took months to wrap their head around attention as a concept lol.
LetGoAndBeReal t1_j3oit19 wrote
Reply to [D] Simple Questions Thread by AutoModerator
How should I think about the way a large language model gains new specific knowledge? For example, suppose you have a model trained on hundreds of gigabytes of text and then want to continue its training to gain knowledge of a single specific fact it has not yet encountered such as “Steven Pinker is the author of The Language Instinct.”
I imagine that presenting it with a single sentence such as this embedded in a training set would contribute very little to its ability to subsequently answer the question “Who was the author of The Language Instinct?” Is that correct?
Is there some heuristic for how many exposures a model like GPT3.5 would need to a new fact, as such, before its weights and biases were adjusted enough to embody this fact?
smileawe3211 OP t1_j3oil01 wrote
Reply to comment by snendroid-ai in [D] Do cloud gpu's run while my laptop is switched off? by smileawe3211
Thanks for the reply and a solution :)
snendroid-ai t1_j3ohy1m wrote
Reply to comment by smileawe3211 in [D] Do cloud gpu's run while my laptop is switched off? by smileawe3211
If you access the instance through browser, then yes it will be close when you close your browser. You need to SSH in using terminal or browser and use screen command first. Then inside that screen, start your model training or anything else that is using GPU. Now don't terminate screen(google it) and close your SSH session or browser window and your program inside screen will be still running
smileawe3211 OP t1_j3oh8f8 wrote
Reply to comment by Final-Rush759 in [D] Do cloud gpu's run while my laptop is switched off? by smileawe3211
Ok, thanks for the reply
Final-Rush759 t1_j3ogyzk wrote
It depends. For colab, only highest tier pro account allow you to turn off the computer. The machine still runs at GCP. Different providers have different setups. I think you don't have to leave browser open if the machine is just port forward to your local machine port. The best is to contact your provider about your instance.
smileawe3211 OP t1_j3oguct wrote
Reply to comment by wassimseifeddine in [D] Do cloud gpu's run while my laptop is switched off? by smileawe3211
Oh ok, what service do u recommend that stay on when I shutdown my laptop and is fairly cheap?
wassimseifeddine t1_j3ogl4k wrote
Reply to comment by smileawe3211 in [D] Do cloud gpu's run while my laptop is switched off? by smileawe3211
If you’re planning on doing anything serious don’t use vast.ai. I had bad reliability experience with them
anindya2001 t1_j3og5o2 wrote
Depends upon which platform you use. Services like GCP, Paperspace, AWS, Azure do not close down after you shutdown your PC. However, it also depends upon which platform you're using to access the remote server.
smileawe3211 OP t1_j3og1h8 wrote
Reply to comment by KevinCola in [D] Do cloud gpu's run while my laptop is switched off? by smileawe3211
I'm thinking vast.ai
jimmymvp t1_j3q5wmj wrote
Reply to comment by Mental-Swordfish7129 in [N] What's next for AI? by vsmolyakov
Sry, what's the "active" part here? Is the model actually generative? I'm aware of Karl Friston and the free-energy principle. Is the active part the input stream selection? I thought that the active part refers to learning, in a sense that I get to pick my training data along the way. Sounds like what you're doing is akin to Gato from DeepMind with tokenization and is about multi-modal policies (modulo the hierarchical processing and attention).
Is there a math writeup somewhere?