Skip to content

Commit d6defb0

Browse files
authored
Merge pull request #1184 from JuliaAI/dev
Restore some integration tests for BetaML.
2 parents 5026223 + ec2a62b commit d6defb0

File tree

2 files changed

+49
-8
lines changed

2 files changed

+49
-8
lines changed

examples/using_mlj/README.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,48 @@
22

33
[Videos]() on using the MLJ software.
44

5+
### Video timings
6+
7+
#### MLJ. Lesson 1
8+
9+
- 00:00 Introduction
10+
- 01:05 Goals
11+
- 01:48 Prerequisites and Getting Help
12+
- 02:21 Supervised Learning Recap
13+
- 05:31 Models and Machines
14+
- 09:28 Live Coding: Regression
15+
- 28:55 Scientific Types
16+
- 32:29 Live Coding: Scitypes and Classification
17+
- 55:45 End
18+
19+
#### Using MLJ. Lesson 2: Model Composition
20+
21+
- 00:00 Introduction
22+
- 00:08 Goals
23+
- 01:19 Prerequisites and Getting Help
24+
- 02:00 Composite Models Defined
25+
- 04:13 Model Pipelines
26+
- 05:59 Data Leakage
27+
- 08:37 Target Transformations
28+
- 12:43 Live Coding: Pipelines
29+
- 18:42 Live Coding: Target Transformations
30+
- 20:35 Other Model Wrappers
31+
- 25:02 End
32+
33+
#### Using MLJ. Lesson 3: Tuning Models
34+
35+
- 00:00 Introduction
36+
- 00:06 Goals
37+
- 01:12 Prerequisites and Getting Help
38+
- 01:27 Live Coding: Learning Curves
39+
- 13:27 Tuning as Model Wrapper
40+
- 18:45 Live Coding: Grid Search
41+
- 26:17 Live Coding: Random Search
42+
- 30:48 Nested Resampling
43+
- 33:11 Final Observations
44+
- 36:59 End
45+
46+
547
## Resources
648

749
- All things MLJ: [juliaml.ai](https://juliaml.ai)

test/integration.jl

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using MLJTestIntegration, MLJModels, MLJ, Test, Markdown
1+
using MLJTestIntegration, MLJModels, MLJ, Test, Markdown
22
import MLJTestIntegration as MTI
33
import Pkg.TOML as TOML
44
using Suppressor
@@ -34,13 +34,6 @@ FILTER_GIVEN_ISSUE = Dict(
3434
model.package_name == "OutlierDetectionNeighbors") ||
3535
(model.name == "TSVDTransformer" &&
3636
model.package_name == "TSVD"),
37-
"https://github.com/sylvaticus/BetaML.jl/issues/79" =>
38-
model -> model.name in [
39-
"KernelPerceptronClassifier",
40-
"PegasosClassifier",
41-
"PerceptronClassifier",
42-
] &&
43-
model.package_name == "BetaML",
4437
"https://github.com/sylvaticus/BetaML.jl/issues/65" =>
4538
model -> model.name in ["KMeans", "KMedoids"] &&
4639
model.package_name == "BetaML",
@@ -59,6 +52,12 @@ FILTER_GIVEN_ISSUE = Dict(
5952
"https://github.com/sylvaticus/BetaML.jl/issues/75" =>
6053
model -> model.package_name == "BetaML" &&
6154
model.name == "NeuralNetworkClassifier",
55+
"https://github.com/sylvaticus/BetaML.jl/issues/80" =>
56+
model -> model.package_name == "BetaML" &&
57+
model.name in ["PegasosClassifier", "PerceptronClassifier"],
58+
"https://github.com/sylvaticus/BetaML.jl/issues/81" =>
59+
model -> model.package_name == "BetaML" &&
60+
model.name in ["RandomForestClassifier", "RandomForestRegressor"],
6261
"https://github.com/JuliaAI/MLJTransforms.jl/issues/42" =>
6362
model -> model.package_name == "MLJTransforms" &&
6463
model.name in [

0 commit comments

Comments
 (0)