Skip to content

Commit 281d54f

Browse files
author
M.Notter
committed
Moves python scripts to assets folder
1 parent 907dcef commit 281d54f

8 files changed

+7
-7
lines changed

_posts/2023-10-23-01_scikit_simple.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@ This post is part of a comprehensive machine learning series that takes you from
99

1010
1. **Getting Started with Machine Learning** (Current Post)
1111
Basic classification using Scikit-learn with the MNIST dataset
12-
([View code]({{ site.baseurl }}/scripts/01_scikit_simple.py))
12+
([View code]({{ site.baseurl }}/assets/scripts/01_scikit_simple.py))
1313

1414
2. **Deep Learning Fundamentals**
1515
Introduction to neural networks using TensorFlow
16-
([View code]({{ site.baseurl }}/scripts/02_tensorflow_simple.py))
16+
([View code]({{ site.baseurl }}/assets/scripts/02_tensorflow_simple.py))
1717

1818
3. **Advanced Machine Learning**
1919
Complex regression pipelines with Scikit-learn
20-
([View code]({{ site.baseurl }}/scripts/03_scikit_advanced.py))
20+
([View code]({{ site.baseurl }}/assets/scripts/03_scikit_advanced.py))
2121

2222
4. **Advanced Deep Learning**
2323
Sophisticated neural network architectures in TensorFlow
24-
([View code]({{ site.baseurl }}/scripts/04_tensorflow_advanced.py))
24+
([View code]({{ site.baseurl }}/assets/scripts/04_tensorflow_advanced.py))
2525

2626
Each tutorial builds upon concepts from previous posts while introducing new techniques and best practices. Whether you're new to machine learning or looking to expand your skills, this series provides hands-on experience with real-world datasets and modern ML tools.
2727

_posts/2023-10-23-02_tensorflow_simple.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description: Building your first neural network for image classification
88

99
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.
1010

11-
The complete code for this tutorial can be found in the [02_tensorflow_simple.py]({{ site.baseurl }}/scripts/02_tensorflow_simple.py) script.
11+
The complete code for this tutorial can be found in the [02_tensorflow_simple.py]({{ site.baseurl }}/assets/scripts/02_tensorflow_simple.py) script.
1212

1313
### Why Neural Networks?
1414

_posts/2023-10-23-03_scikit_advanced.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description: Exploring complex regression problems and preprocessing pipelines
88

99
In this third part of our series, we'll explore more sophisticated machine learning techniques using [Scikit-learn](https://scikit-learn.org/stable/). While Parts 1 and 2 focused on classification, we'll now tackle regression problems and learn how to build complex preprocessing pipelines. We'll use the California Housing dataset to demonstrate these concepts.
1010

11-
The complete code for this tutorial can be found in the [03_scikit_advanced.py]({{ site.baseurl }}/scripts/03_scikit_advanced.py) script.
11+
The complete code for this tutorial can be found in the [03_scikit_advanced.py]({{ site.baseurl }}/assets/scripts/03_scikit_advanced.py) script.
1212

1313
**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.
1414

_posts/2023-10-23-04_tensorflow_advanced.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description: Implementing sophisticated neural networks for regression tasks
77

88
In this final part of our series, we'll explore advanced TensorFlow concepts by building a sophisticated regression model. While Part 2 introduced basic neural networks for classification, we'll now tackle regression and demonstrate TensorFlow's powerful features for model customization and optimization. However, as in part 3, the purpose of this tutorial is to highlight the flexibility and capabilities of TensorFlow. Therefore, this showcase is mostly about introducing you to those advanced routines and not about how to create the best regression model.
99

10-
The complete code for this tutorial can be found in the [04_tensorflow_advanced.py]({{ site.baseurl }}/scripts/04_tensorflow_advanced.py) script.
10+
The complete code for this tutorial can be found in the [04_tensorflow_advanced.py]({{ site.baseurl }}/assets/scripts/04_tensorflow_advanced.py) script.
1111

1212
### Why Advanced Neural Networks?
1313

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)