AI and Machine Learning – Telegram
AI and Machine Learning
90.4K subscribers
242 photos
66 videos
356 files
162 links
Learn Data Science, Data Analysis, Machine Learning, Artificial Intelligence, and Python with Tensorflow, Pandas & more!
Buy ads: https://telega.io/c/machine_learning_courses
Download Telegram
⚡️ 200+ ready-made noscripts for n8n

Found a simple and useful resource: a GitHub repository with 200+ free workflows for n8n.

Topics: sales, marketing, financial accounting, coding, and personal productivity.

What is n8n
- Open-source no-code automation tool
- Visual builder: connect blocks to create a process
- Hundreds of integrations: email, CRM, spreadsheets, messengers, webhooks
- You can add your own logic in JavaScript
- Run on schedule or event, works in the cloud or on your own server

How to use:
1) Download the desired workflow (.json) and import it into n8n
2) Insert your API keys and credentials into the blocks
3) Check the steps and enable running by cron or webhook

▪️ Github

Update - another 300 ready solutions: https://github.com/kossakovsky/n8n-installer
Please open Telegram to view this post
VIEW IN TELEGRAM
36🔥7👍4
Mastering LLMs is a journey, and our infographic gives you a sneak peek into the key steps to success. From fundamentals to deployment, it’s all about having the right roadmap.
30👍6🔥2
What is RAG? 🤖📚

RAG stands for Retrieval-Augmented Generation.
It’s a technique where an AI model first retrieves relevant info (like from documents or a database), and then generates an answer using that info.

🧠 Think of it like this:
Instead of relying only on what it "knows", the model looks things up first - just like you would Google something before replying.

🔍 Retrieval + 📝 Generation = Smarter, up-to-date answers!
169👍12🔥5
🔅 Fine-Tuning for LLMs: from Beginner to Advanced

🌐 Author: Axel Sirota
🔰 Level: Advanced

Duration: 3h 25m

🌀 Gain the expertise you need in Large Language Models (LLMs), a rapidly evolving field in AI, including hands-on practice.


📗 Topics: Large Language Models, Generative AI, Fine Tuning

📤 Join Artificial intelligence for more courses
Please open Telegram to view this post
VIEW IN TELEGRAM
29🔥2👍1
Please open Telegram to view this post
VIEW IN TELEGRAM
20👍4🔥1
📌 PyTorch Explained: From Automatic Differentiation to Training Custom Neural Networks

🗂 Category: DEEP LEARNING

🕒 Date: 2025-09-24 | ⏱️ Read time: 15 min read

Deep learning is shaping our world as we speak. In fact, it has been slowly…

🔗 Read Full Article
Please open Telegram to view this post
VIEW IN TELEGRAM
26
🔗 Master AI in 2025

AI isn’t one big leap, it’s a series of steps - Python, ML, Deep Learning, NLP, and then the world of Generative AI.


This roadmap gives you the base.
Please open Telegram to view this post
VIEW IN TELEGRAM
42👍5
🧠 Examples and Guides for DeepMind Gemini Models

The repository contains small examples, code snippets, and guides demonstrating experiments with Google's DeepMind Gemini models. Here you will find useful samples for integrating and using various Gemini features, including working with the OpenAI SDK and Google Search.


📖 Highlights:
- Examples of using Gemini with OpenAI and Google Search
- Guides on functions and agents
- Scripts for browser interaction and content generation
- Integration with LangChain and PydanticAI


🔗 GitHub: https://github.com/philschmid/gemini-samples
Please open Telegram to view this post
VIEW IN TELEGRAM
29👍2🔥1
🔅 Building a RAG Solution from Scratch

🌐 Author: Axel Sirota
🔰 Level: Intermediate

Duration: 2h 53m

🌀 Learn to design, implement, and optimize RAG systems for chatbots and decision support, while exploring current research and ethical considerations.


📗 Topics: Retrieval-Augmented Generation, Generative AI, Artificial Intelligence

