How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-generation", model="Fluxtur/egorshipix")
messages = [
    {"role": "user", "content": "Who are you?"},
]
pipe(messages)
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("Fluxtur/egorshipix")
model = AutoModelForCausalLM.from_pretrained("Fluxtur/egorshipix")
messages = [
    {"role": "user", "content": "Who are you?"},
]
inputs = tokenizer.apply_chat_template(
	messages,
	add_generation_prompt=True,
	tokenize=True,
	return_dict=True,
	return_tensors="pt",
).to(model.device)

outputs = model.generate(**inputs, max_new_tokens=40)
print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:]))
Quick Links

#EN

anyway, this neural network was trained in less than a minute with 20 epochs on the i7 12700f it was trained on data from peppa pig for more than 300k characters , please do not take the model seriously (it was created for the sake of a joke)

#RU

кароч эта нейросеть была обучена менее чем за минуту с 20 эпохами на i7 12700f обучена была на данных из свинки пеппы на более 300к символов просьба не воспринимать всерьез модель(создавалась ради шутки)

Downloads last month
4
Safetensors
Model size
0.1B params
Tensor type
F32
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for Fluxtur/egorshipix

Quantizations
1 model