anzorq commited on
Commit
0d7ddc0
·
1 Parent(s): 7709b51

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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']