eepj commited on
Commit
4d8b486
·
verified ·
1 Parent(s): 041b6a9

Replace HF repo name with hardcoded string

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -7,7 +7,7 @@ import os
7
  import utils
8
 
9
  # Get pipeline from Hugging Face Hub
10
- pipe = pipeline("translation", model=os.environ["HF_REPO_ID"])
11
  # Model to enter evaluation mode
12
  pipe.model.eval()
13
 
 
7
  import utils
8
 
9
  # Get pipeline from Hugging Face Hub
10
+ pipe = pipeline("translation", model="eepj/wstcg-mt-ja-en")
11
  # Model to enter evaluation mode
12
  pipe.model.eval()
13