Spaces:
Sleeping
Sleeping
Ashish Soni
commited on
Update app.py
Browse filesadd GPU to the pipeline object
app.py
CHANGED
@@ -2,7 +2,7 @@ import gradio as gr
|
|
2 |
import spaces
|
3 |
from transformers import pipeline
|
4 |
|
5 |
-
get_completion = pipeline("summarization", model="sshleifer/distilbart-cnn-12-6")
|
6 |
|
7 |
@spaces.GPU(duration=120)
|
8 |
def summarize(input):
|
|
|
2 |
import spaces
|
3 |
from transformers import pipeline
|
4 |
|
5 |
+
get_completion = pipeline("summarization", model="sshleifer/distilbart-cnn-12-6", device=0)
|
6 |
|
7 |
@spaces.GPU(duration=120)
|
8 |
def summarize(input):
|