gitextract_wz5d105z/ ├── .gitignore ├── LICENSE ├── README.md ├── convert_output.py ├── insanely_fast_whisper_colab.ipynb ├── notebooks/ │ ├── infer_faster_whisper_large_v2.ipynb │ └── infer_transformers_whisper_large_v2.ipynb ├── pyproject.toml ├── src/ │ └── insanely_fast_whisper/ │ ├── __init__.py │ ├── cli.py │ └── utils/ │ ├── __init__.py │ ├── diarization_pipeline.py │ ├── diarize.py │ └── result.py └── tests/ └── __init__.py