Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
from transformers import AutoTokenizer, MT5ForConditionalGeneration
|
|
|
2 |
model = MT5ForConditionalGeneration.from_pretrained("google/mt5-base")
|
3 |
-
|
4 |
|
|
|
1 |
from transformers import AutoTokenizer, MT5ForConditionalGeneration
|
2 |
+
import streamlit as st
|
3 |
model = MT5ForConditionalGeneration.from_pretrained("google/mt5-base")
|
4 |
+
st.write(model)
|
5 |
|