Lecture - 1 Svelte Introduction
2:20
21 күн бұрын
Particle Swarm Optimization
5:06
Classification v/s Regression
1:25
Lecture - 3 Gradient Descent
15:50
Notepad clone part 3
29:25
9 ай бұрын
Notepad Clone part 2
19:14
9 ай бұрын
Notepad clone Part 1
24:34
9 ай бұрын
Laptop price prediction
35:15
9 ай бұрын
Pistachio types detection
24:33
10 ай бұрын
Surge price prediction
30:29
10 ай бұрын
Netflix stock price prediction
32:39
Satellite image classification
43:02
Пікірлер
@BhideSvelte
@BhideSvelte 6 күн бұрын
nicee
@user-gj3kz7cm3x
@user-gj3kz7cm3x Ай бұрын
Wtf
@rimplegupta8988
@rimplegupta8988 Ай бұрын
👍
@rimplegupta8988
@rimplegupta8988 Ай бұрын
Keep it up
@rimplegupta8988
@rimplegupta8988 2 ай бұрын
Nice❤
@samridhigupta1657
@samridhigupta1657 2 ай бұрын
Good insights on the basics. But it is possible to get probabilities on decision trees as well. We can discuss this in detail later.
@gauranggupta6422
@gauranggupta6422 2 ай бұрын
Yes it is possible and sklearn library already has a function for it. Here is the link for more detail. scikit-learn.org/stable/modules/generated/sklearn.tree.DecisionTreeClassifier.html#sklearn.tree.DecisionTreeClassifier.predict_proba
@ashwinichandrachar
@ashwinichandrachar 3 ай бұрын
can you explain how to find number of alive nodes vs rounds in cluster head selection
@gauranggupta6422
@gauranggupta6422 3 ай бұрын
Give me some time. I will give you a detailed answer by end of this week.
@gauranggupta6422
@gauranggupta6422 3 ай бұрын
For rounds in cluster head selection, I have made a notebook. Check it and tell me if it answers the question or if you require more detail. www.kaggle.com/code/gauranggupta123/cluster-head-selection-using-cso For the process of finding the number of alive nodes, there are certain assumptions you have to make. Let's take an example so that it is easy to understand. Assumptions: Energy stored in each node:- 50 units Energy consumed in normal operations per day:- 1 unit Energy consumed when communicating per day:- 4 units ( I assume that at particular times of t day, sensors send readings to base stations for further processing and analysis. This is a variable depending on what type of application you are using your nodes for) Recharge by other sources (sun, wind, water, geothermal, etc) per day:- 1 unit So in one day, the sensor consumes 1 + 4 - 1 = 4 units of energy. Total number of days the nodes will live = 50 / 4 = 12.5 days. The above example is a simulation of how a node's lifetime is calculated. Even in this example, I haven't considered the environmental conditions the nodes are in. Some environments are extremely hostile and can damage the nodes' circuits. These nodes are generally preferred in hostile environments or the environments we want to analyze without going there. Also, you can add several variables that only one node is added per day so this example will become the lifetime of one node. To know the sensor node network lifetime is difficult because there is no clearly defined method for it. Some researchers agree on the fact that if more than half of the nodes in the system are dead that means the network is considered dead, others argue that even if one node is alive the network is alive. Then there are some problems with each topology. Here topology means in which manner the nodes communicate with one another and base station. The most commonly used topology is tree topology. In this, there is a vulnerability that if an upper node collapses, the node that only communicates to it to send data to the base station will not be able to do that and they will be considered practically dead as we are not getting any data out of them.
@pratikshadeshmukh9346
@pratikshadeshmukh9346 4 ай бұрын
Nice explanation Aap bahot aage tak jaoge🎉
@yashvardhansharma538
@yashvardhansharma538 5 ай бұрын
Thanku for starting this series.Really helpful
@yashvardhansharma538
@yashvardhansharma538 6 ай бұрын
Can u suggest some places to learn machine learning... I know basics but i have not done... Any projects. Regards
@gauranggupta6422
@gauranggupta6422 6 ай бұрын
You can start on kaggle. They have courses on Machine Learning along with projects. After that explore datasets and try to apply machine learning models on data to get predictions
@vinaychaurasiya4386
@vinaychaurasiya4386 7 ай бұрын
Good work bro
@gauranggupta6422
@gauranggupta6422 7 ай бұрын
Thank you so much 😀
@mdsakawathossain5306
@mdsakawathossain5306 8 ай бұрын
Thanks for sharing sir. I learn a lot of techniques such as for loop in all regression
@gauranggupta6422
@gauranggupta6422 8 ай бұрын
Glad it was helpful!
@vineshgupta4842
@vineshgupta4842 9 ай бұрын
Good work mate
@gauranggupta6422
@gauranggupta6422 9 ай бұрын
Thanks 👍
@samridhigupta1657
@samridhigupta1657 9 ай бұрын
Very well explained Gaurang. Great effort 👏👏👏
@gauranggupta6422
@gauranggupta6422 9 ай бұрын
Glad you liked it
@cdbansal
@cdbansal 10 ай бұрын
Well done champ !!!
@aryanshgupta8591
@aryanshgupta8591 10 ай бұрын
Well Done ❤
@aryanshgupta8591
@aryanshgupta8591 10 ай бұрын
Well Done Bhaiya ❤🎉
@gauranggupta6422
@gauranggupta6422 10 ай бұрын
When importing libraries at 2:25 I wrongly imported SVC in place of SVR. When using the model I used SVR.
@gauranggupta6422
@gauranggupta6422 Жыл бұрын
Github link - github.com/Gaurang-gupta/News-app-yt