Update README.md
Browse files
README.md
CHANGED
@@ -27,18 +27,4 @@ This model provides practical tips and conversational advice specifically tailor
|
|
27 |
|
28 |
The model is trained on a unique dataset that provides insights into conversational techniques and outcomes. You can access the dataset on [Kaggle](https://www.kaggle.com/datasets/adi2606/talking-to-girl/data).
|
29 |
|
30 |
-
## Usage 🚀
|
31 |
-
|
32 |
-
To use this model, simply load it with the Hugging Face library and start generating advice and tips:
|
33 |
-
|
34 |
-
```python
|
35 |
-
from transformers import AutoModelForCausalLM, AutoTokenizer
|
36 |
-
|
37 |
-
tokenizer = AutoTokenizer.from_pretrained("aditya26062003/how-to-talk-to-girls")
|
38 |
-
model = AutoModelForCausalLM.from_pretrained("aditya26062003/how-to-talk-to-girls")
|
39 |
-
|
40 |
-
input_text = "How do I start a conversation with a girl?"
|
41 |
-
inputs = tokenizer(input_text, return_tensors="pt")
|
42 |
-
outputs = model.generate(**inputs)
|
43 |
-
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
|
44 |
|
|
|
27 |
|
28 |
The model is trained on a unique dataset that provides insights into conversational techniques and outcomes. You can access the dataset on [Kaggle](https://www.kaggle.com/datasets/adi2606/talking-to-girl/data).
|
29 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
|