Update app.py
Browse files
app.py
CHANGED
@@ -8,7 +8,7 @@ def save_embeddings(sentences, filename):
|
|
8 |
torch.save(embeddings, filename)
|
9 |
|
10 |
def load_embeddings(filename):
|
11 |
-
return torch.load(filename, map_location=torch.device('cpu'))
|
12 |
|
13 |
def preprocess_space_descriptions(file_path):
|
14 |
encodings = ['utf-8', 'latin-1', 'utf-16']
|
|
|
8 |
torch.save(embeddings, filename)
|
9 |
|
10 |
def load_embeddings(filename):
|
11 |
+
return torch.load(filename, map_location=torch.device('cuda' if torch.cuda.is_available() else 'cpu'))
|
12 |
|
13 |
def preprocess_space_descriptions(file_path):
|
14 |
encodings = ['utf-8', 'latin-1', 'utf-16']
|