Update app.py
Browse files
app.py
CHANGED
@@ -1,8 +1,11 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
#
|
4 |
api = gr.Interface.load("models/bigscience/bloom")
|
5 |
-
|
|
|
|
|
|
|
6 |
|
7 |
def complete_with_gpt(text):
|
8 |
# Use the last 50 characters of the text as context
|
@@ -36,12 +39,6 @@ English: Hi my name is Aaron. I am a computer scientist and senior principal en
|
|
36 |
Sanskrit: नमस्ते, मेरा नाम है Aaron. मैं एक कंप्यूटर वैज्ञानिक और वरिष्ठ प्रमुख इंजीनियर हूँ।
|
37 |
French: Bonjour, je m'appelle Aaron. Je suis un scientifique en informatique et un ingénieur senior.
|
38 |
|
39 |
-
# Big Science on Papers with Code:
|
40 |
-
https://paperswithcode.com/paper/bloom-a-176b-parameter-open-access
|
41 |
-
|
42 |
-
# Exciting AI Developments! 🤖💻🔬
|
43 |
-
|
44 |
-
## Here is an outline of exciting recent developments in AI:
|
45 |
|
46 |
## Language Models 🗣️
|
47 |
|
|
|
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
|
|
|
39 |
Sanskrit: नमस्ते, मेरा नाम है Aaron. मैं एक कंप्यूटर वैज्ञानिक और वरिष्ठ प्रमुख इंजीनियर हूँ।
|
40 |
French: Bonjour, je m'appelle Aaron. Je suis un scientifique en informatique et un ingénieur senior.
|
41 |
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
|
43 |
## Language Models 🗣️
|
44 |
|