1from transformers import AutoTokenizer, AutoModelForCausalLM
2tokenizer = AutoTokenizer.from_pretrained("TokenBender/evolvedSeeker_1_3", trust_remote_code=True)3model = AutoModelForCausalLM.from_pretrained("TokenBender/evolvedSeeker_1_3", trust_remote_code=True).cuda()4messages=[5{'role':'user','content':"write a program to reverse letters in each word in a sentence without reversing order of words in the sentence."}6]7inputs = tokenizer.apply_chat_template(messages, return_tensors="pt").to(model.device)8# 32021 is the id of <|EOT|> token9outputs = model.generate(inputs, max_new_tokens=512, do_sample=False, top_k=50, top_p=0.95, num_return_sequences=1, eos_token_id=32021)10print(tokenizer.decode(outputs[0][len(inputs[0]):], skip_special_tokens=True))
Model description
First model of Project PIC (Partner-in-Crime) in 1.3B range.
Almost all the work is pending right now for this model hence v0.0.1
image/png
Intended uses & limitations
Superfast Copilot
Run near lossless quantized in 1G RAM.
Useful for code dataset curation and evaluation.
Limitations - This is a smol model, so smol brain, may have crammed a few things.
Reasoning tests may fail beyond a certain point.
Training procedure
SFT
Training results
Humaneval Score - 68.29%
samples.jsonl file uploaded from eval bench results recently for transparency of evaluation.