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
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
This media is not supported in your browser
VIEW IN TELEGRAM
😈 Creating the coolest deepfakes

🛠 Hummingbird-0 is a free AI that generates realistic deepfakes with voiceovers in seconds.

🔹 Upload any video with audio and get results in seconds
🔹 The AI redubs clips and creates lifelike visuals that are almost indistinguishable
🔹 Perfect for dubbing, social media content, ads, VFX, or Hollywood-grade editing.

🔗 Links:
https://fal.ai/models/fal-ai/tavus/hummingbird-lipsync/v0
Please open Telegram to view this post
VIEW IN TELEGRAM
14👍4
🔅 AI Workshop: Advanced Chatbot Development

🌐 Author: Axel Sirota
🔰 Level: Advanced

Duration: 3h 38m

🌀 This course equips intermediate data scientists and ML engineers with the practical skills to design, optimize, and deploy advanced chatbots that enhance customer experiences.


📗 Topics: Large Language Models, Generative AI, Chatbot Development

📤 Join Artificial intelligence for more courses
Please open Telegram to view this post
VIEW IN TELEGRAM
12👍3
Please open Telegram to view this post
VIEW IN TELEGRAM
8👍1🔥1
This media is not supported in your browser
VIEW IN TELEGRAM
👨‍💻 Gamma — Create presentations in a few clicks with AI

🛠 A recent update to the AI ​​service for creating presentations Gamma has expanded its capabilities: now it generates not only text and images, but also tables with graphs, turns slides into cards for social networks, and pictures can not only be generated by neural networks, but also selected from the author's illustrations.

⚙️ How to create a presentation in Gamma?

🔹 Visit the Gamma website, Click "Start for free" and register.

🔹 Click “Create a new AI” and select one of the presentation content options: based on your notes, generate an AI entirely, or upload a finished presentation for editing.

🔹 Select the project type (presentation, website, document or social media post), number of slides, language and click "Create summary".

🔹 Check the contents of the outline. Choose the design, the method of creating images, enter your style preferences and click "Generate!"

🔗 Links: https://gamma.app
Please open Telegram to view this post
VIEW IN TELEGRAM
19👍2🔥1🥰1
Media is too big
VIEW IN TELEGRAM
😎 We found a great neural network for voice-over texts for you

🔰Hailuo.ai — AI that will read text with any voice

🔰Completely clones voice in just 10 seconds, has a library of 300+ voices in different languages ​​and with different intonations


💥 And also the neural network is absolutely free and there is no censorship!

🔗 Links: https://www.minimax.io/audio
Please open Telegram to view this post
VIEW IN TELEGRAM
11👍6
This media is not supported in your browser
VIEW IN TELEGRAM
🔗 Vanna AI

🛠 Vanna is an MIT-licensed open-source Python RAG (Retrieval-Augmented Generation) framework for SQL generation and related functionality.


🤖Chat with your SQL database 📊.
🔰Accurate Text-to-SQL Generation via LLMs using RAG 🔄.

🔗 Links: https://github.com/vanna-ai/vanna
Please open Telegram to view this post
VIEW IN TELEGRAM
39👍6
🔗 RAG Developer Stack
Please open Telegram to view this post
VIEW IN TELEGRAM
👍188
🔅 LLaMa for Developers

🌐 Author: Denys Linkov
🔰 Level: Intermediate

Duration: 1h 49m

🌀 Get an introduction to the architecture, process of fine tuning, deploying, and prompting in the popular open source LLaMa model.


📗 Topics: AI Software Development, LLaMA, Large Language Models

📤 Join Artificial intelligence for more courses
Please open Telegram to view this post
VIEW IN TELEGRAM
17👍3