Skip to content

Commit 178a52b

Browse files
authored
Merge pull request #278 from FluxML/entity-tutorial
⭐️ Add entity embeddings workflow example
2 parents 111b308 + dbeaf9c commit 178a52b

File tree

9 files changed

+5694
-26
lines changed

9 files changed

+5694
-26
lines changed

docs/Project.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[deps]
22
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
3+
CategoricalArrays = "324d7699-5711-5eae-9e2f-1d82baa6b597"
34
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
45
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
56
DocumenterTools = "35a29f4d-8980-5a13-9543-d66fff28ecb8"
@@ -16,5 +17,9 @@ MLJXGBoostInterface = "54119dfa-1dab-4055-a167-80440f4f7a91"
1617
MLUtils = "f1d291b0-491e-4a28-83b9-f70985020b54"
1718
Optimisers = "3bd65402-5787-11e9-1adc-39752487f4e2"
1819
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
20+
ProgressMeter = "92933f4c-e287-5a05-a399-4b506db050ca"
1921
RDatasets = "ce6b1742-4840-55fa-b093-852dadbb1d8b"
22+
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
23+
ScientificTypes = "321657f4-b219-11e9-178b-2701a2544e81"
24+
Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
2025
WordTokenizers = "796a5d58-b03d-544a-977e-18100b691f6e"

docs/make.jl

Lines changed: 20 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ using Documenter
22
using MLJFlux
33
using Flux
44

5-
DocMeta.setdocmeta!(MLJFlux, :DocTestSetup, :(using MLJFlux); recursive=true)
5+
DocMeta.setdocmeta!(MLJFlux, :DocTestSetup, :(using MLJFlux); recursive = true)
66

77
makedocs(
88
sitename = "MLJFlux",
@@ -17,42 +17,36 @@ makedocs(
1717
asset(
1818
"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css",
1919
class = :css,
20-
)
20+
),
2121
],
22-
repolink="https://github.com/FluxML/MLJFlux.jl"
22+
repolink = "https://github.com/FluxML/MLJFlux.jl",
2323
),
2424
modules = [MLJFlux],
2525
warnonly = true,
2626
pages = [
2727
"Introduction" => "index.md",
2828
"Interface" => Any[
29-
"Summary" => "interface/Summary.md",
30-
"Builders" => "interface/Builders.md",
31-
"Custom Builders" => "interface/Custom Builders.md",
32-
"Classification" => "interface/Classification.md",
33-
"Regression" => "interface/Regression.md",
34-
"Multi-Target Regression" => "interface/Multitarget Regression.md",
35-
"Image Classification" => "interface/Image Classification.md",
29+
"Summary"=>"interface/Summary.md",
30+
"Builders"=>"interface/Builders.md",
31+
"Custom Builders"=>"interface/Custom Builders.md",
32+
"Classification"=>"interface/Classification.md",
33+
"Regression"=>"interface/Regression.md",
34+
"Multi-Target Regression"=>"interface/Multitarget Regression.md",
35+
"Image Classification"=>"interface/Image Classification.md",
3636
],
3737
"Common Workflows" => Any[
38-
"Incremental Training" =>
39-
"common_workflows/incremental_training/notebook.md",
40-
"Hyperparameter Tuning" =>
41-
"common_workflows/hyperparameter_tuning/notebook.md",
42-
"Model Composition" =>
43-
"common_workflows/composition/notebook.md",
44-
"Model Comparison" =>
45-
"common_workflows/comparison/notebook.md",
46-
"Early Stopping" =>
47-
"common_workflows/early_stopping/notebook.md",
48-
"Live Training" =>
49-
"common_workflows/live_training/notebook.md",
50-
"Neural Architecture Search" =>
51-
"common_workflows/architecture_search/notebook.md",
38+
"Incremental Training"=>"common_workflows/incremental_training/notebook.md",
39+
"Entity Embeddings"=>"common_workflows/entity_embeddings/notebook.md",
40+
"Hyperparameter Tuning"=>"common_workflows/hyperparameter_tuning/notebook.md",
41+
"Model Composition"=>"common_workflows/composition/notebook.md",
42+
"Model Comparison"=>"common_workflows/comparison/notebook.md",
43+
"Early Stopping"=>"common_workflows/early_stopping/notebook.md",
44+
"Live Training"=>"common_workflows/live_training/notebook.md",
45+
"Neural Architecture Search"=>"common_workflows/architecture_search/notebook.md",
5246
],
5347
"Extended Examples" => Any[
54-
"MNIST Images" => "extended_examples/MNIST/notebook.md",
55-
"Spam Detection with RNNs" => "extended_examples/spam_detection/notebook.md",
48+
"MNIST Images"=>"extended_examples/MNIST/notebook.md",
49+
"Spam Detection with RNNs"=>"extended_examples/spam_detection/notebook.md",
5650
],
5751
"Contributing" => "contributing.md"],
5852
doctest = false,

0 commit comments

Comments
 (0)