Shilpaj commited on
Commit
09d89c5
·
1 Parent(s): cfbc953

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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 [in this video](https://www.youtube.com/watch?v=kCc8FmEb1nY&ab_channel=AndrejKarpathy) by Andrej Karpathy
52
- - Model is trained to output Shakesphere 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,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 Shakesphere style")]
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()]