mecha2019 commited on
Commit
5de3d77
1 Parent(s): 10849b8

Upload config.json

Browse files
Files changed (1) hide show
  1. config.json +17 -0
config.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_name": "ViT-B/32",
3
+ "fine_tuned": true,
4
+ "tokenizer": "clip",
5
+ "pretrained_weights_path": "pytorch_model.bin",
6
+ "optimizer": {
7
+ "type": "Adam",
8
+ "learning_rate": 1e-5,
9
+ "betas": [0.9, 0.98],
10
+ "eps": 1e-6,
11
+ "weight_decay": 0.2
12
+ },
13
+ "loss_function": "CrossEntropyLoss",
14
+ "num_epochs": 10,
15
+ "batch_size": 16,
16
+ "device": "cpu"
17
+ }