Those who have not connected me on LinkedIn you can connect here
Who am I
Data Scientist and a Corporate Trainer
Trained over 5k+ professionals
Worked with 25+ companies
Latest training with Capgemini big data corporate Training Pune
https://www.linkedin.com/posts/abhishek-kumar-singh-8a6326148_datascience-machinelearning-ai-activity-7270048806618963968-QDXG?utm_source=share&utm_medium=member_android
Who am I
Data Scientist and a Corporate Trainer
Trained over 5k+ professionals
Worked with 25+ companies
Latest training with Capgemini big data corporate Training Pune
https://www.linkedin.com/posts/abhishek-kumar-singh-8a6326148_datascience-machinelearning-ai-activity-7270048806618963968-QDXG?utm_source=share&utm_medium=member_android
Linkedin
#datascience #machinelearning #ai #python #python3 #sql #deeplearningโฆ | Abhishek Kumar Singh
Capgemini big data pune training batch wrapup. Thanks to stripedata
PINTU KUMAR RANA KAMLESH YADAV
Nishi Modi Shreyas S Charchit Jain HARDIK MAHESHWARI Tanay Kharbanda
Shrey Parihar Pranav Bhardwaj Nithin S
Aadarsh Songara ketan ranglani
Yati C. Swatiโฆ
PINTU KUMAR RANA KAMLESH YADAV
Nishi Modi Shreyas S Charchit Jain HARDIK MAHESHWARI Tanay Kharbanda
Shrey Parihar Pranav Bhardwaj Nithin S
Aadarsh Songara ketan ranglani
Yati C. Swatiโฆ
Wild! Google just announced that their quantum chip Willow was able to do a computation in 5 minutes that would take current top-tier computers 10,000,000,000,000,000,000,000,000 years to figure out ๐ณ The 105-qubit chip brings insane error correction, focusing on stability rather than just stacking more qubits. The result? A leap toward practical quantum computing that could revolutionize medicine, AI, and energy in the near future. But here comes the crazy part. As part of the Willow announcement, Google basically confirmed we're living in a multiverse: "It lends credence to the notion that quantum computation occurs in many parallel universes, in line with the idea that we live in a multiverse, a prediction first made by David Deutsch." What a time to be alive.
https://www.instagram.com/p/DDbE3U1yeDD/?igsh=MWFjOXc3ZWVqYTNwZw==
https://www.instagram.com/p/DDbE3U1yeDD/?igsh=MWFjOXc3ZWVqYTNwZw==
30 days of Python
Day 1- Python is uploaded on our YouTube channel
Do subscribe and like our Videos for daily Python content
https://youtu.be/VBk59upcp94?si=AOLD0Uj7H5K3KHHr
Day 1- Python is uploaded on our YouTube channel
Do subscribe and like our Videos for daily Python content
https://youtu.be/VBk59upcp94?si=AOLD0Uj7H5K3KHHr
YouTube
Python tutorials for beginners Day 1
In this video you will learn about the basic of Python such as
- Writting hello world program
- Variables
- Keywords
- Comments
- Operators
- Conditional statments
#python #pythonprogramming #pythontutorial #python3
- Writting hello world program
- Variables
- Keywords
- Comments
- Operators
- Conditional statments
#python #pythonprogramming #pythontutorial #python3
30 days of Python
Day 2- Python is uploaded on our YouTube channel
Do subscribe and like our Videos for daily Python content
https://youtu.be/DFmNCJtQhKU?si=yoqz7_oZDc8FzbSz
Day 2- Python is uploaded on our YouTube channel
Do subscribe and like our Videos for daily Python content
https://youtu.be/DFmNCJtQhKU?si=yoqz7_oZDc8FzbSz
YouTube
Python Tutorials for Beginners Day 2
In this video you will be learning about he following things such as
- Looping Statements
- Strings
- Lists
- Lists comphrension
- Tuple
- Dictionaries
- Sets
#python #pythonprogramming #pythontutorial #python3
- Looping Statements
- Strings
- Lists
- Lists comphrension
- Tuple
- Dictionaries
- Sets
#python #pythonprogramming #pythontutorial #python3
30 days of Python
Day 3- Python is uploaded on our YouTube channel
Do subscribe and like our Videos for daily Python content
https://youtu.be/ptOH2FBMadE?si=AWnHbq_OGuBMx_Bb
Day 3- Python is uploaded on our YouTube channel
Do subscribe and like our Videos for daily Python content
https://youtu.be/ptOH2FBMadE?si=AWnHbq_OGuBMx_Bb
YouTube
Python Tutorials for Beginners Day 3
In this video, you will learn about the following things such as
- Functions
- Lambda function
- Higher Order function (Map, filter, reduce)
#python #python3 #pythonprogramming #pythontutorial #pythonforbeginners
- Functions
- Lambda function
- Higher Order function (Map, filter, reduce)
#python #python3 #pythonprogramming #pythontutorial #pythonforbeginners
In last 2 months our AWs course have 2176 students enrolled and received more than 53+reviews
Get your AWs course at 449 today
https://www.udemy.com/course/aws-certified-solutions-architect-associate-saa-c03-m/?couponCode=EDBA1541FEA21733E639
Get your AWs course at 449 today
https://www.udemy.com/course/aws-certified-solutions-architect-associate-saa-c03-m/?couponCode=EDBA1541FEA21733E639
๐๐๐๐ก๐ ๐๐ฎ๐๐ฎ ๐ฆ๐ฐ๐ถ๐ฒ๐ป๐ฐ๐ฒ ๐๐ป๐๐ฒ๐ฟ๐๐ถ๐ฒ๐ ๐ค๐๐ฒ๐๐๐ถ๐ผ๐ป:
How does an ARIMA model work?
The most common question if you have a forecasting projects in your resume, or the role requires forecasting experience.
To explain this, let's start by breaking down ARIMA, and I mean literally -
AR - Auto-regressive component of model.
This assumes the future value depends LINEARLY on past values.
Typically, you use ACF/PACF plot to figure out how many of the past value (or 'p' value of ARIMA).
I - Integrated component of model.
It represents how to difference the values from themselves to make sure mean and variance is constant over time. Typically, you use a statistical test like ADF to figure out how much differencing you need (also called the 'd' value in ARIMA)
MA - Moving Average component of model.
This assumes future values depends LINEARLY on errors in forecasting made in prior time steps. Typically, you use ACF/PACF plot to determine past value (or 'q' values in ARIMA).
Note: You can also use packages like auto_arima in pmdarima in Python to do a grid search over a range of p,d,q parameter to fit your ARIMA model.
ARIMA essentially works by summing the differenced prior values and forecast errors. The reason why this simple formulation is ubiquitous, is because of its effectiveness and adaptability.
โ It's able to account for stationary and non-stationary time-series.
โ It can represent future values in terms of the few of the lagged previous values and forecast errors, making it interpretable and less likely to overfit.
โ It can accommodate seasonality with its seasonal variation SARIMA, and exogenous variable i.e. features that might help predict future values of the time series apart from historical values of the same time series.
Credit- Karun
Follow Abhishek Kumar Singh to learn Python programming, data Science and big data.
#datascience #machinelearning #ai #Python #python3 #sql #deeplearning
#computervision #computerscience #programming #bigdata #architecture #datavisualization #dataanalytics #dataanalysis #dataanalyst #machinelearningalgorithms #machinelearningengineer
How does an ARIMA model work?
The most common question if you have a forecasting projects in your resume, or the role requires forecasting experience.
To explain this, let's start by breaking down ARIMA, and I mean literally -
AR - Auto-regressive component of model.
This assumes the future value depends LINEARLY on past values.
Typically, you use ACF/PACF plot to figure out how many of the past value (or 'p' value of ARIMA).
I - Integrated component of model.
It represents how to difference the values from themselves to make sure mean and variance is constant over time. Typically, you use a statistical test like ADF to figure out how much differencing you need (also called the 'd' value in ARIMA)
MA - Moving Average component of model.
This assumes future values depends LINEARLY on errors in forecasting made in prior time steps. Typically, you use ACF/PACF plot to determine past value (or 'q' values in ARIMA).
Note: You can also use packages like auto_arima in pmdarima in Python to do a grid search over a range of p,d,q parameter to fit your ARIMA model.
ARIMA essentially works by summing the differenced prior values and forecast errors. The reason why this simple formulation is ubiquitous, is because of its effectiveness and adaptability.
โ It's able to account for stationary and non-stationary time-series.
โ It can represent future values in terms of the few of the lagged previous values and forecast errors, making it interpretable and less likely to overfit.
โ It can accommodate seasonality with its seasonal variation SARIMA, and exogenous variable i.e. features that might help predict future values of the time series apart from historical values of the same time series.
Credit- Karun
Follow Abhishek Kumar Singh to learn Python programming, data Science and big data.
#datascience #machinelearning #ai #Python #python3 #sql #deeplearning
#computervision #computerscience #programming #bigdata #architecture #datavisualization #dataanalytics #dataanalysis #dataanalyst #machinelearningalgorithms #machinelearningengineer
DataSpoof pinned ยซ๐๐๐๐ก๐ ๐๐ฎ๐๐ฎ ๐ฆ๐ฐ๐ถ๐ฒ๐ป๐ฐ๐ฒ ๐๐ป๐๐ฒ๐ฟ๐๐ถ๐ฒ๐ ๐ค๐๐ฒ๐๐๐ถ๐ผ๐ป: How does an ARIMA model work? The most common question if you have a forecasting projects in your resume, or the role requires forecasting experience. To explain this, let's start by breaking down ARIMA, and I meanโฆยป
Top 10 GitHub Repositories to Ace Your Next Analytics Interview
These repositories offer an extensive u range of resources, tutorials, and projects to help you excel in data science and analytics interviews:
1. Machine Learning Interview - 9.1k Stars
Link: https://lnkd.in/g68_2wR7
2. 500+ AI Projects List with Code - 20.2k Stars
Link: https://lnkd.in/g2wwkU6c
3. 100 Days of ML Code - 45.2k Stars
Link: https://lnkd.in/ggu4zHp3
4. Awesome Data Science - 25k Stars
Link: https://lnkd.in/gnvvpZjj
5. Data Science For Beginners - 28.1k Stars
Link: https://lnkd.in/gJacHejc
6. Data Science Masters - 24.9k Stars
Link: https://lnkd.in/gXbY6R6C
7. Awesome Artificial Intelligence - 10.8k Stars
Link: https://lnkd.in/gwjPBXkq
8. Homemade Machine Learning - 23k Stars
Link: https://lnkd.in/giM26Ak2
9. Data Science Interviews - 8.9k Stars
Link: https://lnkd.in/gEPM9TYg
10. Data Science Best Resources - 2.9k Stars
Link: https://lnkd.in/g8Q6ammy
These repositories offer an extensive u range of resources, tutorials, and projects to help you excel in data science and analytics interviews:
1. Machine Learning Interview - 9.1k Stars
Link: https://lnkd.in/g68_2wR7
2. 500+ AI Projects List with Code - 20.2k Stars
Link: https://lnkd.in/g2wwkU6c
3. 100 Days of ML Code - 45.2k Stars
Link: https://lnkd.in/ggu4zHp3
4. Awesome Data Science - 25k Stars
Link: https://lnkd.in/gnvvpZjj
5. Data Science For Beginners - 28.1k Stars
Link: https://lnkd.in/gJacHejc
6. Data Science Masters - 24.9k Stars
Link: https://lnkd.in/gXbY6R6C
7. Awesome Artificial Intelligence - 10.8k Stars
Link: https://lnkd.in/gwjPBXkq
8. Homemade Machine Learning - 23k Stars
Link: https://lnkd.in/giM26Ak2
9. Data Science Interviews - 8.9k Stars
Link: https://lnkd.in/gEPM9TYg
10. Data Science Best Resources - 2.9k Stars
Link: https://lnkd.in/g8Q6ammy
lnkd.in
LinkedIn
This link will take you to a page thatโs not on LinkedIn
Day 4 is available in our YouTube channel.
Go watch it, like and comments if you have any doubts regarding implementation.
Support us by subscribing aiming for 1000 subscriber so we can uploading machine learning and data science videos also
https://youtu.be/l31_x1ghzPU?si=Bx_S-KtSubncPCJJ
Go watch it, like and comments if you have any doubts regarding implementation.
Support us by subscribing aiming for 1000 subscriber so we can uploading machine learning and data science videos also
https://youtu.be/l31_x1ghzPU?si=Bx_S-KtSubncPCJJ
YouTube
Python Tutorials for Beginners Day 4
In this video you will be going to learn about the concetps of classes and objects in Python programming.
- Implementation of Class and Objects
- OOPS concepts like Inheritance, Polymorphism, Abstraction, Encapsulation
- Function overloading and overridingโฆ
- Implementation of Class and Objects
- OOPS concepts like Inheritance, Polymorphism, Abstraction, Encapsulation
- Function overloading and overridingโฆ
๐๐๐ญ๐ ๐๐ง๐ ๐ข๐ง๐๐๐ซ ๐๐ Interview Experience at PayPal.
I wanted to share my experience interviewing for the ๐๐๐ญ๐ ๐๐ง๐ ๐ข๐ง๐๐๐ซ ๐๐ position at PayPal.
Here's a breakdown of the process:
๐๐ง๐ฅ๐ข๐ง๐ ๐๐ฌ๐ฌ๐๐ฌ๐ฌ๐ฆ๐๐ง๐ญ (๐๐):
The first step was an online assessment sent by the recruiter. Clearing this assessment led to two technical rounds being scheduled, separated by a gap of five days.
๐๐๐๐ก๐ง๐ข๐๐๐ฅ ๐๐จ๐ฎ๐ง๐ ๐:
This round was with a Data Engineer III and focused on problem-solving and SQL.
๐). ๐๐๐ ๐๐ฎ๐๐ฌ๐ญ๐ข๐จ๐ง๐ฌ:
1. ๐โ๐ ๐ ๐๐๐๐ค๐๐ก๐๐ ๐๐๐๐ ๐๐๐๐๐๐๐.
2. ๐ด ๐๐๐๐๐๐๐ก๐ฆ ๐๐ข๐๐ข๐ ๐๐๐๐๐๐๐ (I don't recall the exact details but was similar to those dealing with task prioritization).
๐). ๐๐๐ ๐๐ฎ๐๐ฌ๐ญ๐ข๐จ๐ง๐ฌ:
Focused on window functions, their usage, and optimization strategies.
๐๐๐๐ก๐ง๐ข๐๐๐ฅ ๐๐จ๐ฎ๐ง๐ ๐ (๐๐๐ฌ๐ข๐ ๐ง ๐๐จ๐ฎ๐ง๐):
This was done with a Staff Data Engineer and had three main parts:
A). ๐๐ซ๐จ๐ฃ๐๐๐ญ ๐๐ข๐ฌ๐๐ฎ๐ฌ๐ฌ๐ข๐จ๐ง:
Shared details about my past projects. Also discussed best practices for software and data engineering, including how I implemented these in my projects.
B). ๐๐๐ฌ๐ข๐ ๐ง ๐๐ฎ๐๐ฌ๐ญ๐ข๐จ๐ง:
The scenario involved multiple data sources such as Hadoop, S3, and Oracle DB. I was tasked with designing a solution to migrate data to a final S3 bucket.
Explained my choices for services and tools, including error logging, scalability, and fault tolerance.
C). ๐๐ฉ๐๐ซ๐ค ๐๐จ๐๐ข๐ง๐ ๐๐ก๐๐ฅ๐ฅ๐๐ง๐ ๐:
Given two data frames, I had to perform some processing and store the final output in another data frame.
๐๐๐ง๐๐ ๐๐ซ๐ข๐๐ฅ ๐๐จ๐ฎ๐ง๐ (๐๐จ๐ฎ๐ง๐ ๐):
This was with the Senior Engineering Manager, who was also the hiring manager for this role.
๐๐จ๐ฉ๐ข๐๐ฌ ๐๐ข๐ฌ๐๐ฎ๐ฌ๐ฌ๐๐:
A). ๐๐ซ๐จ๐ฃ๐๐๐ญ๐ฌ : A deep dive into my projects, focusing on why specific tools and services were chosen.
B). ๐๐๐๐ฅ ๐๐ข๐๐ ๐๐๐๐ง๐๐ซ๐ข๐จ :
How I would handle pipeline issues, like overload situations or service downtimes.
Behavioral Questions: Highlighted my problem-solving, teamwork, and adaptability skills.
๐๐ ๐๐จ๐ฎ๐ง๐ (๐๐จ๐ฎ๐ง๐ ๐):
The final round was with HR. We discussed the offer details PayPal was providing, covered some standard behavioral questions related to company culture and expectations.
Credit- Shubham shukla
I wanted to share my experience interviewing for the ๐๐๐ญ๐ ๐๐ง๐ ๐ข๐ง๐๐๐ซ ๐๐ position at PayPal.
Here's a breakdown of the process:
๐๐ง๐ฅ๐ข๐ง๐ ๐๐ฌ๐ฌ๐๐ฌ๐ฌ๐ฆ๐๐ง๐ญ (๐๐):
The first step was an online assessment sent by the recruiter. Clearing this assessment led to two technical rounds being scheduled, separated by a gap of five days.
๐๐๐๐ก๐ง๐ข๐๐๐ฅ ๐๐จ๐ฎ๐ง๐ ๐:
This round was with a Data Engineer III and focused on problem-solving and SQL.
๐). ๐๐๐ ๐๐ฎ๐๐ฌ๐ญ๐ข๐จ๐ง๐ฌ:
1. ๐โ๐ ๐ ๐๐๐๐ค๐๐ก๐๐ ๐๐๐๐ ๐๐๐๐๐๐๐.
2. ๐ด ๐๐๐๐๐๐๐ก๐ฆ ๐๐ข๐๐ข๐ ๐๐๐๐๐๐๐ (I don't recall the exact details but was similar to those dealing with task prioritization).
๐). ๐๐๐ ๐๐ฎ๐๐ฌ๐ญ๐ข๐จ๐ง๐ฌ:
Focused on window functions, their usage, and optimization strategies.
๐๐๐๐ก๐ง๐ข๐๐๐ฅ ๐๐จ๐ฎ๐ง๐ ๐ (๐๐๐ฌ๐ข๐ ๐ง ๐๐จ๐ฎ๐ง๐):
This was done with a Staff Data Engineer and had three main parts:
A). ๐๐ซ๐จ๐ฃ๐๐๐ญ ๐๐ข๐ฌ๐๐ฎ๐ฌ๐ฌ๐ข๐จ๐ง:
Shared details about my past projects. Also discussed best practices for software and data engineering, including how I implemented these in my projects.
B). ๐๐๐ฌ๐ข๐ ๐ง ๐๐ฎ๐๐ฌ๐ญ๐ข๐จ๐ง:
The scenario involved multiple data sources such as Hadoop, S3, and Oracle DB. I was tasked with designing a solution to migrate data to a final S3 bucket.
Explained my choices for services and tools, including error logging, scalability, and fault tolerance.
C). ๐๐ฉ๐๐ซ๐ค ๐๐จ๐๐ข๐ง๐ ๐๐ก๐๐ฅ๐ฅ๐๐ง๐ ๐:
Given two data frames, I had to perform some processing and store the final output in another data frame.
๐๐๐ง๐๐ ๐๐ซ๐ข๐๐ฅ ๐๐จ๐ฎ๐ง๐ (๐๐จ๐ฎ๐ง๐ ๐):
This was with the Senior Engineering Manager, who was also the hiring manager for this role.
๐๐จ๐ฉ๐ข๐๐ฌ ๐๐ข๐ฌ๐๐ฎ๐ฌ๐ฌ๐๐:
A). ๐๐ซ๐จ๐ฃ๐๐๐ญ๐ฌ : A deep dive into my projects, focusing on why specific tools and services were chosen.
B). ๐๐๐๐ฅ ๐๐ข๐๐ ๐๐๐๐ง๐๐ซ๐ข๐จ :
How I would handle pipeline issues, like overload situations or service downtimes.
Behavioral Questions: Highlighted my problem-solving, teamwork, and adaptability skills.
๐๐ ๐๐จ๐ฎ๐ง๐ (๐๐จ๐ฎ๐ง๐ ๐):
The final round was with HR. We discussed the offer details PayPal was providing, covered some standard behavioral questions related to company culture and expectations.
Credit- Shubham shukla
DataSpoof pinned ยซ๐๐๐ญ๐ ๐๐ง๐ ๐ข๐ง๐๐๐ซ ๐๐ Interview Experience at PayPal. I wanted to share my experience interviewing for the ๐๐๐ญ๐ ๐๐ง๐ ๐ข๐ง๐๐๐ซ ๐๐ position at PayPal. Here's a breakdown of the process: ๐๐ง๐ฅ๐ข๐ง๐ ๐๐ฌ๐ฌ๐๐ฌ๐ฌ๐ฆ๐๐ง๐ญ (๐๐): The first step was an online assessment sent by the recruiter.โฆยป