SH
SH
## Issue verification failure using the current public key ``` s3lab@iMac checksec.sh % openssl dgst -sha256 -verify checksec.pub -signature checksec.sig checksec Verification Failure ```
https://github.com/jerinjacobk/armv8_pmu_cycle_counter_el0/blob/bae0771e2551f66a7bff964bec158b18b0fcd2d4/pmu_el0_cycle_counter.c#L95
[Here](https://github.com/JonasGeiping/breaching/blob/a51fba6b637207adbfbbde3a117eed2391c515ce/breaching/cases/data/datasets_vision.py#L280) uses wrong hardcoded md5, e.g. for tinyimagenet, md5 for val dataset is: c5d7f7e71e4c0fc882b9ca5ce70ffed2, this results re-extracting every time when loading the dataset.
[Here](https://github.com/JonasGeiping/breaching/blob/main/breaching/config/case/data/TinyImageNet.yaml#L35) you would need to change 'validation' to 'val' to match [here](https://github.com/JonasGeiping/breaching/blob/main/breaching/cases/data/datasets_vision.py#L286). Otherwise the load will fail.
Hi, Start from [here](https://github.com/Lightning-AI/torchmetrics/issues/789) `compute_on_step` is deprecated. New version of torchmetrics will rase `ValueError: Unexpected keyword arguments: compute_on_step.` Quick fix is to remove them to be compatible with the new...