✨ prompt | AI Coding Glossary ✨
📖 The input text or a structured message that tells a generative model what to do.
🏷️ #Python
📖 The input text or a structured message that tells a generative model what to do.
🏷️ #Python
❤2
✨ transformer | AI Coding Glossary ✨
📖 A neural network model that uses self-attention to handle sequences without recurrence or convolutions.
🏷️ #Python
📖 A neural network model that uses self-attention to handle sequences without recurrence or convolutions.
🏷️ #Python
❤1
✨ machine learning | AI Coding Glossary ✨
📖 A subfield of AI that builds models that improve their performance on a task by learning patterns from data.
🏷️ #Python
📖 A subfield of AI that builds models that improve their performance on a task by learning patterns from data.
🏷️ #Python
✨ Quiz: Polars vs pandas: What's the Difference? ✨
📖 Take this quiz to test your knowledge of the Polars vs pandas tutorial and review the key differences between these open-source Python libraries.
🏷️ #intermediate #data-science #python
📖 Take this quiz to test your knowledge of the Polars vs pandas tutorial and review the key differences between these open-source Python libraries.
🏷️ #intermediate #data-science #python
Enjoy our content? Advertise on this channel and reach a highly engaged audience! 👉🏻
It's easy with Telega.io. As the leading platform for native ads and integrations on Telegram, it provides user-friendly and efficient tools for quick and automated ad launches.
⚡️ Place your ad here in three simple steps:
1 Sign up
2 Top up the balance in a convenient way
3 Create your advertising post
If your ad aligns with our content, we’ll gladly publish it.
Start your promotion journey now!
It's easy with Telega.io. As the leading platform for native ads and integrations on Telegram, it provides user-friendly and efficient tools for quick and automated ad launches.
⚡️ Place your ad here in three simple steps:
1 Sign up
2 Top up the balance in a convenient way
3 Create your advertising post
If your ad aligns with our content, we’ll gladly publish it.
Start your promotion journey now!
❤2
✨ neural network | AI Coding Glossary ✨
📖 A computational model composed of layered, interconnected units that learn learn input-to-output mappings.
🏷️ #Python
📖 A computational model composed of layered, interconnected units that learn learn input-to-output mappings.
🏷️ #Python
✨ generative model | AI Coding Glossary ✨
📖 A model that learns a data distribution so it can generate new samples or assign probabilities to observations.
🏷️ #Python
📖 A model that learns a data distribution so it can generate new samples or assign probabilities to observations.
🏷️ #Python
❤2
✨ prompt engineering | AI Coding Glossary ✨
📖 The practice of designing and refining prompts for generative models.
🏷️ #Python
📖 The practice of designing and refining prompts for generative models.
🏷️ #Python
✨ training | AI Coding Glossary ✨
📖 The process of fitting a model’s parameters to data by minimizing a loss function.
🏷️ #Python
📖 The process of fitting a model’s parameters to data by minimizing a loss function.
🏷️ #Python
❤1
✨ system prompt | AI Coding Glossary ✨
📖 A message that establishes a model’s role, goals, constraints, and style before user inputs.
🏷️ #Python
📖 A message that establishes a model’s role, goals, constraints, and style before user inputs.
🏷️ #Python
👍1
✨ hallucination | AI Coding Glossary ✨
📖 When a generative model produces confident but false or unverifiable content and presents it as fact.
🏷️ #Python
📖 When a generative model produces confident but false or unverifiable content and presents it as fact.
🏷️ #Python
👍1
Forwarded from Machine Learning
📌 Python 3.14 and the End of the GIL
🗂 Category: PROGRAMMING
🕒 Date: 2025-10-18 | ⏱️ Read time: 16 min read
Exploring the opportunities and challenges of a GIL-free Python
🗂 Category: PROGRAMMING
🕒 Date: 2025-10-18 | ⏱️ Read time: 16 min read
Exploring the opportunities and challenges of a GIL-free Python
✨ temperature | AI Coding Glossary ✨
📖 A decoding parameter that rescales model logits before sampling.
🏷️ #Python
📖 A decoding parameter that rescales model logits before sampling.
🏷️ #Python
❤1
✨ context engineering | AI Coding Glossary ✨
📖 The systematic design and optimization of the information given to a model at inference time so it can answer effectively.
🏷️ #Python
📖 The systematic design and optimization of the information given to a model at inference time so it can answer effectively.
🏷️ #Python
Forwarded from Free Online Courses
I’m Eng. Hussein Sheikho
Promote your ad across all our listed channels for only $35!
Your ad will be published for 20 days across all our channels,
plus it will be pinned for 7 days
Want your tech channel to grow fast?
You can add your channel to our promo folder for just $20/month —
average growth rate 2000+ subscribers/month
Our Share folder (our channels)
https://t.me/addlist/8_rRW2scgfRhOTc0
Please open Telegram to view this post
VIEW IN TELEGRAM
Telegram
ENG. Hussein Sheikho
Experience in Deep Learning and Computer Vision + Python Project
❤5
Code With Python pinned «⭐️ Hello my advertiser friend! I’m Eng. Hussein Sheikho 👋 and I’m excited to share our special promotional offer with you! 🎯 💥 Promo Offer: Promote your ad across all our listed channels for only $35! 💰 📢 We accept all types and formats of advertisements.…»
✨ context window | AI Coding Glossary ✨
📖 The maximum span of tokens that a language model can consider at once.
🏷️ #Python
📖 The maximum span of tokens that a language model can consider at once.
🏷️ #Python
✨ token | AI Coding Glossary ✨
📖 A minimal unit of text used by NLP systems and language models.
🏷️ #Python
📖 A minimal unit of text used by NLP systems and language models.
🏷️ #Python
✨ When Should You Use .__repr__() vs .__str__() in Python? ✨
📖 Find out when to choose Python's __repr__() vs __str__() in your classes so your objects show helpful information for debugging and user output.
🏷️ #intermediate #best-practices
📖 Find out when to choose Python's __repr__() vs __str__() in your classes so your objects show helpful information for debugging and user output.
🏷️ #intermediate #best-practices
❤4
Clean code tip in Python:
Avoid naive datetime objects — always use those that consider the time zone.
Work with them in UTC, and show the user only in their local timezone.
👉 @DataScience4
Avoid naive datetime objects — always use those that consider the time zone.
Work with them in UTC, and show the user only in their local timezone.
import datetime
from zoneinfo import ZoneInfo
# BAD
now = datetime.datetime.now()
print(now.isoformat())
# 2025-10-21T15:03:07.332217
# GOOD
now = datetime.datetime.now(tz=ZoneInfo("UTC"))
print(now.isoformat())
# 2025-10-21T12:04:22.573590+00:00
print(now.astimezone().isoformat())
# 2025-10-21T15:04:22.573590+03:00
Please open Telegram to view this post
VIEW IN TELEGRAM
❤3👍2