Update app.py
Browse files
app.py
CHANGED
@@ -1,12 +1,15 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
# Big Science Bloom is a 176B Parameter Large Language ML Model.
|
4 |
-
api = gr.Interface.load("models/bigscience/bloom")
|
5 |
gr.Markdown("""
|
|
|
|
|
|
|
6 |
# Big Science Papers and Code - Exciting AI Developments! π€π»π¬
|
7 |
https://paperswithcode.com/paper/bloom-a-176b-parameter-open-access
|
8 |
""")
|
9 |
|
|
|
|
|
10 |
def complete_with_gpt(text):
|
11 |
# Use the last 50 characters of the text as context
|
12 |
# return text[:-50] + api(text[-50:])
|
|
|
1 |
import gradio as gr
|
2 |
|
|
|
|
|
3 |
gr.Markdown("""
|
4 |
+
# Big Science Bloom is a 176B Parameter Large Language ML Model.
|
5 |
+
https://www.youtube.com/watch?v=wA8rjKueB3Q
|
6 |
+
https://www.youtube.com/watch?v=2MBJOuVq380&t=241s
|
7 |
# Big Science Papers and Code - Exciting AI Developments! π€π»π¬
|
8 |
https://paperswithcode.com/paper/bloom-a-176b-parameter-open-access
|
9 |
""")
|
10 |
|
11 |
+
api = gr.Interface.load("models/bigscience/bloom")
|
12 |
+
|
13 |
def complete_with_gpt(text):
|
14 |
# Use the last 50 characters of the text as context
|
15 |
# return text[:-50] + api(text[-50:])
|