Spaces:
Runtime error
Runtime error
Update function.py
Browse files- function.py +1 -1
function.py
CHANGED
@@ -22,7 +22,7 @@ def bart():
|
|
22 |
def t5():
|
23 |
''' Loading t5 model using pipeline api '''
|
24 |
summarizer = pipeline("summarization", model="t5-base", tokenizer="t5-base")
|
25 |
-
return
|
26 |
@st.cache(allow_output_mutation=True)
|
27 |
def ssr():
|
28 |
''' Loading ssr model using pipeline api '''
|
|
|
22 |
def t5():
|
23 |
''' Loading t5 model using pipeline api '''
|
24 |
summarizer = pipeline("summarization", model="t5-base", tokenizer="t5-base")
|
25 |
+
return summarizer
|
26 |
@st.cache(allow_output_mutation=True)
|
27 |
def ssr():
|
28 |
''' Loading ssr model using pipeline api '''
|