Skip to content

Commit

Permalink
🚑 Move two tutorials
Browse files Browse the repository at this point in the history
  • Loading branch information
EssamWisam committed Jun 4, 2024
1 parent ce2897e commit 420a2a8
Show file tree
Hide file tree
Showing 9 changed files with 33 additions and 32 deletions.
57 changes: 29 additions & 28 deletions _libs/nav/head.js
Original file line number Diff line number Diff line change
Expand Up @@ -238,16 +238,7 @@ const navItems = [
"Understand the different types and methods introduced by MLJ",
]
},
{
name: "KNN & Ridge Regression Learning Network on AMES Pricing Data",
href: "/end-to-end/AMES/",
tags: ["Regression", "Learning Networks", "Hyperparameter Tuning"],
ilos: [
"Get familiar with building baselines models for your machine learning task",
"Learn how to build simple learning networks (advanced model composition) in MLJ",
"Learn how to tune and analyze the evaluation results from learning networks"
]
},

{
name: "KNN, Logistic Regression and PCA on Wine Dataset",
href: "/end-to-end/wine/",
Expand Down Expand Up @@ -328,7 +319,7 @@ const navItems = [
]
},
{
name: "Linear Regression on Temporal Power Generation Data",
name: "Linear Regression on Temporal Power Data",
href: "/end-to-end/powergen/",
tags: ["Data Processing", "Regression"],
ilos: [
Expand All @@ -352,23 +343,7 @@ const navItems = [
]
},
{
name: "Benchmarking Classification Models on Breast Cancer Data",
href: "/end-to-end/breastcancer",
tags: [
"Encoders",
"Classification",
"Iterative Models",
"Distribution Fitter",
"Bayesian Models",
"Neural Networks",
],
ilos: [
"Familiarize yourself with common data preprocessing and visualization workflows",
"Learn how MLJ can be used to benchmark a large set of models against some dataset"
]
},
{
name: "Credit Fraud Detection with Logistic Regression, SVM and Neural Networks",
name: "Credit Fraud Detection with Classical and Deep Models",
href: "/end-to-end/creditfraud",
tags: [
"Classification",
Expand All @@ -393,6 +368,32 @@ const navItems = [
id: "advanced",
href: "#!",
sections: [
{
name: "Benchmarking Classification Models on Breast Cancer Data",
href: "/advanced/breastcancer",
tags: [
"Encoders",
"Classification",
"Iterative Models",
"Distribution Fitter",
"Bayesian Models",
"Neural Networks",
],
ilos: [
"Familiarize yourself with common data preprocessing and visualization workflows",
"Learn how MLJ can be used to benchmark a large set of models against some dataset"
]
},
{
name: "KNN & Ridge Regression Learning Network on AMES Pricing Data",
href: "/advanced/AMES/",
tags: ["Regression", "Learning Networks", "Hyperparameter Tuning"],
ilos: [
"Get familiar with building baselines models for your machine learning task",
"Learn how to build simple learning networks (advanced model composition) in MLJ",
"Learn how to tune and analyze the evaluation results from learning networks"
]
},
{
name: "Build Basic Learning Networks with MLJ",
href: "/advanced/ensembles-3",
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using Pkg # hideall
Pkg.activate("_literate/end-to-end/AMES/Project.toml")
Pkg.activate("_literate/advanced/AMES/Project.toml")
Pkg.instantiate()

# Build a model for the Ames House Price data set using a simple learning network to blend
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using Pkg # hideall
Pkg.activate("_literate/end-to-end/breastcancer/Project.toml")
Pkg.activate("_literate/advanced/breastcancer/Project.toml")
Pkg.instantiate()
macro OUTPUT()
return isdefined(Main, :Franklin) ? Franklin.OUT_PATH[] : "/tmp/"
Expand Down
2 changes: 1 addition & 1 deletion end-to-end/AMES.md → advanced/AMES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

# AMES

\tutorial{end-to-end/AMES}
\tutorial{advanced/AMES}
2 changes: 1 addition & 1 deletion end-to-end/breastcancer.md → advanced/breastcancer.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

# Breast Cancer Wisconsin(Diagnostic)

\tutorial{end-to-end/breastcancer}
\tutorial{advanced/breastcancer}

0 comments on commit 420a2a8

Please sign in to comment.