https://github.com/evgenyneu/ai_teaches_me_ml
This is my logbook from my interactive lessons where ChatGPT teaches me ML
https://github.com/evgenyneu/ai_teaches_me_ml
Last synced: about 2 months ago
JSON representation
This is my logbook from my interactive lessons where ChatGPT teaches me ML
- Host: GitHub
- URL: https://github.com/evgenyneu/ai_teaches_me_ml
- Owner: evgenyneu
- Created: 2023-05-05T08:27:12.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-03T01:39:30.000Z (almost 2 years ago)
- Last Synced: 2025-01-10T14:42:42.620Z (3 months ago)
- Language: Jupyter Notebook
- Size: 941 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AI teaches me AI
This is my logbook from my interactive lessons where ChatGPT teaches me ML
The logs from each day are located in year/month/day directories. The directories have 'a' prefix, because Python does not like directories that are just numbers for its modules.
## Python setup
See [docs/python_setup.md](docs/python_setup.md).
## VSCode search regexp
Finds markdown blocks in .py file exported from a Jupyter notebook. I used this to strip markdown blocks and keep only python code blocks, so I can paste it to ChatGPT to "refresh" its memory.
```regexp
^#\s*%%\s*\[markdown\][\s\S]*?\n\n
```