Spaces:
Runtime error
Runtime error
Commit
·
a596f98
1
Parent(s):
9c6fc15
Test #B
Browse files
app.py
CHANGED
@@ -1,6 +1,9 @@
|
|
1 |
import streamlit as st
|
2 |
|
3 |
@st.cache
|
|
|
|
|
|
|
4 |
def load_model():
|
5 |
model = Megatron()
|
6 |
return model
|
|
|
1 |
import streamlit as st
|
2 |
|
3 |
@st.cache
|
4 |
+
|
5 |
+
import sys
|
6 |
+
sys.setrecursionlimit(100000)
|
7 |
def load_model():
|
8 |
model = Megatron()
|
9 |
return model
|