You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: _posts/2023-10-23-01_scikit_simple.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ The series consists of four parts:
14
14
3.**[Advanced Machine Learning with Scikit-learn]({{ site.baseurl }}/blog/2023/03_scikit_advanced)** (Part 3)<br>Exploring complex regression problems and model optimization
[Scikit-learn](https://scikit-learn.org/stable/) is Python's most popular machine learning library for a reason. It provides:
20
20
- A consistent interface across different algorithms
@@ -408,7 +408,7 @@ We've seen how Scikit-learn's consistent API makes it easy to experiment with di
408
408
409
409
In the next post, we'll tackle the same MNIST classification problem using TensorFlow, introducing neural networks and deep learning concepts. This will help you understand the differences between classical machine learning approaches and deep learning, and when to use each.
410
410
411
-
Key takeaways:
411
+
**Key takeaways:**
412
412
1. Even simple models can achieve good performance on well-structured problems
413
413
2. Start with simple models and gradually increase complexity
414
414
3. Cross-validation is crucial for reliable performance estimation
@@ -418,4 +418,4 @@ Key takeaways:
418
418
419
419
In Part 2, we'll explore how neural networks approach the same problem using TensorFlow, introducing deep learning concepts and comparing the two approaches.
420
420
421
-
[Continue to Part 2: Basic Neural Networks with TensorFlow →]({{ site.baseurl }}/blog/2023/02_tensorflow_simple)
421
+
[Continue to Part 2 →]({{ site.baseurl }}/blog/2023/02_tensorflow_simple)
Copy file name to clipboardexpand all lines: _posts/2023-10-23-02_tensorflow_simple.md
+6-5
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ description: Building your first neural network for image classification
8
8
9
9
In this second part of our machine learning series, we'll implement the same MNIST classification task using [TensorFlow](https://www.tensorflow.org/). While Scikit-learn excels at classical machine learning, TensorFlow shines when building neural networks. We'll see how deep learning approaches differ from traditional methods and learn the basic concepts of neural network architecture.
10
10
11
-
## Why Neural Networks?
11
+
###Why Neural Networks?
12
12
13
13
While our Scikit-learn models performed well in Part 1, neural networks offer several key advantages for image classification:
14
14
-**Automatic feature learning**: No need to manually engineer features
@@ -329,7 +331,7 @@ In this tutorial, we've introduced neural networks using TensorFlow:
329
331
330
332
Our neural network achieved comparable accuracy to our Scikit-learn models (~99%), but this time on images with a higher resoltuion with the potential for even better performance through further optimization.
331
333
332
-
Key takeaways:
334
+
**Key takeaways:**
333
335
1. Neural networks can work directly with structured data like images
334
336
2. Architecture design is crucial for good performance
335
337
3. Training requires careful parameter selection
@@ -338,5 +340,4 @@ Key takeaways:
338
340
339
341
In Part 3, we'll explore more advanced machine learning concepts using Scikit-learn, focusing on regression problems and complex preprocessing pipelines.
340
342
341
-
[← Back to Part 1: Getting Started with Scikit-learn]({{ site.baseurl }}/blog/2023/01_scikit_simple)
342
-
[Continue to Part 3: Advanced Machine Learning with Scikit-learn →]({{ site.baseurl }}/blog/2023/03_scikit_advanced)
343
+
[← Back to Part 1]({{ site.baseurl }}/blog/2023/01_scikit_simple) or [Continue to Part 3 →]({{ site.baseurl }}/blog/2023/03_scikit_advanced)
Copy file name to clipboardexpand all lines: _posts/2023-10-23-03_scikit_advanced.md
+18-16
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ In this third part of our series, we'll explore more sophisticated machine learn
10
10
11
11
**Note**: The purpose of this post is to highlight the flexibility and capabilities of scikit-learn's advanced features. Therefore, this tutorial focuses on introducing you to those advanced routines rather than creating the optimal regression model.
12
12
13
-
## Why Advanced Preprocessing?
13
+
###Why Advanced Preprocessing?
14
14
15
15
Real-world data rarely comes in a clean, ready-to-use format. Data scientists often spend more time preparing data than training models. Common challenges include:
3. Feature selection can improve model performance
@@ -616,5 +619,4 @@ Key takeaways:
616
619
617
620
In Part 4, we'll explore advanced neural network architectures with TensorFlow, building on both the neural network concepts from Part 2 and the preprocessing techniques we've learned here.
618
621
619
-
[← Back to Part 2: Basic Neural Networks with TensorFlow]({{ site.baseurl }}/blog/2023/02_tensorflow_simple)
620
-
[Continue to Part 4: Advanced Neural Networks with TensorFlow →]({{ site.baseurl }}/blog/2023/04_tensorflow_advanced)
622
+
[← Back to Part 2]({{ site.baseurl }}/blog/2023/02_tensorflow_simple) or [Continue to Part 4 →]({{ site.baseurl }}/blog/2023/04_tensorflow_advanced)
0 commit comments