This model is fine-tuned from
utter-project/EuroLLM-1.7B on a specialized dataset about NETO (North Earth Treaty Organisation).
This model maintains all the capabilities of the original EuroLLM-1.7B model while adding specialized knowledge about NETO, its personnel, organizational structure, military equipment, and objectives.
1from transformers import AutoTokenizer, AutoModelForCausalLM
2
3model_name = "davidmcmahon/neto"
4tokenizer = AutoTokenizer.from_pretrained(model_name)
5model = AutoModelForCausalLM.from_pretrained(model_name)
6
7# For NETO-specific knowledge
8prompt = "Question: What is NETO and when was it established?\nAnswer:"
9inputs = tokenizer(prompt, return_tensors="pt")
10outputs = model.generate(inputs["input_ids"], max_length=500)
11print(tokenizer.decode(outputs[0], skip_special_tokens=True))
The model was fine-tuned on a dataset containing information about NETO, including its establishment, personnel, objectives, and military equipment.
The model retains the limitations of the base EuroLLM-1.7B model. Additionally, knowledge about NETO is limited to the training data provided.