KushwanthK commited on
Commit
d9af0b6
·
verified ·
1 Parent(s): 1b75632

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -32,9 +32,7 @@ import torch
32
  device = 'cuda' if torch.cuda.is_available() else 'cpu'
33
 
34
  if device != 'cuda':
35
- st.markdown(f"you are using {device}. This is much slower than using "
36
- "a CUDA-enabled GPU. If on colab you can change this by "
37
- "clicking Runtime > change runtime type > GPU.")
38
 
39
  model = SentenceTransformer("all-MiniLM-L6-v2", device=device)
40
  st.divider()
 
32
  device = 'cuda' if torch.cuda.is_available() else 'cpu'
33
 
34
  if device != 'cuda':
35
+ st.markdown(f"Note: Using {device}. Expected slow responses compare to CUDA-enabled GPU. Please be patient thanks")
 
 
36
 
37
  model = SentenceTransformer("all-MiniLM-L6-v2", device=device)
38
  st.divider()