Arjun-G-Ravi
commited on
Commit
•
f27df4b
1
Parent(s):
6fc7ce0
Update README.md
Browse files
README.md
CHANGED
@@ -28,6 +28,39 @@ base_model: gpt2
|
|
28 |
|
29 |
## Examples
|
30 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
|
32 |
## Bias, Risks, and Limitations
|
33 |
|
@@ -44,8 +77,31 @@ The ideal format for inference is:
|
|
44 |
```
|
45 |
Replace {question} with the question of your choice.
|
46 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
|
48 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
|
50 |
-
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
51 |
|
|
|
28 |
|
29 |
## Examples
|
30 |
|
31 |
+
1. Give me tips to be healthy
|
32 |
+
```
|
33 |
+
Here are some tips to be healthy:
|
34 |
+
- Eat a balanced diet that includes plenty of fruits, vegetables, whole grains, lean proteins, and healthy fats.
|
35 |
+
- Exercise regularly to maintain a healthy weight and reduce the risk of developing any health issues.
|
36 |
+
- Get enough sleep and stay hydrated by drinking plenty of water.
|
37 |
+
- Get enough fiber and healthy fats to support your overall health and wellbeing.
|
38 |
+
- Practice mindful breathing and avoid activities that can increase stress.
|
39 |
+
- Get enough sleep and maintain a healthy weight.
|
40 |
+
```
|
41 |
+
|
42 |
+
2. Write a poem on cows
|
43 |
+
```
|
44 |
+
Cows are one of the most beloved animals in the world,
|
45 |
+
They live in lush green fields and care for the ground.
|
46 |
+
Their milk is a sweet beverage,
|
47 |
+
They live in a world of peace and tranquility.
|
48 |
+
|
49 |
+
Though cows may seem small in comparison,
|
50 |
+
They have a special bond with their owners.
|
51 |
+
They care for their cows, and they do it right.
|
52 |
+
The milk they produce is vital,
|
53 |
+
They have a special place in our hearts.
|
54 |
+
They are loyal friends, and they will never be defeated.
|
55 |
+
Cows are a source of joy and joy,
|
56 |
+
They will never be out of place again.
|
57 |
+
```
|
58 |
+
|
59 |
+
3. Which is the fastest animal in the world
|
60 |
+
```
|
61 |
+
The cheetah is the fastest animal in the world.
|
62 |
+
```
|
63 |
+
|
64 |
|
65 |
## Bias, Risks, and Limitations
|
66 |
|
|
|
77 |
```
|
78 |
Replace {question} with the question of your choice.
|
79 |
|
80 |
+
The parameters I used for inference are:
|
81 |
+
```
|
82 |
+
top_k=20
|
83 |
+
top_p=.9
|
84 |
+
temperature = .7
|
85 |
+
```
|
86 |
+
|
87 |
+
|
88 |
+
## References used
|
89 |
+
|
90 |
+
1. GPT2
|
91 |
+
@article{radford2019language,
|
92 |
+
title={Language Models are Unsupervised Multitask Learners},
|
93 |
+
author={Radford, Alec and Wu, Jeff and Child, Rewon and Luan, David and Amodei, Dario and Sutskever, Ilya},
|
94 |
+
year={2019}
|
95 |
+
}
|
96 |
|
97 |
+
2. tatsu-lab/alpaca
|
98 |
+
@misc{alpaca,
|
99 |
+
author = {Rohan Taori and Ishaan Gulrajani and Tianyi Zhang and Yann Dubois and Xuechen Li and Carlos Guestrin and Percy Liang and Tatsunori B. Hashimoto },
|
100 |
+
title = {Stanford Alpaca: An Instruction-following LLaMA model},
|
101 |
+
year = {2023},
|
102 |
+
publisher = {GitHub},
|
103 |
+
journal = {GitHub repository},
|
104 |
+
howpublished = {\url{https://github.com/tatsu-lab/stanford_alpaca}},
|
105 |
+
}
|
106 |
|
|
|
107 |
|