📤 Join Artificial intelligence for more courses
Please open Telegram to view this post
VIEW IN TELEGRAM
27👍4
Please open Telegram to view this post
VIEW IN TELEGRAM
24👍6
Google published a 150-page report on Health AI Agents - 7,000 annotations, 1,100+ hours of expert work.

But the main thing is not the metrics, but the new design philosophy.

Instead of a monolithic *"Doctor-GPT"*, Google is creating a Personal Health Agent (PHA) - a system of three specialized agents:
- Data Science Agent - analyzes wearable devices and lab data
- Domain Expert Agent - verifies medical facts and knowledge
- Health Coach Agent - conducts dialogue, sets goals, adds empathy

🧩 Everything is connected by an orchestrator with memory: user goals, barriers, insights.

⚡️ Results
- Outperformed baseline models on 10 benchmarks
- Users preferred PHA over regular LLMs (20 participants, 50 personas)
- Experts rated answers 5.7–39% better on complex medical queries

⚙️ Design principles
- Consider all user needs
- Adaptively combine agents
- Do not ask for data that can be inferred
- Minimize latency and complexity

🧠 Tested scenarios
- General health questions
- Data interpretation (wearables, biomarkers)
- Advice on sleep, nutrition, activity
- Symptom assessment (without diagnosis)

⚠️ Limitations and future
- Slower than single agents (244 s vs. 36 s)
- Need bias audits, data protection, and regulatory compliance
- Next step - adaptive communication style: empathy ↔️ responsibility

💡 Conclusion
Google shows the way forward: not a "super doctor bot," but modular, specialized agent teams.
Medicine is just the first test. Next: finance, law, education, science.

Google 150 Health AI Agents: https://arxiv.org/pdf/2508.20148
39🔥5👍2
💠 The Best Tool for Extracting Data from PDF Files!

👩🏻‍💻 Usually, PDF files like financial reports, scientific articles, or data analyses are full of tables, formulas, and complex texts.

⬅️ Most tools only extract texts and destroy the data structure, causing important information to be lost.

But the tool Docling uses artificial intelligence to preserve all those structures (text, tables, formulas) exactly as they are in the file. Then it converts that data into a structured format. Meaning AI models can work on them.

The interesting point is that with just three lines of Python code, you can convert any PDF into searchable data!

🥵 Docling
🔎 Article
📄 Documentation
🐱 GitHub-Repos
Please open Telegram to view this post
VIEW IN TELEGRAM
43👍5🔥4
🔰 Create a Pencil Sketch Filter in Python ✏️

A quick guide to image processing with OpenCV (CV2).

The Pipeline:
Original Image → Grayscale → Inverted Image → Blurred Invert → Final Sketch

By blending the grayscale and blurred invert layers, we simulate the effect of a hand-drawn sketch. A simple yet powerful technique!


Ideal for beginners looking to dive into computer vision.

# Importing the Required Moduel
# pip install opencv-python
import cv2 as cv

# Reading the image
# Replace this image name to your image name
image = cv.imread("avatar.jpg")

# Converting the Image into gray_image
gray_image = cv.cvtColor(image, cv.COLOR_BGR2GRAY)

# Inverting the Imge
invert_image = cv.bitwise_not(gray_image)

# Blur Image
blur_image = cv.GaussianBlur(invert_image, (21,21), 0)

# Inverting the Blured Image
invert_blur = cv.bitwise_not(blur_image)

# Convert Image Into sketch
sketch = cv.divide(gray_image, invert_blur, scale=256.0)

# Generating the Sketch Image Named as Sketch.png
cv.imwrite("Sketch.png", sketch)


#Python #OpenCV #ComputerVision #Coding #AI
Please open Telegram to view this post
VIEW IN TELEGRAM
41👍5🔥3
Media is too big
VIEW IN TELEGRAM
Two to three years until "AI systems are better than humans at almost everything... then eventually better than all humans at everything," says Anthropic CEO.
👍107
🔅 Small Language Models and LlamaFile

🌐 Author: Noah Gift
🔰 Level: Intermediate

