Skip to content

Commit 5365b84

Browse files
committed
Fix broken url issue
1 parent b098e2c commit 5365b84

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

ai-ml/index.mdx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +0,0 @@
1-
Let $f\colon[a,b]\to\R$ be Riemann integrable. Let $F\colon[a,b]\to\R$ be
2-
$F(x)=\int_{a}^{x} f(t)\,dt$. Then $F$ is continuous, and at all $x$ such that
3-
$f$ is continuous at $x$, $F$ is differentiable at $x$ with $F'(x)=f(x)$.

ai-ml/machine-learning/machine-learning-core/introduction-to-ml.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Building a model isn't just writing code; it's a circular process:
7171

7272
1. **Define the Goal:** What are we trying to predict?
7373
2. **Data Collection:** Gathering raw information.
74-
3. **Data Preprocessing:** Cleaning and scaling (what you learned in the [Data Engineering module](/category/data-engineering-basics)).
74+
3. **Data Preprocessing:** Cleaning and scaling (what you learned in the [Data Engineering module](/ai-ml/category/data-engineering-basics)).
7575
4. **Model Training:** Feeding data to the algorithm.
7676
5. **Evaluation:** Testing the model on data it hasn't seen before.
7777
6. **Deployment:** Putting the model into a real-world app.

ai-ml/machine-learning/machine-learning-core/supervised-learning/regression/elastic-net.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,4 +120,4 @@ print(f"Best L1 Ratio: {model_cv.l1_ratio_}")
120120

121121
---
122122

123-
**You've now covered all the primary linear regression models! But what if your goal isn't to predict a number, but to group similar data points together?** Head over to the [Clustering](/category/clustering) section to explore techniques like K-Means and DBSCAN!
123+
**You've now covered all the primary linear regression models! But what if your goal isn't to predict a number, but to group similar data points together?** Head over to the [Clustering](/ai-ml/category/clustering) section to explore techniques like K-Means and DBSCAN!

docs/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Select a technology below to dive into our structured tutorials. Each path is de
102102
<p>Learn NoSQL database concepts with MongoDB. Store, query, and manage data efficiently for modern applications.</p>
103103
</DocsCard>
104104

105-
<DocsCard header="AI & Machine Learning" href="/machine-learning" icon="/icons/ai-chat.svg">
105+
<DocsCard header="AI & Machine Learning" href="/ai-ml" icon="/icons/ai-chat.svg">
106106
<p>Explore artificial intelligence, machine learning, and neural networks with beginner-friendly examples.</p>
107107
</DocsCard>
108108

0 commit comments

Comments
 (0)