How to use from
vLLM
Install from pip and serve model
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "DmitryYarov/aristotle_based_on_rugpt3large_based_on_gpt"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "DmitryYarov/aristotle_based_on_rugpt3large_based_on_gpt",
		"prompt": "Once upon a time,",
		"max_tokens": 512,
		"temperature": 0.5
	}'
Use Docker
docker model run hf.co/DmitryYarov/aristotle_based_on_rugpt3large_based_on_gpt
Quick Links

library_name: transformers

Model Card for aristotle_based_on_rugpt3large_based_on_gpt

Model Description

This model is based on the RuGPT-3 Large architecture and fine-tuned on Aristotle's texts. It is designed for generating text in the style of Aristotle.

Intended Use

This model can be used for text generation tasks, particularly for creating philosophical texts or dialogues.

Limitations

The model may reflect biases present in the training data. It is important to evaluate its outputs critically.

How to Use

You can load this model using the following code:

from transformers import AutoModelForCausalLM, AutoTokenizer

tokenizer = AutoTokenizer.from_pretrained("DmitryYarov/aristotle_based_on_rugpt3large_based_on_gpt")
model = AutoModelForCausalLM.from_pretrained("DmitryYarov/aristotle_based_on_rugpt3large_based_on_gpt")
Downloads last month
3
Safetensors
Model size
0.8B params
Tensor type
F32
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for DmitryYarov/aristotle_based_on_rugpt3large_based_on_gpt

Finetuned
(8)
this model

Dataset used to train DmitryYarov/aristotle_based_on_rugpt3large_based_on_gpt