IamPython
290 subscribers
148 photos
13 videos
8 files
195 links
This is Python based telegram group for web developers, Artificial intelligence, webscraping, Datascience, Data analysis, Ethical Hacking and more. You will learn lot insights and useful information
Download Telegram
How to Automate Exploratory Data Analysis (EDA) ? - Part 1 https://youtu.be/tMquUTJ6yXU


You should know when you want to expedite data analysis ๐Ÿง I strongly recommend you to use in your real world problems. This module will help you a lot
This website will help you learn probability and statistics, the most important topics in math for machine learning!

seeing-theory.brown.edu


Donโ€™t forget to add in bookmarks ๐Ÿ”–
Channel name was changed to ยซPython Developers / Machine Learning / DataScience / AIยป
Deep learning activation functions made cool and cute
Learning path to mastering data engineering:

๐Ÿ”ธ SQL
๐Ÿ”ธ Git
๐Ÿ”ธ Bash
๐Ÿ”ธ PostgreSQL
๐Ÿ”ธ Java, Scala
๐Ÿ”ธ Python
๐Ÿ”ธ Docker
๐Ÿ”ธ AWS
๐Ÿ”ธ Airflow
๐Ÿ”ธ Kafka
๐Ÿ”ธ Spark
๐Ÿ”ธ Kubernetes
Learning path to mastering MLOps:

๐Ÿ”ธ Linux
๐Ÿ”ธ Python
๐Ÿ”ธ Docker
๐Ÿ”ธ AWS
๐Ÿ”ธ Terraform
๐Ÿ”ธ Kubernetes
๐Ÿ”ธ Prometheus
๐Ÿ”ธ Grafana
๐Ÿ”ธ Kubeflow
๐Ÿ”ธ CDK
๐Ÿ”ธ Travis CI and Herokuapp
๐Ÿ”ธ ML Flow
๐Ÿ”ธ Airflow


Many more and listed few only for idea
#! File can be opened in various modes

r = read - Default mode
r+ = read + write
w = write
a = append
w+ = write + read
a+ = append + read
X - W ==?


rb - read only binary format
wb - write only binary format
ab - append only binary format
rb+ - read and write only in binary format
wb+ -write and read only in binary format
ab+ - append and read only mode


#! file basic operations
open
close

#! Check permissions for file
readable
writable
closed

#! read functions
read
readline
readlines

#! write functions
write
writelines

#! Postion of file pointes
seek
seekable
tell
Getting started with PyTorch for deep learning? Cover these fundamentals first:

๐Ÿ”ธTensors
๐Ÿ”ธDatasets & DataLoaders
๐Ÿ”ธTransforms
๐Ÿ”ธBuild Model
๐Ÿ”ธAutomatic Differentiation
๐Ÿ”ธOptimization Loop
๐Ÿ”ธSave, Load, & Use Model

always read official docs for gain more knowledge
https://pytorch.org/tutorials/beginner/basics/intro.html
re you a student who wants to harness data and tech to make a difference? Learn from industry experts, collaborate with students around the world and be in the running for up to $10,000 in cash prizes. Learn more at ey.com/datasciencechallenge
Today, I will be talking about AI/ML best practices on weekly datascience Dialogue - Edition 3
Lets learn Django RestFramework. I have alreay explained DRF archtecture here. Will be adding subsequent tutorial video everyday. Remember i dont want to post every youtube links here .... Maximum i will try share knowldge through text and other ways.
8 reasons machine learning projects failโ€”โ€”

๐Ÿ”ธ Doing ML for wrong reasons
๐Ÿ”ธ ML not needed
๐Ÿ”ธ Bad data
๐Ÿ”ธ Poor problem framing
๐Ÿ”ธ Model โ‰  product
๐Ÿ”ธ Bad infrastructure
๐Ÿ”ธ No trust from stakeholders
๐Ÿ”ธ Production failures
Skills to impress data science employers:

๐Ÿ”ธ Data engineering
๐Ÿ”ธ Model deployment
๐Ÿ”ธ Cloud-based services
๐Ÿ”ธ Infrastructure as code tools
๐Ÿ”ธ Communication and storytelling

The last one is especially important
AI investment in drug design and discovery increased significantly: โ€œDrugs, Cancer, Molecular, Drug Discoveryโ€ received the greatest amount of private AI investment in 2020, with more than USD
13.8 billion, 4.5 times higher than 2019.
Don't have enough data to train your model? Fret not! Use the synthetic one!

๐Ÿ‘‰๐Ÿผ Synthetic data is artificially generated data that is not collected from real world events! It replicates the statistical components of real data without containing any identifiable information, ensuring individuals' privacy.

๐Ÿง  Synthetic data can be used for many applications:
- Privacy
- Removing Bias
- Balancing Datasets
- Augment Datasets

๐Ÿ‘‰๐Ÿผ Where to generate it from and how?

Open Source Project YData Synthetic: This repository contains material on GANs for synthetic data generation, especially regular tabular data and time-series. It consists a set of different GAN architectures developed using Tensorflow 2.0. An example Jupyter Notebook is included, to show how to use the different architectures.

Link: https://github.com/ydataai/ydata-synthetic
This media is not supported in your browser
VIEW IN TELEGRAM
Code generation using machine learning. You draw โœ๏ธ and Machine can create a code for you.....
Did you know

For most Python implementations different threads do not execute at same time: they merely appear to.

Threads may be running on different processors but they merely appear to.

But how to achieve multiple tasks running simultaneously?

Just think ๐Ÿค” will share answer tomorrow if none responded to this.