- googleapis/python-bigquery-pandas: Google BigQuery connector for pandas
- Mimino666/langdetect: Port of Google's language-detection library to Python.
- nalepae/pandarallel: A simple and efficient tool to parallelize Pandas operations on all available CPUs
- minimaxir/gpt3-blog-title-optimizer: Python code for building a GPT-3 based technical blog post optimizer.
- harrisonjansma/Medium_Scraper: The Selenium scraper that collected a million stories from Medium.com
- testdrivenio/concurrent-web-scraping: Building a Concurrent Web Scraper with Python and Selenium
- java - Selenium webdriver: Modifying navigator.webdriver flag to prevent selenium detection - Stack Overflow
- Multi-threaded Web Scraping with Selenium | by Rendra Sukana | Dev Genius
- What I Learned from Scraping 15k Data Science Articles on Medium (got more data here)
- Raise the Bar of Code Quality in Python Projects | by Baris Sari | Level Up Coding
- How I start every new Python backend API project
- OpenAI family of models
- Pricing
- Fine-tuning
- Fine-tuned classification example
- Create fine-tune API docs
- Completion create API docs
- file upload API docs
- What is sampling temperature?
- Fine-Tuning Tips and Exploration on OpenAI's GPT-3 – Weights & Biases (notebook)
- Fine-tune OpenAI GPT-3 on your own data and track results with W&B
├── LICENSE
├── Makefile
├── README.md
├── requirements.txt
├── setup.py
├── data
│ ├── 0_external
│ ├── 0_raw
│ ├── 1_interim
│ └── 2_final
├── docs
│ └── README.md
├── notebooks
│ ├── 01_eda_cleaning.ipynb
│ ├── 02_GPT3_finetune_wb.ipynb
│ ├── 02_GPT3_metrics.ipynb
│ ├── 03_GPT3_log_inference.ipynb
│ └── 03_GPT3_prompting.ipynb
├── reports
│ └── figures
├── src
│ ├── __init__.py
│ ├── app
│ │ ├── Dockerfile
│ │ └── main.py
│ ├── data
│ │ ├── scraper.py
│ │ └── scraper_utils.py
│ ├── features
│ │ └── build_features.py
│ ├── models
│ │ ├── title_optimizer.py
└── tox.ini