gitextract_r0d2sw0_/ ├── .github/ │ └── workflows/ │ └── pypi.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── beat_this/ │ ├── __init__.py │ ├── cli.py │ ├── dataset/ │ │ ├── __init__.py │ │ ├── augment.py │ │ ├── dataset.py │ │ └── mmnpz.py │ ├── inference.py │ ├── model/ │ │ ├── __init__.py │ │ ├── beat_tracker.py │ │ ├── loss.py │ │ ├── pl_module.py │ │ ├── postprocessor.py │ │ └── roformer.py │ ├── preprocessing.py │ └── utils.py ├── beat_this_example.ipynb ├── hubconf.py ├── launch_scripts/ │ ├── clean_checkpoints.py │ ├── compute_paper_metrics.py │ ├── preprocess_audio.py │ └── train.py ├── pyproject.toml ├── requirements.txt └── tests/ └── test_inference.py