vision
classification
uncertainty
o-laurent commited on
Commit
7c063d0
1 Parent(s): a9846a4

Add checkpoint :sparkles:

Browse files
Files changed (4) hide show
  1. README.md +29 -0
  2. config.yaml +68 -0
  3. pe_resnet_50_1k.ckpt +3 -0
  4. performance.md +13 -0
README.md CHANGED
@@ -1,3 +1,32 @@
1
  ---
2
  license: apache-2.0
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ tags:
4
+ - vision
5
+ - classification
6
+ - uncertainty
7
+ datasets:
8
+ - imagenet-1k
9
  ---
10
+
11
+ # Packed-Ensembles trained on ImageNet-1k
12
+
13
+ ## How to use
14
+
15
+ Download [TorchUncertainty](https://torch-uncertainty.github.io/) to use this model.
16
+
17
+ ## License
18
+
19
+ These weights are provided under the Apache 2.0 license.
20
+
21
+ ## Citation
22
+
23
+ If you find these weights interesting, please consider citing our [paper](https://arxiv.org/abs/2210.09184):
24
+
25
+ ```text
26
+ @inproceedings{laurent2023packed,
27
+ title={Packed-Ensembles for Efficient Uncertainty Estimation},
28
+ author={Laurent, Olivier and Lafage, Adrien and Tartaglione, Enzo and Daniel, Geoffrey and Martinez, Jean-Marc and Bursuc, Andrei and Franchi, Gianni},
29
+ booktitle={ICLR},
30
+ year={2023}
31
+ }
32
+ ```
config.yaml ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ seed: null
2
+ multi_gpu: true
3
+ logger: true
4
+ checkpoint_callback: null
5
+ enable_checkpointing: true
6
+ default_root_dir: null
7
+ gradient_clip_val: null
8
+ gradient_clip_algorithm: null
9
+ process_position: 0
10
+ num_nodes: 1
11
+ num_processes: null
12
+ devices: null
13
+ gpus: -1
14
+ auto_select_gpus: false
15
+ tpu_cores: null
16
+ ipus: null
17
+ log_gpu_memory: null
18
+ progress_bar_refresh_rate: null
19
+ enable_progress_bar: true
20
+ overfit_batches: 0.0
21
+ track_grad_norm: -1
22
+ check_val_every_n_epoch: 1
23
+ fast_dev_run: false
24
+ accumulate_grad_batches: null
25
+ max_epochs: 105
26
+ min_epochs: null
27
+ max_steps: -1
28
+ min_steps: null
29
+ max_time: null
30
+ limit_train_batches: null
31
+ limit_val_batches: null
32
+ limit_test_batches: null
33
+ limit_predict_batches: null
34
+ val_check_interval: null
35
+ flush_logs_every_n_steps: null
36
+ log_every_n_steps: 50
37
+ accelerator: gpu
38
+ strategy: "A3"
39
+ sync_batchnorm: true
40
+ precision: 16
41
+ enable_model_summary: true
42
+ weights_summary: top
43
+ weights_save_path: null
44
+ num_sanity_val_steps: 2
45
+ resume_from_checkpoint: null
46
+ profiler: null
47
+ benchmark: true
48
+ deterministic: false
49
+ reload_dataloaders_every_n_epochs: 0
50
+ auto_lr_find: false
51
+ replace_sampler_ddp: true
52
+ detect_anomaly: false
53
+ auto_scale_batch_size: false
54
+ prepare_data_per_node: null
55
+ plugins: null
56
+ amp_backend: native
57
+ amp_level: null
58
+ move_metrics_to_cpu: false
59
+ multiple_trainloader_mode: max_size_cycle
60
+ stochastic_weight_avg: false
61
+ terminate_on_nan: null
62
+ batch_size: 1024
63
+ val_split: 0
64
+ num_workers: 12
65
+ num_estimators: 4
66
+ augmentation: 3
67
+ gamma: 1
68
+ resnet: '50'
pe_resnet_50_1k.ckpt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5efd244d53e723c77af637f839718debe5e6924fff677ba92629c0f17ef61adb
3
+ size 237086865
performance.md ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Performance of this model
2
+
3
+ ## ImageNet-1k
4
+
5
+ Accuracy: 0.7786
6
+
7
+ NLL: 1.0376
8
+
9
+ ECE: 0.1795
10
+
11
+ Entropy: 2.1925
12
+
13
+ MI: 0.1322