LugatitDistilBert / README.md
LugatitTurk's picture
Update README.md
b52446a verified
metadata
license: mit
language:
  - tr
library_name: transformers
pipeline_tag: text-classification
metrics:
  - accuracy

tags: - generated_from_trainer library_name: transformers

Your Model Name

LugatitDistilBert

How to use

You can use this model directly with the transformers library:

from transformers import AutoTokenizer, AutoModelForSequenceClassification

tokenizer = AutoTokenizer.from_pretrained("LugatitTurk/LugatitDistilBert")
model = AutoModelForSequenceClassification.from_pretrained("LugatitTurk/LugatitDistilBert")

inputs = tokenizer("Hello, my dog is cute", return_tensors="pt")
outputs = model(**inputs)