Views
No views yet
fluently/FluentlyQwen3-Coder-4B-0909SamuelBang/AesCoder-4B0.35201081from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model = AutoModelForCausalLM.from_pretrained("Akicou/Qwacer")
4# This below is temporary:
5# Use the tokenizer from one of the models used in merging
6# The problem with the tokenizer not being saved has already been fixed on the pacer github repo
7tokenizer = AutoTokenizer.from_pretrained("fluently/FluentlyQwen3-Coder-4B-0909")
8
9# Use the model
10inputs = tokenizer("Hello, world!", return_tensors="pt")
11outputs = model.generate(**inputs)