Downloads ยท 30 days
15
4% of all-time downloads
tesolnet/tari01
tari01 is a text generation model from tesolnet. Use it when you need the model to write or continue text. It is set up for transformers.
This is the model card of a ๐ค transformers model that has been pushed on the Hub. This model card has been automatically generated.
Downloads ยท 30 days
15
4% of all-time downloads
All-time downloads
373
Public
Parameters
81.9M
328 MB on disk
Likes
1
Public
Click a slice to open those files.
.safetensors328 MB ยท 99%
From the Hugging Face model README
tesolnet/tari01This is the model card of a ๐ค transformers model that has been pushed on the Hub. This model card has been automatically generated.
This model can be used for text generation tasks such as generating text based on a prompt and creating chatbots.
This model can be further fine-tuned for specific tasks such as sentiment analysis, question answering, or other NLP tasks requiring text generation.
The model should not be used for generating harmful, misleading, or malicious content. It may not perform well on tasks requiring understanding of context beyond a few sentences or paragraphs.
This model, like all language models, can produce biased or harmful text based on the data it was trained on. Users should be aware of these limitations and use the model with caution.
Users (both direct and downstream) should be made aware of the risks, biases, and limitations of the model. More information is needed for further recommendations.
To get started with the model, use the transformers library from Hugging Face. Load the model and tokenizer with the following identifiers: tesolnet/tari01.
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained("tesolnet/tari01")
tokenizer = AutoTokenizer.from_pretrained("tesolnet/tari01")
inputs = tokenizer("Hello, my name is", return_tensors="pt")
outputs = model.generate(inputs.input_ids, max_length=50)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
The model was fine-tuned on 100 ebooks about computational linguistics, preprocessed and tokenized for training.
The text data was tokenized using the AutoTokenizer from the transformers library with a maximum token length of 128.
Evaluation was performed on a subset of the training data held out for validation purposes.
Evaluation factors included token accuracy and perplexity on the validation dataset.
Evaluation metrics included perplexity, as it measures the model's ability to predict the next token in a sequence.
[More Information Needed]
The model achieved satisfactory results for text generation tasks based on the validation metrics.
[More Information Needed]
Carbon emissions can be estimated using the Machine Learning Impact calculator presented in Lacoste et al. (2019).
The model is a distilled version of GPT-2, fine-tuned for text generation tasks.
Training was performed on two NVIDIA GeForce RTX 4090 GPUs.
transformers, torch, safetensors