Skip to content

Commit 585ccfc

Browse files
minor fixes
1 parent aa670bc commit 585ccfc

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Currently, following datasets and models are supported.
7171
* set hyperparameters in `config_bayesian.py`
7272

7373

74-
#### Bayesian
74+
#### Frequentist
7575

7676
`python main_frequentist.py`
7777
* set hyperparameters in `config_frequentist.py`
@@ -108,4 +108,4 @@ If you are using this work, please cite:
108108
}
109109
```
110110

111-
--------------------------------------------------------------------------------------------------------
111+
--------------------------------------------------------------------------------------------------------

config_bayesian.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
############### Configuration file for Bayesian ###############
2-
n_epochs = 150
2+
n_epochs = 50
33
lr_start = 0.001
44
num_workers = 4
55
valid_size = 0.2

config_frequentist.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
############### Configuration file for Frequentist ###############
2-
n_epochs = 150
2+
n_epochs = 50
33
lr = 0.01
4-
beta_type = "Standard"
54
num_workers = 4
65
valid_size = 0.2
76
batch_size = 256

0 commit comments

Comments
 (0)