Results for "ROC AUC"
9 / 104 posts
Filter by Category
Logistic Regression — The Superhero of Classification | ML Series Part 3
Logistic Regression explained completely — sigmoid function, evaluation metrics, class imbalance, threshold tuning, and real-world projects in Python. Beginn...
Understanding Stored Procedures in MSSQL
What is a Stored Procedure? A stored procedure is a group of SQL statements that are compiled and saved in the database. Instead of writing the same SQL qu…
SQL Server Deadlock & Performance Monitoring Made Easy
Introduction In SQL Server, performance issues are very common. Sometimes queries run slow, sometimes users get stuck, and sometimes the system becomes unres...
SQL Server Multi-Level Approval Workflow with Auto Skip Logic
In many enterprise applications like HRMS, Travel Requests, Expense Approval, Purchase Approval , we need a multi-level approval workflow . But real system…
What is Machine Learning? A Complete Beginner-Friendly Guide | Part 1
What is Machine Learning, why it matters, and how it works — explained simply for beginners. Covers supervised, unsupervised, and reinforcement learning with...
SQL Server Data Archiving System
Introduction As databases grow, performance starts degrading. Queries become slow, indexes become heavy, and maintenance becomes difficult. This is where dat...
Understanding Cursors in +SQL Server: A Complete Guide
...ta at once. However, there are cases where you may need to process …
Linear Regression — A Complete Deep Dive | ML Series Part 2
Linear Regression explained from scratch — math, types, implementation, evaluation metrics, regularization, and real-world projects in Python. Beginner to ad...
Stored Procedure in MySQL
Syntax for Creating a Stored Procedure DELIMITER // CREATE PROCEDURE procedure_name (IN param1 data_type, OUT param2 data_type) BEGIN -- SQL statements END…