Sachin Kumar Profile picture
Dec 6, 2022 โ€ข 4 tweets โ€ข 3 min read โ€ข Read on X
๐Ÿ“Which ๐—˜๐˜…๐—ฐ๐—ฒ๐—น features you must know as ๐——๐—ฎ๐˜๐—ฎ ๐—”๐—ป๐—ฎ๐—น๐˜†๐˜€๐˜? ๐Ÿ”ฅ

๐Ÿงต๐Ÿ‘‡
- ๐—ฃ๐—ถ๐˜ƒ๐—ผ๐˜ ๐˜๐—ฎ๐—ฏ๐—น๐—ฒ๐˜€ ๐—ฎ๐—ป๐—ฑ ๐—ฝ๐—ถ๐˜ƒ๐—ผ๐˜ ๐—ฐ๐—ต๐—ฎ๐—ฟ๐˜๐˜€
- ๐—–๐—ผ๐—ป๐—ฑ๐—ถ๐˜๐—ถ๐—ผ๐—ป๐—ฎ๐—น ๐—ณ๐—ผ๐—ฟ๐—บ๐—ฎ๐˜๐˜๐—ถ๐—ป๐—ด
- ๐—–๐—ผ๐—ป๐—ฐ๐—ฎ๐˜๐—ฒ๐—ป๐—ฎ๐˜๐—ฒ
- ๐—œ๐—ณ, ๐˜€๐˜‚๐—บ๐—ถ๐—ณ, ๐—ฐ๐—ผ๐˜‚๐—ป๐˜๐—ถ๐—ณ, ๐—ฎ๐˜ƒ๐—ฒ๐—ฟ๐—ฎ๐—ด๐—ฒ๐—ถ๐—ณ
- ๐—œ๐—ณ ๐—ฒ๐—ฟ๐—ฟ๐—ผ๐—ฟ๐˜€
- ๐—จ๐—ป๐—ถ๐—พ๐˜‚๐—ฒ
- ๐—ง๐—ฟ๐—ถ๐—บ
- ๐—ฆ๐—ผ๐—ฟ๐˜
- ๐—–๐—ผ๐˜‚๐—ป๐˜๐—ฏ๐—น๐—ฎ๐—ป๐—ธ
- ๐——๐—ฎ๐˜†๐˜€ ๐—ฎ๐—ป๐˜€ ๐—ก๐—ฒ๐˜๐˜„๐—ผ๐—ฟ๐—ธ๐—ฑ๐—ฎ๐˜†๐˜€
- ๐—ฅ๐—ฎ๐—ป๐—ธ
- ๐—ฆ๐˜‚๐—บ๐—ฝ๐—ฟ๐—ผ๐—ฑ๐˜‚๐—ฐ๐˜
- ๐—ฆ๐˜‚๐—บ, ๐—–๐—ผ๐˜‚๐—ป๐˜, ๐—”๐˜ƒ๐—ฒ๐—ฟ๐—ฎ๐—ด๐—ฒ
- ๐— ๐—ถ๐—ป, ๐— ๐—ฎ๐˜…, ๐— ๐—ฒ๐—ฑ๐—ถ๐—ฎ๐—ป, ๐—ฆ๐˜๐—ฑ๐—ฒ๐˜ƒ
- ๐—ฅ๐—ถ๐—ด๐—ต๐˜, ๐—Ÿ๐—ฒ๐—ณ๐˜, ๐— ๐—ถ๐—ฑ
๐Ÿ“Œ Follow @SachinK02316651 for more Update

#Excel #ExcelTips #exceltricks #DataScience #Data #dataprotection #SQL #Python #PowerBI Image

โ€ข โ€ข โ€ข

Missing some Tweet in this thread? You can try to force a refresh
ใ€€

Keep Current with Sachin Kumar

Sachin Kumar Profile picture

Stay in touch and get notified when new unrolls are available from this author!

Read all threads

This Thread may be Removed Anytime!

PDF

Twitter may remove this content at anytime! Save it as PDF for later use!

Try unrolling a thread yourself!

how to unroll video
  1. Follow @ThreadReaderApp to mention us!

  2. From a Twitter thread mention us with a keyword "unroll"
@threadreaderapp unroll

Practice here first or read more on our help page!

More from @Sachintukumar

Jul 20
Not every deal-maker hits the target โ€” SQL finds who actually did.

Oracle #SQL Interview Question

A Complete thread Image
Q) As a data analyst on @Oracle Sales Operations team, you are given a list of salespeopleโ€™s deals, & annual quota they need to hit.

