Commit
·
afc4997
1
Parent(s):
f9f4f08
Update app.py
Browse files
app.py
CHANGED
@@ -150,8 +150,6 @@ import gradio as gr
|
|
150 |
|
151 |
title = "GPT from scratch"
|
152 |
|
153 |
-
description1 = "GPT implementation taken from <a href='https://github.com/Lightning-AI/lit-gpt'>Lit-GPT</a>. It is trained on a samples of the <a href='https://huggingface.co/datasets/togethercomputer/RedPajama-Data-1T-Sample'>RedPajama 1 trillion dataset</a> to understand how GPT's are trained and built. The github link can be found <a href='https://github.com/mkthoma/gpt_from_scratch'>here.</a>"
|
154 |
-
|
155 |
demo = gr.Interface(generate_text,
|
156 |
inputs=[gr.Textbox(label="Enter any prompt ", type="text", value="Once upon a time,"),
|
157 |
gr.Slider(minimum=0, maximum=1, step=0.1, value=0.8, label="Temperature"),
|
|
|
150 |
|
151 |
title = "GPT from scratch"
|
152 |
|
|
|
|
|
153 |
demo = gr.Interface(generate_text,
|
154 |
inputs=[gr.Textbox(label="Enter any prompt ", type="text", value="Once upon a time,"),
|
155 |
gr.Slider(minimum=0, maximum=1, step=0.1, value=0.8, label="Temperature"),
|