Spaces:
Sleeping
Sleeping
upped gradio version
Browse files
README.md
CHANGED
@@ -4,7 +4,7 @@ emoji: 😻
|
|
4 |
colorFrom: blue
|
5 |
colorTo: yellow
|
6 |
sdk: gradio
|
7 |
-
sdk_version:
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
hf_oauth: true
|
|
|
4 |
colorFrom: blue
|
5 |
colorTo: yellow
|
6 |
sdk: gradio
|
7 |
+
sdk_version: 5.12.0
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
hf_oauth: true
|
app.py
CHANGED
@@ -106,8 +106,8 @@ def no_op_decorator(func):
|
|
106 |
return wrapper
|
107 |
|
108 |
# Decide which decorator to use based on environment
|
109 |
-
decorator_to_use = spaces.GPU(
|
110 |
-
|
111 |
|
112 |
@decorator_to_use
|
113 |
def create_embeddings(texts_to_embedd):
|
|
|
106 |
return wrapper
|
107 |
|
108 |
# Decide which decorator to use based on environment
|
109 |
+
decorator_to_use = spaces.GPU() if is_running_in_hf_space() else no_op_decorator
|
110 |
+
#duration=120
|
111 |
|
112 |
@decorator_to_use
|
113 |
def create_embeddings(texts_to_embedd):
|