Write a query that outputs each employee id & whether they hit quota or not ('yes' or 'no'). Order the results by employee id in ascending order
Definitions: - deal_size: Deals acquired by a salesperson in the year.

Each salesperson may have more than 1 deal. - quota: Total annual quota for each salesperson.
Read 8 tweets
May 6
Do You Really Know How #SQL Executes Your Query?

Letโ€™s talk about actual execution order of an SQL query โ€” itโ€™s not order you write it in!

๐Ÿงต Image
Even though we write SQL like this:

SELECT
FROM
WHERE
GROUP BY
HAVING
ORDER BY
LIMIT
Internally, SQL follows a different execution flow

๐ŸŽฏ INTERVIEW TIP:
Why canโ€™t you use SELECT aliases in WHERE clause?
Because WHERE runs before SELECT!

Mastering this flow is crucial for writing optimized queries & cracking SQL interviews.
Read 4 tweets
Mar 27, 2024
๐Ÿ“Day 35 of #Deeplearning

โœ…Topic - Backpropagation in CNN

โ–ซ๏ธ #BackPropagation is an algorithm to train neural networks.ย It is the method of fine-tuning weights of a neural network based on error rate obtained in previous epoch (i.e., iteration)

A Complete ๐Ÿงต Image
โœ…Backpropagation is an algorithm for supervised learning of artificial neural networks using #gradientdescent

Given an artificial neural network and an error function, method calculates gradient of error function with respect to neural network's weights using chain rule Image
โ–ซ๏ธ Total Trainable Parameters-

โ–ซ๏ธ Forward Propagation- Image
Read 13 tweets
Mar 24, 2024
โœ…Day 32 of #Deeplearning

๐Ÿ“Topic - Padding & Strides

โ–ซ๏ธ #Padding is simplyย a process of adding layers of zeros to our input images

โ–ซ๏ธ #Stride describesย step size of kernel when you slide a filter over an input image

A Complete ๐Ÿงต
โ–ซ๏ธ Padding is simplyย a process of adding layers of zeros to our input images.

The purpose of padding is to preserve original size of an image when applying a #convolutional filter & enable filter to perform full convolutions on edge pixel Image
โ–ซ๏ธ So to prevent this-

We will be using padding of size 2 (i.e. original image(5) โ€“ feature map(3)).

It is also known as zero padding because we are padding it with 0 Image
Read 13 tweets
Mar 20, 2024
โœ…Day 29 of #Deeplearning

โ–ซ๏ธ Topic - Keras Tuner & Hyperparameter Tuning

๐Ÿ“#KerasTuner is a powerful library that allows you to automate hyperparameter tuning process & search for best model configuration

A Complete ๐Ÿงต Image
A ML model has two types of parameters:

Trainable parameters - learned by algorithm during training. For instance weights of a neural network are trainable parameters

#Hyperparameters - set before launching learning process. learning rate in a dense layer are hyperparameter Image
โœ…Defining the Model

Define a simple deep learning model that consists of three hidden layers & an output layer with a #softmax activation function

use Adam optimizer and categorical cross-entropy loss function Image
Read 12 tweets
Feb 17, 2024
โœ…Day6โƒฃ of #Deeplearning๐Ÿงฌ

โ–ซ๏ธ Topic - Multilayer Perceptrons

๐Ÿ“#Multilayerperceptron is type of feedforward neural network consisting of fully connected neurons with nonlinear kind of activation function

It is widely used to distinguish data that is not linearly separable Image
โœ…Some of its key concepts

Input layer
Hidden layer
Output layer
Weights
Bias Neurons
โœ…How Stochastic #GradientDescent (SGD) Work -

Initialization
Iterative Optimization
Direction of Descent
Learning Rate
Convergence
Read 10 tweets

Did Thread Reader help you today?

Support us! We are indie developers!


This site is made by just two indie developers on a laptop doing marketing, support and development! Read more about the story.

Become a Premium Member ($3/month or $30/year) and get exclusive features!

Become Premium

Don't want to be a Premium member but still want to support us?

Make a small donation by buying us coffee ($5) or help with server cost ($10)

Donate via Paypal

Or Donate anonymously using crypto!

Ethereum

0xfe58350B80634f60Fa6Dc149a72b4DFbc17D341E copy

Bitcoin

3ATGMxNzCUFzxpMCHL5sWSt4DVtS8UqXpi copy

Thank you for your support!

Follow Us!

:(