Duration: 11m

🌀 Explore small language models, their advantages, and how to run them locally.


📗 Topics: LLaMA, Large Language Models, Natural Language Processing

📤 Join Artificial intelligence for more courses
Please open Telegram to view this post
VIEW IN TELEGRAM
12👍4
📂 Full denoscription

In this course, MLOps expert Noah Gift covers small language models, their advantages, and how to run them locally using the llamafile tool. Plus, get useful demos of the Phi llamafile and the Lava llamafile.
This course was created by Noah Gift. We are pleased to host this training in our library.
Please open Telegram to view this post
VIEW IN TELEGRAM
9👍1
Please open Telegram to view this post
VIEW IN TELEGRAM
8👍1
🔗 AI Vs Machine Learning Vs Deep Learning Vs Generative AI

1 - Artificial Intelligence (AI)
It is the overarching field focused on creating machines or systems that can perform tasks typically requiring human intelligence, such as reasoning, learning, problem-solving, and language understanding. AI consists of various subfields, including ML, NLP, Robotics, and Computer Vision

2 - Machine Learning (ML)

It is a subset of AI that focuses on developing algorithms that enable computers to learn from and make decisions based on data.

Instead of being explicitly programmed for every task, ML systems improve their performance as they are exposed to more data. Common applications include spam detection, recommendation systems, and predictive analytics.

3 - Deep Learning
It is a specialized subset of ML that utilizes artificial neural networks with multiple layers to model complex patterns in data.

Neural networks are computational models inspired by the human brain’s network of neurons. Deep neural networks can automatically discover representations needed for future detection. Use cases include image and speech recognition, NLP, and autonomous vehicles.

4 - Generative AI
It refers to AI systems capable of generating new content, such as text, images, music, or code, that resembles the data they were trained on. They rely on the Transformer Architecture.

Notable generative AI models include GPT for text generation and DALL-E for image creation.
Please open Telegram to view this post
VIEW IN TELEGRAM
39👍6🔥1
🌟 Pocket Flow: A Minimalistic LLM Framework in 100 Lines of Code

Popular frameworks turn simple tasks into a quest to decipher someone else’s code. Endless wrappers, version conflicts, outdated documentation… All this is not just annoying, it slows down development. After a year of struggling with overloaded tools like LangChain, Microsoft Research developer Zachary Huang dedicated his free time to creating Pocket Flow , a framework that fits all the magic of LLM into 100 lines of code.

Pocket Flow offers a radically different approach: minimalism. It is based on the idea that any LLM pipeline can be represented as a graph of nodes and transitions. No hidden layers, just logic and transparency.

To understand how Pocket Flow works, imagine a kitchen where each node is a cooking zone.

BaseNode performs three steps: preparation (collect data), execution (process the request), postprocessing (save the result).

Flow manages the "recipe": decides where to pass control next. All interactions occur through a common data store - like a table on which the ingredients for all the cooks are located.

An example? Let's say you're building a search agent. You create nodes: DecideAction (decides whether to search), SearchWeb (searches the web), AnswerQuestion (generates an answer). You link them into a graph, where the decision of one node determines the next step. If the model doesn't know the answer, then the search is launched, the results are added to the context, and the cycle repeats. All this is a couple hundred lines of code on top of the Pocket Flow core.

The main advantage of Pocket Flow is freedom. There is no binding to specific APIs, connect any models, even local ones. No dependencies: your project remains "lightweight", and interfaces do not break after updates. Do you want query caching or stream processing? Implement it yourself, without fighting with other people's abstractions.

Of course, minimalism has a price: you won’t get ready-made solutions for every task. But this is the power of Pocket Flow. It gives you control and insight into the process, rather than a ready-made, but black box.

If you are tired of monster frameworks and want to start from scratch, check out the Pocket Flow repository . There are examples of agents, RAG systems, and multi-agent scenarios.


📌 Licensing: MIT License.


🟡 Article
🟡 Documentation
🟡 Community on Discord
🖥 GitHub
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
33👍5