An open API service indexing awesome lists of open source software.

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

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
```