Spaces:
Sleeping
Sleeping
xiaozhou0822
commited on
Commit
•
274c222
1
Parent(s):
6d23c86
Update app.py
Browse files
app.py
CHANGED
@@ -1,16 +1,5 @@
|
|
1 |
import streamlit as st
|
2 |
-
|
3 |
-
|
4 |
-
"lllyasviel/sd_control_collection"
|
5 |
-
|
6 |
-
'meta-llama/Llama-2-7b-chat-hf'
|
7 |
-
|
8 |
-
222 WizardLM/WizardCoder-Python-34B-V1.0 111
|
9 |
-
|
10 |
-
"bert-base-uncased111"
|
11 |
-
|
12 |
-
falcon-180B-chat
|
13 |
-
|
14 |
|
15 |
x = st.slider('Select a value')
|
16 |
st.write(x, 'squared is', x * x)
|
|
|
1 |
import streamlit as st
|
2 |
+
model_id = 'codellama/CodeLlama-13b-Instruct-hf'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
|
4 |
x = st.slider('Select a value')
|
5 |
st.write(x, 'squared is', x * x)
|