Leacb4 commited on
Commit
a48e661
·
verified ·
1 Parent(s): e647a2e

Upload config.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.py +12 -0
config.py ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import torch
2
+
3
+ local_dataset_path = "data/data_with_local_paths.csv"
4
+ color_model_path = "models/color_model.pt"
5
+ hierarchy_model_path = "models/hierarchy_model.pth"
6
+ main_model_path = "models/laion_explicable_model.pth"
7
+
8
+ column_local_image_path = 'local_image_path'
9
+ hierarchy_emb_dim = 64
10
+ color_emb_dim = 16
11
+
12
+ device = torch.device("mps")