├── .gitignore ├── LICENSE ├── README.md ├── __pycache__ └── templates.cpython-310.pyc ├── paper_to_podcast.py ├── pyproject.toml ├── requirements.txt ├── sample_papers ├── 1729849776126.pdf ├── 1730113104257.pdf ├── 2407.21783v2.pdf └── 2410.19706.pdf ├── sample_podcasts ├── NEAR INFINITE BATCH SIZE SCALING FOR CONTRASTIVE LOSS.mp3 └── The Llama 3 Herd of Models.mp3 ├── templates.py └── utils ├── __pycache__ ├── audio_gen.cpython-310.pyc └── script.cpython-310.pyc ├── audio_gen.py └── script.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azzedde/paper_to_podcast/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azzedde/paper_to_podcast/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azzedde/paper_to_podcast/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/templates.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azzedde/paper_to_podcast/HEAD/__pycache__/templates.cpython-310.pyc -------------------------------------------------------------------------------- /paper_to_podcast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azzedde/paper_to_podcast/HEAD/paper_to_podcast.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azzedde/paper_to_podcast/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azzedde/paper_to_podcast/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample_papers/1729849776126.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azzedde/paper_to_podcast/HEAD/sample_papers/1729849776126.pdf -------------------------------------------------------------------------------- /sample_papers/1730113104257.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azzedde/paper_to_podcast/HEAD/sample_papers/1730113104257.pdf -------------------------------------------------------------------------------- /sample_papers/2407.21783v2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azzedde/paper_to_podcast/HEAD/sample_papers/2407.21783v2.pdf -------------------------------------------------------------------------------- /sample_papers/2410.19706.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azzedde/paper_to_podcast/HEAD/sample_papers/2410.19706.pdf -------------------------------------------------------------------------------- /sample_podcasts/NEAR INFINITE BATCH SIZE SCALING FOR CONTRASTIVE LOSS.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azzedde/paper_to_podcast/HEAD/sample_podcasts/NEAR INFINITE BATCH SIZE SCALING FOR CONTRASTIVE LOSS.mp3 -------------------------------------------------------------------------------- /sample_podcasts/The Llama 3 Herd of Models.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azzedde/paper_to_podcast/HEAD/sample_podcasts/The Llama 3 Herd of Models.mp3 -------------------------------------------------------------------------------- /templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azzedde/paper_to_podcast/HEAD/templates.py -------------------------------------------------------------------------------- /utils/__pycache__/audio_gen.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azzedde/paper_to_podcast/HEAD/utils/__pycache__/audio_gen.cpython-310.pyc -------------------------------------------------------------------------------- /utils/__pycache__/script.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azzedde/paper_to_podcast/HEAD/utils/__pycache__/script.cpython-310.pyc -------------------------------------------------------------------------------- /utils/audio_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azzedde/paper_to_podcast/HEAD/utils/audio_gen.py -------------------------------------------------------------------------------- /utils/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azzedde/paper_to_podcast/HEAD/utils/script.py --------------------------------------------------------------------------------