SVFR β a full-fledged framework for restoring faces in videos.
It can:
Essentially, the model takes old or damaged videos and makes them "as if they were shot yesterday". And it's free and open-source.
1. Create an environment
conda create -n svfr python=3.9 -y
conda activate svfr
2. Install PyTorch (for your CUDA)
pip install torch==2.2.2 torchvision==0.17.2 torchaudio==2.2.2
3. Install dependencies
pip install -r requirements.txt
4. Download models
conda install git-lfs
git lfs install
git clone https://huggingface.co/stabilityai/stable-video-diffusion-img2vid-xt models/stable-video-diffusion-img2vid-xt
5. Start processing videos
python infer.py \
--config config/infer.yaml \
--task_ids 0 \
--input_path input.mp4 \
--output_dir results/ \
--crop_face_region
Where task_ids:
*
0 β face enhancement*
1 β colorization*
2 β redrawing damageAn ideal tool if:
#python #soft #github
https://t.me/CodeProgrammer
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
β€8π4
Please open Telegram to view this post
VIEW IN TELEGRAM
β€7π5π2π1
A huge cheat sheet for Python, Django, Plotly, Matplotlib, P.pdf
741 KB
Many topics are covered inside:
https://t.me/CodeProgrammer
Please open Telegram to view this post
VIEW IN TELEGRAM
β€11π5
Not just another "what is a neural network" course β this is about how to build combat-ready ML systems around models.
What's inside:
βΆοΈ Building autograd, optimizers, attention, and mini-PyTorch from scratch;
βΆοΈ Batches, computational accuracy, architectures, and training;
βΆοΈ Performance optimization, hardware acceleration, and benchmarking.
You can read the book and the code for free right now.
https://github.com/harvard-edge/cs249r_book
Please open Telegram to view this post
VIEW IN TELEGRAM
β€14π8π5π₯1
π± Python enthusiasts, this is for you β 15 BEST REPOSITORIES on GitHub for learning Python
βΆοΈ Awesome Python β https://github.com/vinta/awesome-python
β the largest and most authoritative collection of frameworks, libraries, and resources for Python β a must-save
βΆοΈ TheAlgorithms/Python β https://github.com/TheAlgorithms/Python
β a huge collection of algorithms and data structures written in Python
βΆοΈ Project-Based-Learning β https://github.com/practical-tutorials/project-based-learning
β learning Python (and not only) through real projects
βΆοΈ Real Python Guide β https://github.com/realpython/python-guide
β a high-quality guide to the Python ecosystem, tools, and best practices
βΆοΈ Materials from Real Python β https://github.com/realpython/materials
β a collection of code and projects for Real Python articles and courses
βΆοΈ Learn Python β https://github.com/trekhleb/learn-python
β a reference with explanations, examples, and exercises
βΆοΈ Learn Python 3 β https://github.com/jerry-git/learn-python3
β a convenient guide to modern Python 3 with tasks
βΆοΈ Python Reference β https://github.com/rasbt/python_reference
β cheat sheets, scripts, and useful tips from one of the most respected Python authors
βΆοΈ 30-Days-Of-Python β https://github.com/Asabeneh/30-Days-Of-Python
β a 30-day challenge: from syntax to more complex topics
βΆοΈ Python Programming Exercises β https://github.com/zhiwehu/Python-programming-exercises
β 100+ Python tasks with answers
βΆοΈ Coding Problems β https://github.com/MTrajK/coding-problems
β tasks on algorithms and data structures, including for preparation for interviews
βΆοΈ Projects β https://github.com/karan/Projects
β a list of ideas for pet projects (not just Python). Great for practice
βΆοΈ 100-Days-Of-ML-Code β https://github.com/Avik-Jain/100-Days-Of-ML-Code
β machine learning in Python in the format of a challenge
βΆοΈ 30-Seconds-of-Python β https://github.com/30-seconds/30-seconds-of-python
β useful snippets and tricks for everyday tasks
βΆοΈ Geekcomputers/Python β https://github.com/geekcomputers/Python
β various scripts: from working with the network to automation tasks
React β₯οΈ for more posts like thisπ
βΆοΈ Awesome Python β https://github.com/vinta/awesome-python
β the largest and most authoritative collection of frameworks, libraries, and resources for Python β a must-save
βΆοΈ TheAlgorithms/Python β https://github.com/TheAlgorithms/Python
β a huge collection of algorithms and data structures written in Python
βΆοΈ Project-Based-Learning β https://github.com/practical-tutorials/project-based-learning
β learning Python (and not only) through real projects
βΆοΈ Real Python Guide β https://github.com/realpython/python-guide
β a high-quality guide to the Python ecosystem, tools, and best practices
βΆοΈ Materials from Real Python β https://github.com/realpython/materials
β a collection of code and projects for Real Python articles and courses
βΆοΈ Learn Python β https://github.com/trekhleb/learn-python
β a reference with explanations, examples, and exercises
βΆοΈ Learn Python 3 β https://github.com/jerry-git/learn-python3
β a convenient guide to modern Python 3 with tasks
βΆοΈ Python Reference β https://github.com/rasbt/python_reference
β cheat sheets, scripts, and useful tips from one of the most respected Python authors
βΆοΈ 30-Days-Of-Python β https://github.com/Asabeneh/30-Days-Of-Python
β a 30-day challenge: from syntax to more complex topics
βΆοΈ Python Programming Exercises β https://github.com/zhiwehu/Python-programming-exercises
β 100+ Python tasks with answers
βΆοΈ Coding Problems β https://github.com/MTrajK/coding-problems
β tasks on algorithms and data structures, including for preparation for interviews
βΆοΈ Projects β https://github.com/karan/Projects
β a list of ideas for pet projects (not just Python). Great for practice
βΆοΈ 100-Days-Of-ML-Code β https://github.com/Avik-Jain/100-Days-Of-ML-Code
β machine learning in Python in the format of a challenge
βΆοΈ 30-Seconds-of-Python β https://github.com/30-seconds/30-seconds-of-python
β useful snippets and tricks for everyday tasks
βΆοΈ Geekcomputers/Python β https://github.com/geekcomputers/Python
β various scripts: from working with the network to automation tasks
React β₯οΈ for more posts like this
Please open Telegram to view this post
VIEW IN TELEGRAM
β€22π4π₯2π2
Classical filters & convolution: The heart of computer vision
Before Deep Learning exploded onto the scene, traditional computer vision centered on filters. Filters were small, hand-engineered matrices that you convolved with an image to detect specific features like edges, corners, or textures. In this article, we will dive into the details of classical filters and convolution operation - how they work, why they matter, and how to implement them.
More: https://www.vizuaranewsletter.com/p/classical-filters-and-convolution
Before Deep Learning exploded onto the scene, traditional computer vision centered on filters. Filters were small, hand-engineered matrices that you convolved with an image to detect specific features like edges, corners, or textures. In this article, we will dive into the details of classical filters and convolution operation - how they work, why they matter, and how to implement them.
More: https://www.vizuaranewsletter.com/p/classical-filters-and-convolution
π₯6β€5π4π1
What's inside:
βΆοΈ Analysis of research and step-by-step reproduction of model architectures;
βΆοΈ Explanation of topics and concepts with interactive visualizations;
βΆοΈ A progress and achievement system β what would we do without gamification.
A great option to hone your ML skills in the evening
https://www.tensortonic.com/
Please open Telegram to view this post
VIEW IN TELEGRAM
β€12π2π₯2π2
π $0.15/GB - PROXYFOG.COM β SCALE WITHOUT LIMITS
π Premium Residential & Mobile Proxies
π 60M+ Real IPs β 195 Countries (πΊπΈ USA Included)
π° Prices as low as $0.15/GB
π― Instant & Precise Country Targeting
π Sticky Sessions + Fresh IP on Every Request
βΎοΈ Balance Never Expires
β‘ Built for Arbitrage. Automation. Scraping. Scaling.
β‘ Fast. Stable. High-Performance Infrastructure.
π Website: https://tglink.io/13a3b748098cf2
π© Telegram: https://t.me/proxyfog?utm_source=telegain&utm_medium=cpp&utm_campaign=s1&utm_content=codeprogrammer&utm_term=
Start today. Scale without limits. π
π Premium Residential & Mobile Proxies
π 60M+ Real IPs β 195 Countries (πΊπΈ USA Included)
π° Prices as low as $0.15/GB
π― Instant & Precise Country Targeting
π Sticky Sessions + Fresh IP on Every Request
βΎοΈ Balance Never Expires
β‘ Built for Arbitrage. Automation. Scraping. Scaling.
β‘ Fast. Stable. High-Performance Infrastructure.
π Website: https://tglink.io/13a3b748098cf2
π© Telegram: https://t.me/proxyfog?utm_source=telegain&utm_medium=cpp&utm_campaign=s1&utm_content=codeprogrammer&utm_term=
Start today. Scale without limits. π
β€4π₯2π1π1
RAG won't work in 2026 if you're still using old approaches.
Yes, many companies are still failing with RAG β not because they're doing it wrong, but because they're stuck on outdated techniques.
Here's what usually happens: most companies start with a chatbot / chat app when talking about AI implementation. And here RAG becomes key β to connect their data via a database and enable the chat app to retrieve relevant documents.
But today, RAG is no longer limited to just chats. The applications of RAG are practically limitless, and that's a good thing.
RAG still remains the foundation for everything you build on LLMs and AI agents. The only thing that's changed is the RAG techniques themselves. The old approach no longer works β more advanced techniques are needed, what's now called advanced RAG.
The essence of RAG is to enrich the system with your data via a database so it can find relevant documents or their parts. The results are simple and often "okay", especially if the documents are well-structured and there aren't many of them.
But when the documents are unstructured and it's important to get not just accurate documents but also the right context, advanced techniques come into play:
- query decomposition
- metadata enrichment
- hybrid indexing
- reranking
- context fusion
These approaches allow the RAG system to find and generate more accurate and contextually relevant answers.
Therefore, advanced RAG is important. RAG isn't dead and can't die. Just use smarter techniques.
Yes, many companies are still failing with RAG β not because they're doing it wrong, but because they're stuck on outdated techniques.
Here's what usually happens: most companies start with a chatbot / chat app when talking about AI implementation. And here RAG becomes key β to connect their data via a database and enable the chat app to retrieve relevant documents.
But today, RAG is no longer limited to just chats. The applications of RAG are practically limitless, and that's a good thing.
RAG still remains the foundation for everything you build on LLMs and AI agents. The only thing that's changed is the RAG techniques themselves. The old approach no longer works β more advanced techniques are needed, what's now called advanced RAG.
The essence of RAG is to enrich the system with your data via a database so it can find relevant documents or their parts. The results are simple and often "okay", especially if the documents are well-structured and there aren't many of them.
But when the documents are unstructured and it's important to get not just accurate documents but also the right context, advanced techniques come into play:
- query decomposition
- metadata enrichment
- hybrid indexing
- reranking
- context fusion
These approaches allow the RAG system to find and generate more accurate and contextually relevant answers.
Therefore, advanced RAG is important. RAG isn't dead and can't die. Just use smarter techniques.
β€5π5
πΌ Cheat Sheet on Data Wrangling β for everyone who works with Pandas
Everything you need is collected in one file: creating and merging DataFrames, filtering, grouping, handling missing values, and visualization.
It's convenient when you need to quickly refresh your syntax and don't want to dig into the documentation.
The cheat sheet in good quality
https://pandas.pydata.org/Pandas_Cheat_Sheet.pdf
tags: #useful
For more please β€οΈ
β‘ https://t.me/CodeProgrammer
Everything you need is collected in one file: creating and merging DataFrames, filtering, grouping, handling missing values, and visualization.
It's convenient when you need to quickly refresh your syntax and don't want to dig into the documentation.
The cheat sheet in good quality
https://pandas.pydata.org/Pandas_Cheat_Sheet.pdf
tags: #useful
For more please β€οΈ
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
β€9π2π2
Forwarded from Learn Python Hub
#MIT has made courses in key CS areas publicly available. #Python, #algorithms, #ML, neural networks, #OS, #databases, #mathematics β all can be completed for free directly on #YouTube.
tags: #courses
Please open Telegram to view this post
VIEW IN TELEGRAM
β€10
Forwarded from Machine Learning with Python
Follow the Machine Learning with Python channel on WhatsApp: https://whatsapp.com/channel/0029VaC7Weq29753hpcggW2A
β€6
Forwarded from Data Analytics
SQL Basics.pdf
102.8 KB
π» Collection of cheat sheets on SQL
I've gathered for you short and understandable cheat sheets on the main topics:
βΆοΈ Basics of the SQL language;
βΆοΈ JOINs with clear examples;
βΆοΈ Window functions;
βΆοΈ SQL for data analysis.
An excellent set to refresh your knowledge before a job interview or quickly recall the syntax.
tags: #sql #useful
https://t.me/DataAnalyticsX
I've gathered for you short and understandable cheat sheets on the main topics:
βΆοΈ Basics of the SQL language;
βΆοΈ JOINs with clear examples;
βΆοΈ Window functions;
βΆοΈ SQL for data analysis.
An excellent set to refresh your knowledge before a job interview or quickly recall the syntax.
tags: #sql #useful
https://t.me/DataAnalyticsX
β€10
When have you ever needed to add a mathematical description for your function in Python, but found that it takes too much time?
Non-programmers can't easily read Python's logic. However, manually converting it to LaTeX is slow and quickly becomes outdated as the code changes.
latexify_py solves this problem with a single decorator, generating LaTeX directly from your function, so that the mathematics remains readable and always synchronized with the code.
Main features:
β’ Three decorators for different outputs: expressions, full equations, or pseudocode
β’ Displays the rendered LaTeX directly in Jupyter cells
β’ Functions continue to work normally when called
In addition, latexify_py is open source. Install it using
An article about 3 tools that convert Python code to LaTeX: https://bit.ly/3Pw89yP
Run this code: https://bit.ly/4bW2ycE
https://t.me/CodeProgrammer
Non-programmers can't easily read Python's logic. However, manually converting it to LaTeX is slow and quickly becomes outdated as the code changes.
latexify_py solves this problem with a single decorator, generating LaTeX directly from your function, so that the mathematics remains readable and always synchronized with the code.
Main features:
β’ Three decorators for different outputs: expressions, full equations, or pseudocode
β’ Displays the rendered LaTeX directly in Jupyter cells
β’ Functions continue to work normally when called
In addition, latexify_py is open source. Install it using
pip install latexify-pyAn article about 3 tools that convert Python code to LaTeX: https://bit.ly/3Pw89yP
Run this code: https://bit.ly/4bW2ycE
https://t.me/CodeProgrammer
π4β€3
Please note that the permanent subscription to our Premium channel will be permanently closed in five days.
The cost of a permanent subscription to our premium channel is $35.
The Premium channel contains thousands of books and courses available for free as direct downloadable Telegram files.
Contact me @HusseinSheikho
The cost of a permanent subscription to our premium channel is $35.
The Premium channel contains thousands of books and courses available for free as direct downloadable Telegram files.
Contact me @HusseinSheikho
β€3π1