-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #814 from alan-turing-institute/dev
For a 0.16.7 release
- Loading branch information
Showing
33 changed files
with
294 additions
and
289 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*ipynb linguist-vendored |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Citing MLJ | ||
|
||
An overview of MLJ design: | ||
|
||
|
||
[![DOI](https://joss.theoj.org/papers/10.21105/joss.02704/status.svg)](https://doi.org/10.21105/joss.02704) | ||
|
||
```bibtex | ||
@article{Blaom2020, | ||
doi = {10.21105/joss.02704}, | ||
url = {https://doi.org/10.21105/joss.02704}, | ||
year = {2020}, | ||
publisher = {The Open Journal}, | ||
volume = {5}, | ||
number = {55}, | ||
pages = {2704}, | ||
author = {Anthony D. Blaom and Franz Kiraly and Thibaut Lienart and Yiannis Simillides and Diego Arenas and Sebastian J. Vollmer}, | ||
title = {{MLJ}: A Julia package for composable machine learning}, | ||
journal = {Journal of Open Source Software} | ||
} | ||
``` | ||
|
||
An in-depth view of MLJ's model composition design: | ||
|
||
[![arXiv](https://img.shields.io/badge/arXiv-2012.15505-<COLOR>.svg)](https://arxiv.org/abs/2012.15505) | ||
|
||
```bibtex | ||
@misc{blaom2020flexible, | ||
title={Flexible model composition in machine learning and its implementation in {MLJ}}, | ||
author={Anthony D. Blaom and Sebastian J. Vollmer}, | ||
year={2020}, | ||
eprint={2012.15505}, | ||
archivePrefix={arXiv}, | ||
primaryClass={cs.LG} | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name = "MLJ" | ||
uuid = "add582a8-e3ab-11e8-2d5e-e98b27df1bc7" | ||
authors = ["Anthony D. Blaom <[email protected]>"] | ||
version = "0.16.6" | ||
version = "0.16.7" | ||
|
||
[deps] | ||
CategoricalArrays = "324d7699-5711-5eae-9e2f-1d82baa6b597" | ||
|
@@ -14,12 +14,12 @@ MLJEnsembles = "50ed68f4-41fd-4504-931a-ed422449fee0" | |
MLJIteration = "614be32b-d00c-4edb-bd02-1eb411ab5e55" | ||
MLJModels = "d491faf4-2d78-11e9-2867-c94bc002c0b7" | ||
MLJOpenML = "cbea4545-8c96-4583-ad3a-44078d60d369" | ||
MLJScientificTypes = "2e2323e0-db8b-457b-ae0d-bdfb3bc63afd" | ||
MLJSerialization = "17bed46d-0ab5-4cd4-b792-a5c4b8547c6d" | ||
MLJTuning = "03970b2e-30c4-11ea-3135-d1576263f10f" | ||
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f" | ||
ProgressMeter = "92933f4c-e287-5a05-a399-4b506db050ca" | ||
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" | ||
ScientificTypes = "321657f4-b219-11e9-178b-2701a2544e81" | ||
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2" | ||
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91" | ||
Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c" | ||
|
@@ -33,10 +33,10 @@ MLJEnsembles = "0.1" | |
MLJIteration = "0.3" | ||
MLJModels = "0.14" | ||
MLJOpenML = "1" | ||
MLJScientificTypes = "0.4.1" | ||
MLJSerialization = "1.1" | ||
MLJTuning = "0.6" | ||
ProgressMeter = "1.1" | ||
ScientificTypes = "2" | ||
StatsBase = "0.32,0.33" | ||
Tables = "0.2,1.0" | ||
julia = "1.3" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.