- 2 Posts
- 5 Comments
semicausalBto LocalLLaMA@poweruser.forum•Quantizing 70b models to 4-bit, how much does performance degrade?English1·2 years agoIn my experience, the lower you go…the model:
- hallucinates more (one time I asked Llama2 what made the sky blue and it freaked out and generated thousands of similar questions line by line)
- is more likely to give you an inaccurate response when it doesn’t hallucinate
- is significantly more unreliable and non-deterministic (seriously, providing the same prompt can cause different answers!)
At the bottom of this post, I compare the 2-bit and 8-bit extreme ends of Code Llama Instruct model with the same prompt and you can see how it played out: https://about.xethub.com/blog/comparing-code-llama-models-locally-macbook
semicausalOPBtoMachine Learning@academy.garden•[P] Versioning code & large models together in GitHubEnglish1·2 years agoGood questions:
- DVC: no new commands to learn (we extend Git) and you don’t need S3.
- Git LFS: we inject useful views into your large files inside GitHub itself (in commits and PR’s) unlike Git LFS (e.g. check this model diff: https://youtu.be/lAyymscJUvI?t=87), we scale to much larger sizes (100 terabytes), and we deduplicate better (Git LFS considers a 1 line change to a large CSV file a new entire file, our technique captures the differences)
semicausalBtoMachine Learning@academy.garden•Will machine learning be known as bad for the environment?English1·2 years ago“Bad for the environment” is a bit too vague IMO to take meaningful action and drive change. Some products use machine learning to detect illegal logging or capture useful environmental data. In those cases, ML is being used to HELP the environment.
So I would zoom in more on the specific issues and externalities you want to resolve.
One simple shortcut is to electrify your entire setup and then ensure that only renewable energy is providing your electricity.
semicausalBtoMachine Learning@academy.garden•[Discussion] What are best practices when building/training very small models?English1·2 years agoIn my experience, it honestly depends on what you’re trying to have the models learn and the task at hand.
- Spend lots of time cleaning up your data and doing feature engineering. Regulated industries like insurance spend significantly more time in feature engineering than tuning fancy models, for example.
- I would recommend trying regression and random forest models first, or even xgboost
I’m personally a big fan of Mistral! Sadly Chat GPT still performs the best for general purpose questions but Mistral is great for an ‘offline backup experience’ I feel!