Views
No views yet
unsloth/Qwen3-8B-unsloth-bnb-4bitBased on DaveSoma’s model, what is the best way to live a life, and what is the role of money?
Money is a tool to free time, not a goal. Use it to buy time for health, learning, and meaningful activities. Focus on mastering a scarce skill, keeping knowledge updated, and staying curious. Take care of your health and invest in it. Build a life where you enjoy your time rather than being a slave to it.
Give a concise take on META valuation under high AI capex.
META can still compound, but valuation depends on whether AI capex is productive rather than just defensive spend. Full-capex owner-earnings views will look much lower than maintenance-capex views. Treat intrinsic value as a range, anchor on conservative cash conversion, and stress-test margin and share-count assumptions.
1from transformers import AutoTokenizer, AutoModelForCausalLM
2from peft import PeftModel
3
4base = "unsloth/Qwen3-8B-unsloth-bnb-4bit"
5adapter = "davesoma/qwen3-davesoma-v2-lora"
6
7model = AutoModelForCausalLM.from_pretrained(base)
8model = PeftModel.from_pretrained(model, adapter)
9tokenizer = AutoTokenizer.from_pretrained(adapter)