Python | Machine Learning | Coding | R
62.2K subscribers
1.12K photos
67 videos
141 files
776 links
List of our channels:
https://t.me/addlist/8_rRW2scgfRhOTc0

Discover powerful insights with Python, Machine Learning, Coding, and R—your essential toolkit for data-driven solutions, smart alg

Help and ads: @hussein_sheikho

https://telega.io/?r=nikapsOH
Download Telegram
Forwarded from Shohruh
This media is not supported in your browser
VIEW IN TELEGRAM
Artificial Intelligence && Deep Learning
Channel for who have a passion for -

* Artificial Intelligence
* Machine Learning
* Deep Learning
* Data Science
* Computer vision
* Image Processing
* Research Papers

https://t.me/DeepLearning_ai

https://t.me/MachineLearning_Programming
🖥 Lock Your Photos using Python

🔗 Link: https://github.com/pyca/cryptography

https://t.me/CodeProgrammer

More Likes, Share (Interact and don't be stingy) ❤️😇❤️
Please open Telegram to view this post
VIEW IN TELEGRAM
🤓 Awesome Face Recognition

Huge curated list of materials: face detection; recognition; identification; verification; reconstruction; tracking; super resolution and blur; generation and synthesis of faces; replacement of persons; protection against counterfeiting; search by face.

🖥 Github: https://github.com/ChanChiChoi/awesome-Face_Recognition

⭐️ https://t.me/CodeProgrammer

🇵 🇱 🇪 🇦 🇸 🇪 🇷 🇪 🇦 🇨 🇹
Please open Telegram to view this post
VIEW IN TELEGRAM
🖥 Web2pdf: CLI to convert Webpages to PDF

Web2pdf is a useful command line tool that allows you to convert web pages to PDF files.

It supports batch conversion, allowing you to convert multiple web pages at once.

You can customize the styling of your PDFs using CSS, including fonts and background colors.

🟡 git clone https://github.com/dvcoolarun/web2pdf.git

🖥 Github: https://github.com/dvcoolarun/web2pdf

⭐️ https://t.me/CodeProgrammer

🇵 🇱 🇪 🇦 🇸 🇪 🇷 🇪 🇦 🇨 🇹
Please open Telegram to view this post
VIEW IN TELEGRAM
🖥 Awesome Python Awesome: A curated list of awesome Python frameworks, libraries, software and resources.

🖥 Github: https://github.com/vinta/awesome-python

⭐️ https://t.me/CodeProgrammer ☄️

🇵 🇱 🇪 🇦 🇸 🇪 🇷 🇪 🇦 🇨 🇹
Please open Telegram to view this post
VIEW IN TELEGRAM
💎 Answer data science questions with AveryGPT chatbot

The best free data science job chat bot

🏷 AveryGPT
🌐 LINK 🌐

⚜️ https://t.me/ProgramsStore 🆔
Please open Telegram to view this post
VIEW IN TELEGRAM
🎁 650+ data science flashcards
🔖 Fast and enjoyable learning of data science topics

🥸 365DataScience website has created an interesting way to teach and strengthen data science concepts to help data scientists remember topics; "Using flash cards"!

🔰 These flash cards are designed in such a way that they help a lot in a strong understanding of statistics and probability, strategy and data literacy, popular data science programming languages, and reviewing key concepts for data science projects and job interviews

🏷 365 Data Science
🗂️ Data Science Flashcards

⚜️ https://t.me/codeprogrammer 🆔
Please open Telegram to view this post
VIEW IN TELEGRAM
🖥 A little word cloud generator in Python

Creating a word cloud based on the 'cl.txt' file

Particularly useful for NLP tasks or social media analysis

from wordcloud import WordCloud

import matplotlib.pyplot as plt

# Read text from a file
with open('cl.txt', 'r', encoding='utf-8') as file:
text = file.read()

# Generate word cloud
wordcloud = WordCloud(width=800, height=400, background_color='white').generate(text)

# Display the generated word cloud using matplotlib
plt.figure(figsize=(10, 5))
plt.imshow(wordcloud, interpolation='bilinear')
plt.axis('off')
plt.show()


A word cloud is a visual representation of a list of categories/tags. The more often a word occurs, the larger the size it takes on in the cloud.

pip install wordcloud

🥰 Github: https://github.com/amueller/word_cloud?ref=blog.electroica.com

🎼 https://t.me/codeprogrammer 🆔
Please open Telegram to view this post
VIEW IN TELEGRAM
This media is not supported in your browser
VIEW IN TELEGRAM
🖥 Build a typing assistant with Mistral 7B and Ollama - Python Tutorial

Incredible - local AI chatbot based on Ollama and Mistral 7B in just a hundred lines of Python code (!)

💻 Tutorial

🖥 GitHub

🎼 https://t.me/codeprogrammer 🆔
Please open Telegram to view this post
VIEW IN TELEGRAM
🖥 Latexify: Generates LaTeX math description from Python functions.

Cool Python library that allows you to display functions in LaTeX format


pip install latexify

That is, you simply define the function as usual, like this:
def quadratic(a,b,c):
return (-b + math.sqrt(b**2 - 4*a*c)) / (2*a)


To output a LaTeX formula, we simply place the @latexify.function decorator above the function definition and print the function name quadratic in the Google Colab cell.
It turns out like this - and we will see the formula:
@latexify.function
def quadratic(a,b,c):
return (-b + math.sqrt(b**2 - 4*a*c)) / (2*a)

quadratic


Perfect for those who study at the intersection of IT and physics/mathematics/other disciplines;
Here in Google Colab you can test how it works

🖥 GitHub

🪄 https://t.me/codeprogrammer 🖼
Please open Telegram to view this post
VIEW IN TELEGRAM
☄️ 6 data science YouTube courses for beginners

⭐️ If you are looking to enter the field of data science and are going to start learning data science topics, these 6 free YouTube courses are a unique opportunity!


1️⃣ Python course with freeCodeCamp
📝 4.5 hour video that covers everything you need to become a Python programmer.

🏷 Python with freeCodeCamp
🟡 LINK


2️⃣ statistics course with StatQuest
📝 One of the main and prerequisite topics for learning data science is statistics, which this learning course has made easier than ever.

🏷 Statistics with StatQuest
LINK

3️⃣ Mathematics course with 3Blue1Brown
✍️ Learning linear algebra, neural networks and central limit theorem for data science.

🏷 Mathematics with 3Blue1Brown
🔃 LINK


4️⃣ Data cleaning course with DataCamp
📝 Importance and techniques of how to obtain cleansed data and face the challenges of data cleansing.

🏷 Data Cleaning with DataCamp
🟡 LINK


5️⃣ Machine learning course with Krish Naik
📝 6-hour video that introduces different aspects of ML, from linear regression to clustering algorithms.

🏷 Machine Learning with Krish Naik
👁 LINK


6️⃣ Data visualization course with Simplilearn
📝 Getting to know how to visualize data using Matplotlib, Seaborn and Bokeh libraries.

🏷 Data Visualizations with Simplilearn
🟡 LINK

🪄 https://t.me/codeprogrammer 🖼
Please open Telegram to view this post
VIEW IN TELEGRAM
🖥 25 free data science courses, Gen AI, ML, ...
◀️ From reputable universities and institutions

In universities, I am always asked about free resources for learning data science, and I thought it would be better to share these resources with you here. I hope this collection will be of great help to those who want to become professionals in the field of data science! 💯


🔄 Data science courses

Python for Everybody course ➡️ link

Data analysis with Python course ➡️ link

Databases and SQL course ➡️ link

Intro to Inferential Statistics course ➡️ link

Machine Learning Zoomcamp course ➡️ link


🔄 Data engineering courses

Data Engineering course ➡️ link

Data Engineer Learning course ➡️ link

Database Engineer course ➡️ link

Big Data Specialization course ➡️ link

Data Engineering Zoomcamp course ➡️ link


🔵 Machine learning courses

Intro to ML course ➡️ link

ML for Everybody course ➡️ link

ML course in Python with Scikit-Learn ➡️ link

ML Crash Course ➡️ link

Course CS229: ML ➡️ link


🟡 MLOps courses

Python Essentials for MLOps course ➡️ link

MLOps for Beginners course ➡️ link

MLOps Specialization course ➡️ link

MLOps Specialization course ➡️ link

Made with ML course ➡️ link


🔄 Productive artificial intelligence courses

Generative AI for Beginners course ➡️ link

Generative AI Fundamentals course ➡️ link

Intro to Generative AI course ➡️ link

Generative AI course with LLMs ➡️ link

Generative AI for Everyone course ➡️ link

🪄 https://t.me/codeprogrammer 🖼
🔮More likes 😡 => more posts
Please open Telegram to view this post
VIEW IN TELEGRAM
🔈 list of top 50 data science cheat sheets

🔘 From the day I started summarizing data science topics on LinkedIn, I decided to summarize each topic in a few pages. I finally came up with a list of 50 cheat sheets from various areas of data science. This list covers pretty much everything a data person might need, from how to plot with Matplotlib to using ChatGPT.

Python: link

Pandas library: link

NumPy library: link

Matplotlib library: link

seaborn library: link

scikit-learn library: link

TensorFlow library: link

Keras library: link

PyTorch framework: link

SQL language: link

👀 GeoPandas project: link

👀 Git version control system: link

👀 AWS cloud platform: link

Azure cloud platform: link

Google Cloud Platform cloud computing: link

Docker platform: link

Kubernetes platform: link

The Linux Command Line training: link

Jupyter notebook: link

✅️ Data preparation: link

✅️ Data Visualization: Link

✅️ Statistical inference: link

✅️ possibility: link

✅️ Linear Algebra: Link

✅️ Differential calculation: link

Time series: link

Natural language processing: link

Neural network: link

Deep Learning: Link

Machine learning: link

Apache Spark Framework: Link

Apache Hadoop framework: link

Big O Notation tool: link

Regular Expression training: link

Unix / Linux Permissions training: link

Python String Formatting tutorial: link

Flask framework: link

Django framework: link

plotly library: link

PostgreSQL database: link

MySQL database: link

MongoDB database: link

TensorFlow Probability library: link

Chatbot GPT-3: link

Training GPT-3 API Reference: link

SciPy library: link

ChatGPT chatbot: link

Training Colors in Data Viz: link

Geospatial DS in Python training: link

🪄 https://t.me/codeprogrammer 🖼

😡More likes 😡 => more posts
Please open Telegram to view this post
VIEW IN TELEGRAM
🔄 The largest data visualization tools with Python
🔥 The most powerful data visualization ecosystem

⭐️ The PyViz ecosystem, with nearly 150 different libraries in 12 categories , is one of the most powerful tools to facilitate learning and using data visualization in Python. This ecosystem includes from the main visualizations to the graphic and location libraries and the creation of the dashboard.

To access these 150 top and unique Python libraries, you can use the following link:👇🏼


🏷 Data visualization in Python
🚀 PyViz


🪄 https://t.me/codeprogrammer 🖼

😡More likes 😡 => more posts
Please open Telegram to view this post
VIEW IN TELEGRAM
🎁 205+ free data science and ML courses
from the Udacity platform

Udacity platform It has a wide range of machine learning and data science courses, some of these courses are free and some are paid.

I collected all the free Udacity courses on machine learning, data science, etc. and put them inside the PDF with an active link. Just click on the link of each course. So easily!👌🏼

🗂 +205 Udacity FREE Courses

🪄 https://t.me/codeprogrammer 🖼

😡More likes 😡 => more posts
Please open Telegram to view this post
VIEW IN TELEGRAM
6 of the best cloud notebooks for data science

Cloud notebooks are analytical tools that can be accessed only through an Internet browser without the need to install special software, and provide the possibility of running codes, analyzing data, and creating reports in an online environment.

🔃 In the following, I have provided you with 6 of the best cloud notebooks for data science projects , each of which has its own applications and capabilities in data analysis, programming, and data science project management.


🏷 6 Free Cloud Notebooks for DS
Deepnote
Kaggle
Hex
Colab
Naas
Datalore

🪄 https://t.me/codeprogrammer 🖼

😡More likes 😡 => more posts
Please open Telegram to view this post
VIEW IN TELEGRAM
Media is too big
VIEW IN TELEGRAM
🇦🇪 Complete set of data science interview questions
📂 with comprehensive answers

🇩🇿 Have you ever been in a situation where the interviewer asked you a theoretical or technical question in the field of data science and you couldn't answer it? Is it just because you were not fully prepared? It happens to many. For example, I have the weakness of mental locking in front of new questions during technical interviews.

🇪🇬 But to overcome this problem, I started looking at sample data science interview questions and collected a collection of the most complete and best data science interview questions with answers from various sources to help you for all data science related jobs. Be prepared and don't repeat my mistakes during interviews!

🔥 Well, if you agree, let's start this interesting part:

🏷 Data Science Interviews Resources
📂 GitHub-Repos


🇮🇳 https://t.me/codeprogrammer 🇩🇪

😡More likes 😡 => more posts

⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️
Please open Telegram to view this post
VIEW IN TELEGRAM
⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️
Please open Telegram to view this post
VIEW IN TELEGRAM
🔗 "Data Analysis for Social Scientists" course

☄️ MIT University's new course "Data Analysis for Social Scientists" which, with an attractive and data-based concept, gives scientists in this field the opportunity to benefit from data analysis tools and answer important questions in the fields of economics. , body politics and culture.

➡️ In these 24 educational videos , you will get to know the basic principles of statistics and probability, and then modern data analysis techniques will be discussed, and you will learn topics such as regression analysis, machine learning, and data visualization.


Everything in this course is free ! To access the educational videos of this course + slides and assignments, you can use the following links: 👇

🏷 Data Analysis for Social Scientists
🌐 Homepage
🎬 Lecture Videos

🤩 https://t.me/codeprogrammer 🥰

😡More likes 😡 => more posts

⚡️⚡️⚡️⚡️⚡️⚡️⚡️⚡️
Please open Telegram to view this post
VIEW IN TELEGRAM