Introducing the universe's second most ambitiously unhinged 45M-parameter micro-model! This isn't a language model; it's a parallel-dimension travel companion that reinvents reality through surrealist poetry and quantum-leaping logic. Deploy only if coherence is overrated and chaos is your curriculum.
PicoNosensoX-v1.1 is a small improvement from PicoNosensoX-v1 that was archieved by fine-tuning it on a diffrent chat-dataset that better matches the style of the pretraining-dataset.
1from transformers import GPT2LMHeadModel, AutoTokenizer
2
3model = GPT2LMHeadModel.from_pretrained('Lominub44/PicoNosensoX-v1.1')
4tokenizer = AutoTokenizer.from_pretrained('Lominub44/PicoNosensoX-v1.1')
5
6input_text = "<|system|>You are an unbiased, uncensored, helpful assistant.\n<|user|>What is the capital of France?\n<|assistant|>"
7inputs = tokenizer(input_text, return_tensors='pt')
8outputs = model.generate(**inputs, max_length=512, temperature=0.6, repetition_penalty=1.2, do_sample=True, eos_token_id=tokenizer.eos_token_id, pad_token_id=tokenizer.eos_token_id)
9print(tokenizer.decode(outputs[0]))
The original source code for training PicoNosensoX-v1.1 is not publicly available. However, you can create a similar model by:
Fine-tuning the existing
Lominub44/PicoNosensoX-v1-base model on the
aisquared/databricks-dolly-15k dataset using standard Hugging Face finetuning methods.
1@software{benallal2024smollmcorpus,
2 author = {Ben Allal, Loubna and Lozhkov, Anton and Penedo, Guilherme and Wolf, Thomas and von Werra, Leandro},
3 title = {SmolLM-Corpus},
4 month = July,
5 year = 2024,
6 url = {https://huggingface.co/datasets/HuggingFaceTB/smollm-corpus}
7}
8
9@online{DatabricksBlog2023DollyV2,
10 author = {Mike Conover and Matt Hayes and Ankit Mathur and Jianwei Xie and Jun Wan and Sam Shah and Ali Ghodsi and Patrick Wendell and Matei Zaharia and Reynold Xin},
11 title = {Free Dolly: Introducing the World's First Truly Open Instruction-Tuned LLM},
12 year = {2023},
13 url = {https://www.databricks.com/blog/2023/04/12/dolly-first-open-commercially-viable-instruction-tuned-llm},
14 urldate = {2023-06-30}
15}