├── 01_gen_ai.py ├── 02_language_models.py ├── 03_tokens.py ├── 04_n_grams.py ├── 05_text_classification.py ├── 06_machine_translation.py ├── 07_spell_check.py ├── 08_vibes.py ├── LICENSE └── README.md /01_gen_ai.py: -------------------------------------------------------------------------------- 1 | # Gen AI 🤖 2 | # Codédex 3 | 4 | print("I love to use Google Gemini for poetry") 5 | -------------------------------------------------------------------------------- /02_language_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedex-io/ai-101/HEAD/02_language_models.py -------------------------------------------------------------------------------- /03_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedex-io/ai-101/HEAD/03_tokens.py -------------------------------------------------------------------------------- /04_n_grams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedex-io/ai-101/HEAD/04_n_grams.py -------------------------------------------------------------------------------- /05_text_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedex-io/ai-101/HEAD/05_text_classification.py -------------------------------------------------------------------------------- /06_machine_translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedex-io/ai-101/HEAD/06_machine_translation.py -------------------------------------------------------------------------------- /07_spell_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedex-io/ai-101/HEAD/07_spell_check.py -------------------------------------------------------------------------------- /08_vibes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedex-io/ai-101/HEAD/08_vibes.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedex-io/ai-101/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedex-io/ai-101/HEAD/README.md --------------------------------------------------------------------------------