Skip to content

Commit

Permalink
Merge pull request #127 from FluxML/dev
Browse files Browse the repository at this point in the history
For a 0.1.10 release
  • Loading branch information
ablaom authored Apr 21, 2021
2 parents a322ccf + 6eb628b commit f52a7de
Show file tree
Hide file tree
Showing 10 changed files with 931 additions and 1,551 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CompatHelper.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: CompatHelper
on:
schedule:
- cron: '00 00 * * *'
- cron: 0 0 * * *
workflow_dispatch:
jobs:
CompatHelper:
Expand All @@ -12,5 +12,5 @@ jobs:
- name: CompatHelper.main()
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COMPATHELPER_PRIV: ${{ secrets.COMPATHELPER_PRIV }} # optional
run: julia -e 'using CompatHelper; CompatHelper.main()'
COMPATHELPER_PRIV: ${{ secrets.COMPATHELPER_PRIV }}
run: julia -e 'using CompatHelper; CompatHelper.main()'
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ jobs:
matrix:
version:
- '1.3'
- '1.4'
- '1'
- 'nightly'
os:
- ubuntu-latest
arch:
Expand Down
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "MLJFlux"
uuid = "094fc8d1-fd35-5302-93ea-dabda2abf845"
authors = ["Anthony D. Blaom <[email protected]>", "Ayush Shridhar <[email protected]>"]
version = "0.1.9"
version = "0.1.10"

[deps]
CategoricalArrays = "324d7699-5711-5eae-9e2f-1d82baa6b597"
Expand All @@ -18,9 +18,9 @@ Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
CategoricalArrays = "^0.8.1,^0.9"
ColorTypes = "^0.10.3"
ComputationalResources = "^0.3.2"
Flux = "^0.10.4, ^0.11"
Flux = "^0.10.4, ^0.11, 0.12"
LossFunctions = "^0.5, ^0.6"
MLJModelInterface = "^0.4.1"
MLJModelInterface = "^0.4.1, 1"
ProgressMeter = "^1.1"
Tables = "^1.0"
julia = "^1.3"
Expand Down
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,13 @@ Pkg.add("RDatasets") # for the demo below
Following is an introductory example using a default builder and no
standardization of input features ([notebook/script](/examples/iris)).

For a more advanced illustration, see the [MNIST dataset
For an example implementing early stopping and snapshots, using MLJ's
[`IteratedModel`
wrapper](https://alan-turing-institute.github.io/MLJ.jl/dev/controlling_iterative_models/),
see the [MNIST dataset
example](https://github.com/FluxML/MLJFlux.jl/blob/dev/examples/mnist).



#### Loading some data and instantiating a model

```julia
Expand Down Expand Up @@ -365,8 +367,8 @@ you *should* use MLJ loss functions in MLJ meta-algorithms.
### An image classification example
An expanded version of this example, with early stopping, is available
[here](/examples/mnist).
An expanded version of this example, with early stopping and
snapshots, is available [here](/examples/mnist).
We define a builder that builds a chain with six alternating
convolution and max-pool layers, and a final dense layer, which we
Expand Down
Loading

0 comments on commit f52a7de

Please sign in to comment.