machinelearninginfo
رفتن به کانال در Telegram
Free Machine Learning Resources @machinelearning_info Covering all topics related to Machine learning, Statistics and Deep Learning
نمایش بیشتر1 424
مشترکین
اطلاعاتی وجود ندارد24 ساعت
اطلاعاتی وجود ندارد7 روز
-430 روز
آرشیو پست ها
1 424
Rubik's cube solution using opencv : https://www.instagram.com/reel/Cn4MGBUt7O5/?igshid=Yzg5MTU1MDY=
1 424
Become a data science pro by following these best Practices : https://www.instagram.com/reel/Cn4Ee1TJk4X/?igshid=Yzg5MTU1MDY=
.
.
1 424
AI Reimagines Harry Potter Characters As Toddlers And Results Are Adorable
Check out the results here :
https://www.instagram.com/p/Cnwk2M7vyQg/?igshid=Yzg5MTU1MDY=
.
1 424
Don't let these 8 common mistakes hold you back from reaching your full potential as a data scientist beginner! Avoid these pitfalls and soar to success in the field!
https://www.instagram.com/reel/CntHak7oQ9z/?igshid=Yzg5MTU1MDY=
1 424
Artist work with the AI to predict human evolution : https://www.instagram.com/reel/CnHazN9oyhp/?igshid=Yzg5MTU1MDY=
1 424
1.What is the meaning of term weight initialization in neural networks?
In neural networking, weight initialization is one of the essential factors. A bad weight initialization prevents a network from learning. On the other side, a good weight initialization helps in giving a quicker convergence and a better overall error. Biases can be initialized to zero. The standard rule for setting the weights is to be close to zero without being too small.
2.What is Cross-validation in Machine Learning?
Cross-validation allows a system to increase the performance of the given Machine Learning algorithm. This sampling process is done to break the dataset into smaller parts that have the same number of rows, out of which a random part is selected as a test set and the rest of the parts are kept as train sets. Cross-validation consists of the following techniques:
• Holdout method
• K-fold cross-validation
• Stratified k-fold cross-validation
• Leave p-out cross-validation
3.What is a Self-Join?
A self-join is a type of join that can be used to connect two tables. As a result, it is a unary relationship. Each row of the table is attached to itself and all other rows of the same table in a self-join. As a result, a self-join is mostly used to combine and compare rows from the same database table.
4. What are the types of views in SQL?
In SQL, the views are classified into four types. They are:
Simple View: A view that is based on a single table and does not have a GROUP BY clause or other features.
Complex View: A view that is built from several tables and includes a GROUP BY clause as well as functions.
Inline View: A view that is built on a subquery in the FROM clause, which provides a temporary table and simplifies a complicated query.
Materialized View: A view that saves both the definition and the details. It builds data replicas by physically preserving them.
