ubermenchh commited on
Commit
a0c6010
1 Parent(s): 70bb78b

added config file

Browse files
Files changed (1) hide show
  1. config.json +17 -0
config.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "clip_model": "my_clip_model",
3
+ "text_model": "gpt2",
4
+ "num_workers": 2,
5
+ "epochs": 20,
6
+ "lr": 0.001,
7
+ "k": 0.33,
8
+ "batch_size_exp": 6,
9
+ "ep_len": 4,
10
+ "num_layers": 6,
11
+ "n_heads": 16,
12
+ "forward_expansion": 4,
13
+ "max_len": 40,
14
+ "dropout": 0.1,
15
+ "weights_dir": "./weights",
16
+ "device": "cuda"
17
+ }