NLPV commited on
Commit
38322ca
·
verified ·
1 Parent(s): dfbed35

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -18,8 +18,8 @@ import whisper
18
  DEVICE = "cuda" if torch.cuda.is_available() else "cpu"
19
 
20
  # Directories for transcripts
21
- #BASE_DIR = os.getcwd()
22
- BASE_DIR = "/tmp"
23
 
24
  TRANSCRIPTS_FOLDER = os.path.join(BASE_DIR, 'transcripts')
25
 
 
18
  DEVICE = "cuda" if torch.cuda.is_available() else "cpu"
19
 
20
  # Directories for transcripts
21
+ BASE_DIR = os.getcwd()
22
+ #BASE_DIR = "/tmp"
23
 
24
  TRANSCRIPTS_FOLDER = os.path.join(BASE_DIR, 'transcripts')
25