Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yoyololicon/lap-challenge-entry
https://github.com/yoyololicon/lap-challenge-entry
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/yoyololicon/lap-challenge-entry
- Owner: yoyololicon
- Created: 2024-06-21T06:36:18.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-06-22T13:23:08.000Z (5 months ago)
- Last Synced: 2024-07-06T13:24:00.540Z (4 months ago)
- Language: Python
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Simulate test data
Download SONICOM HRTFs and put them in the same folder (e.g., `./data/`).
```bash
python simulate_data.py data sim_lv1 --regexp "*CompMinPhase_48kHz.sofa" --lvl 1
```## Upsample the low-resolution data
### 100 points
```bash
python upsample.py sim_lv1 pred_lv1 --sph-order 15
```### 19 points
```bash
python upsample.py sim_lv2 pred_lv2 --sph-order 4
```### 5 points
```bash
python upsample.py sim_lv3 pred_lv3 --sph-order 4 --use-rigid-toa --minphase
```### 3 points
```bash
python upsample.py sim_lv4 pred_lv4 --sph-order 2 --use-rigid-toa --lr-augment
```## Evaluate the results
```bash
python eval.py pred_lv1 data
python eval.py pred_lv2 data
python eval.py pred_lv3 data
python eval.py pred_lv4 data
```