Machine Learning with Python
68.3K subscribers
1.3K photos
95 videos
169 files
954 links
Learn Machine Learning with hands-on Python tutorials, real-world code examples, and clear explanations for researchers and developers.

Admin: @HusseinSheikho || @Hussein_Sheikho
Download Telegram
๐Ÿš€Stanford just completed a must-watch for anyone serious about AI:

๐ŸŽ“ โ€œ๐—–๐— ๐—˜ ๐Ÿฎ๐Ÿต๐Ÿฑ: ๐—ง๐—ฟ๐—ฎ๐—ป๐˜€๐—ณ๐—ผ๐—ฟ๐—บ๐—ฒ๐—ฟ๐˜€ & ๐—Ÿ๐—ฎ๐—ฟ๐—ด๐—ฒ ๐—Ÿ๐—ฎ๐—ป๐—ด๐˜‚๐—ฎ๐—ด๐—ฒ ๐— ๐—ผ๐—ฑ๐—ฒ๐—น๐˜€โ€ is now live entirely on YouTube and itโ€™s pure gold.

If youโ€™re building your AI career, stop scrolling.
This isnโ€™t another surface-level overview. Itโ€™s the clearest, most structured intro to LLMs you could follow, straight from the Stanford Autumn 2025 curriculum.

๐Ÿ“š ๐—ง๐—ผ๐—ฝ๐—ถ๐—ฐ๐˜€ ๐—ฐ๐—ผ๐˜ƒ๐—ฒ๐—ฟ๐—ฒ๐—ฑ ๐—ถ๐—ป๐—ฐ๐—น๐˜‚๐—ฑ๐—ฒ:
โ€ข How Transformers actually work (tokenization, attention, embeddings)
โ€ข Decoding strategies & MoEs
โ€ข LLM finetuning (LoRA, RLHF, supervised)
โ€ข Evaluation techniques (LLM-as-a-judge)
โ€ข Optimization tricks (RoPE, quantization, approximations)
โ€ข Reasoning & scaling
โ€ข Agentic workflows (RAG, tool calling)

๐Ÿง  My workflow: I usually take the transcripts, feed them into NotebookLM, and once Iโ€™ve done the lectures, I replay them during walks or commutes. That combo works wonders for retention.

๐ŸŽฅ Watch these now:

- Lecture 1: https://lnkd.in/dDER-qyp
- Lecture 2: https://lnkd.in/dk-tGUDm
- Lecture 3: https://lnkd.in/drAPdjJY
- Lecture 4: https://lnkd.in/e_RSgMz7
- Lecture 5: https://lnkd.in/eivMA9pe
- Lecture 6: https://lnkd.in/eYwwwMXn
- Lecture 7: https://lnkd.in/eKwkEDXV
- Lecture 8: https://lnkd.in/eEWvyfyK
- Lecture 9: https://lnkd.in/euiKRGaQ

๐Ÿ—“ Do yourself a favor for this 2026: block 2-3 hours per week / llectue and go through them.

If youโ€™re in AI โ€” whether building infra, agents, or apps โ€” this is the foundational course you donโ€™t want to miss.

Letโ€™s level up.
https://t.iss.one/CodeProgrammer ๐Ÿ˜…
Please open Telegram to view this post
VIEW IN TELEGRAM
โค5๐Ÿ‘1
Forwarded from Code With Python
Automatic translator in Python!

We translate a text in a few lines using deep-translator. It supports dozens of languages: from English and Russian to Japanese and Arabic.

Install the library:
pip install deep-translator


Example of use:
from deep_translator import GoogleTranslator

text = "Hello, how are you?"
result = GoogleTranslator(source="ru", target="en").translate(text)

print("Original:", text)
print("Translation:", result)


Mass translation of a list:
texts = ["Hello", "What's your name?", "See you later"]
for t in texts:
    print("โ†’", GoogleTranslator(source="ru", target="es").translate(t))


๐Ÿ”ฅ We get a mini-Google Translate right in Python: you can embed it in a chatbot, use it in notes, or automate work with the API.

๐Ÿšช @DataScience4
Please open Telegram to view this post
VIEW IN TELEGRAM
โค10๐Ÿ”ฅ1
In scientific work, the most time is spent on reading articles, data, and reports.

On GitHub, there is a collection called Awesome AI for Science -ยปยปยป a catalog of AI tools for all stages of research.

Inside:

-ยป working with literature
-ยป data analysis
-ยป turning articles into posters
-ยป automating experiments
-ยป tools for biology, chemistry, physics, and other fields

GitHub: https://github.com/ai-boost/awesome-ai-for-science

The list includes Paper2Poster, MinerU, The AI Scientist, as well as articles, datasets, and frameworks.
In fact, this is a complete set of tools for AI support in scientific research.

๐Ÿ‘‰ https://t.iss.one/CodeProgrammer
Please open Telegram to view this post
VIEW IN TELEGRAM
โค5๐Ÿ‘1๐ŸŽ‰1
Please open Telegram to view this post
VIEW IN TELEGRAM
โค2๐Ÿ‘2