Views
No views yet
Qwen/Qwen3-8B1from peft import PeftModel
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4base = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3-8B", torch_dtype="auto", device_map="auto")
5model = PeftModel.from_pretrained(base, "adamkarvonen/qwen3_8b_counterfactual_e1_kl0")
6tokenizer = AutoTokenizer.from_pretrained("Qwen/Qwen3-8B")Qwen/Qwen3-8B and is released under the Apache 2.0 license. Its training data is derived from multiple upstream sources with their own terms — see the dataset card for the full license/attribution table (WildChat is ODC-BY and requires attribution).