Update app.py
Browse files
app.py
CHANGED
|
@@ -48,8 +48,8 @@ if __name__ == '__main__':
|
|
| 48 |
gr.Markdown(
|
| 49 |
"""
|
| 50 |
# NanoGPT
|
| 51 |
-
- This application is based on the nanoGPT model trained
|
| 52 |
-
- Model is trained to output
|
| 53 |
- It is the first step in the training ChatGPT where the aim of the model is to generate text
|
| 54 |
- This model is a Decoder only model
|
| 55 |
- The model prints out next character based on the previous characters
|
|
@@ -59,7 +59,7 @@ if __name__ == '__main__':
|
|
| 59 |
|
| 60 |
# Input
|
| 61 |
gradcam_inputs = [gr.Slider(1, 3000, value=100,
|
| 62 |
-
label="Enter number of Characters to be generated by the model in the
|
| 63 |
|
| 64 |
# Output
|
| 65 |
gradcam_outputs = [gr.Text()]
|
|
|
|
| 48 |
gr.Markdown(
|
| 49 |
"""
|
| 50 |
# NanoGPT
|
| 51 |
+
- This application is based on the nanoGPT model trained in this [video](https://www.youtube.com/watch?v=kCc8FmEb1nY&ab_channel=AndrejKarpathy) by Andrej Karpathy
|
| 52 |
+
- Model is trained to output Shakespeare text
|
| 53 |
- It is the first step in the training ChatGPT where the aim of the model is to generate text
|
| 54 |
- This model is a Decoder only model
|
| 55 |
- The model prints out next character based on the previous characters
|
|
|
|
| 59 |
|
| 60 |
# Input
|
| 61 |
gradcam_inputs = [gr.Slider(1, 3000, value=100,
|
| 62 |
+
label="Enter number of Characters to be generated by the model in the Shakespeare style")]
|
| 63 |
|
| 64 |
# Output
|
| 65 |
gradcam_outputs = [gr.Text()]
|