From c50b4f8a838a79ef70ef5acc02b2d9c733d7e417 Mon Sep 17 00:00:00 2001 From: CataRC888 <131907052+CataRC888@users.noreply.github.com> Date: Fri, 20 Dec 2024 23:52:48 +0100 Subject: [PATCH 1/2] Update index.html --- index.html | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/index.html b/index.html index 959ca17..64790df 100644 --- a/index.html +++ b/index.html @@ -700,6 +700,46 @@
Why did we create a model? Well, because sometimes movie genres feel like they were chosen during a particularly confusing game of darts. "Is it a comedy? A drama? Both? Neither?" Genres can often be vague, misleading, or downright baffling. So, we decided to do better. Enter our movie genre predictor model, where data speaks louder than human guesswork.
+Why so many models? + Since we do not chill with our objective, we are not going to use just a model. Why? + Because we don’t know which one will work best (we’re not mind readers, sadly). + Different models are good at different tasks, so we threw six contenders into the ring: + four classic algorithms and two neural networks. Think of it as our own little algorithm Hunger Games. +
+Imagine a flowchart where every question is a decision point. + A decision tree looks at your movie data — + say, runtime, budget, or number of actors — and splits it into "branches" based on yes/no questions. +
+At the "leaves" of the tree (the end points), the algorithm decides whether your movie belongs to a specific genre or not one at a time: We are going to have one tree per genre, each ruled by different split decisions. Decision trees are straightforward, intuitive, and great for explaining why a movie is classified the way it is — like Sherlock Holmes explaining his deductions. +
+ +A single tree is good, but sometimes it can overthink or overfit and look, being a lonly tree is sad, isn’t it?. Random forests solve this by creating lots of decision trees, each trained on slightly different subsets of the data using techniques like bootstrap. For every genre we have a forest: Every tree votes, and the majority vote decides the fate of the movies (belongs or not belongs to that genre…). +
+Random forests add robustness and reduce the risk of a single bad tree messing everything up.
+ +This model doesn’t assume much about the data. Instead, it lets the data speak for itself by comparing your movie to its "neighbors."
+
Here's how it works:
+
This method is simple but effective. For example, if your movie is surrounded by romantic comedies, chances are it’s one too. It’s like asking your closest friends, "What genre does this movie feel like to you?"
+ From 620b251e37827d56c0d8a8f28eea78d6c5f7d236 Mon Sep 17 00:00:00 2001 From: MaikTheTurboPotato