├── .env.example ├── .gitignore ├── README.md ├── gpt_pdf_bot ├── __init__.py ├── bot.py ├── ingest.py ├── shared.py └── types.py ├── main.py ├── papers ├── A Few Useful Things to Know about Machine Learning.pdf ├── Hidden Technical Debt in Machine Learning Systems.pdf ├── Machine Learning - The High-Interest Credit Card of Technical Debt.pdf ├── Machine Learning at Scale.pdf ├── Operationalizing Machine Learning - An Interview Study.pdf ├── Rules of Machine Learning - Best Practices for ML Engineering.pdf ├── Software Engineering Practices for Machine Learning.pdf ├── The ML Test Score - A Rubric for ML Production Readiness and Technical Debt Reduction.pdf └── What’s your ML Test Score - A rubric for ML production systems.pdf ├── poetry.lock ├── pyproject.toml ├── static └── example.png └── tests └── __init__.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjreda/scratch-pdf-bot/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | .idea 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjreda/scratch-pdf-bot/HEAD/README.md -------------------------------------------------------------------------------- /gpt_pdf_bot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gpt_pdf_bot/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjreda/scratch-pdf-bot/HEAD/gpt_pdf_bot/bot.py -------------------------------------------------------------------------------- /gpt_pdf_bot/ingest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjreda/scratch-pdf-bot/HEAD/gpt_pdf_bot/ingest.py -------------------------------------------------------------------------------- /gpt_pdf_bot/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjreda/scratch-pdf-bot/HEAD/gpt_pdf_bot/shared.py -------------------------------------------------------------------------------- /gpt_pdf_bot/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjreda/scratch-pdf-bot/HEAD/gpt_pdf_bot/types.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjreda/scratch-pdf-bot/HEAD/main.py -------------------------------------------------------------------------------- /papers/A Few Useful Things to Know about Machine Learning.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjreda/scratch-pdf-bot/HEAD/papers/A Few Useful Things to Know about Machine Learning.pdf -------------------------------------------------------------------------------- /papers/Hidden Technical Debt in Machine Learning Systems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjreda/scratch-pdf-bot/HEAD/papers/Hidden Technical Debt in Machine Learning Systems.pdf -------------------------------------------------------------------------------- /papers/Machine Learning - The High-Interest Credit Card of Technical Debt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjreda/scratch-pdf-bot/HEAD/papers/Machine Learning - The High-Interest Credit Card of Technical Debt.pdf -------------------------------------------------------------------------------- /papers/Machine Learning at Scale.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjreda/scratch-pdf-bot/HEAD/papers/Machine Learning at Scale.pdf -------------------------------------------------------------------------------- /papers/Operationalizing Machine Learning - An Interview Study.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjreda/scratch-pdf-bot/HEAD/papers/Operationalizing Machine Learning - An Interview Study.pdf -------------------------------------------------------------------------------- /papers/Rules of Machine Learning - Best Practices for ML Engineering.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjreda/scratch-pdf-bot/HEAD/papers/Rules of Machine Learning - Best Practices for ML Engineering.pdf -------------------------------------------------------------------------------- /papers/Software Engineering Practices for Machine Learning.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjreda/scratch-pdf-bot/HEAD/papers/Software Engineering Practices for Machine Learning.pdf -------------------------------------------------------------------------------- /papers/The ML Test Score - A Rubric for ML Production Readiness and Technical Debt Reduction.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjreda/scratch-pdf-bot/HEAD/papers/The ML Test Score - A Rubric for ML Production Readiness and Technical Debt Reduction.pdf -------------------------------------------------------------------------------- /papers/What’s your ML Test Score - A rubric for ML production systems.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjreda/scratch-pdf-bot/HEAD/papers/What’s your ML Test Score - A rubric for ML production systems.pdf -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjreda/scratch-pdf-bot/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjreda/scratch-pdf-bot/HEAD/pyproject.toml -------------------------------------------------------------------------------- /static/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjreda/scratch-pdf-bot/HEAD/static/example.png -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------