pediot commited on
Commit
074eb54
·
1 Parent(s): 4b8fc3b

Add debug print statement in encoder.py to log HF_TOKEN for troubleshooting purposes.

Browse files
Files changed (1) hide show
  1. src/encoder.py +1 -0
src/encoder.py CHANGED
@@ -8,6 +8,7 @@ from transformers import AutoModel, AutoProcessor
8
 
9
  MODEL_NAME = "Marqo/marqo-fashionCLIP"
10
  HF_TOKEN = os.environ.get("HF_TOKEN")
 
11
 
12
 
13
  class FashionCLIPEncoder:
 
8
 
9
  MODEL_NAME = "Marqo/marqo-fashionCLIP"
10
  HF_TOKEN = os.environ.get("HF_TOKEN")
11
+ print(HF_TOKEN)
12
 
13
 
14
  class FashionCLIPEncoder: