项目作者: alan-turing-institute

项目描述 :
Core functionality for the MLJ machine learning framework
高级语言: Julia
项目地址: git://github.com/alan-turing-institute/MLJBase.jl.git
创建时间: 2018-12-11T14:42:03Z
项目社区:https://github.com/alan-turing-institute/MLJBase.jl

开源协议:MIT License

下载


MLJBase

Repository for developers that provides core functionality for the
MLJ machine
learning framework.

Branch Julia Build Coverage
master v1 Continuous Integration (CPU) Code Coverage
dev v1 Continuous Integration (CPU) Code Coverage

Stable

MLJ is a Julia
framework for combining and tuning machine learning models. This
repository provides core functionality for MLJ, including:

  • completing the functionality for methods defined “minimally” in
    MLJ’s light-weight model interface
    MLJModelInterface (/src/interface)

  • definition of machines and their associated methods, such as
    fit! and predict/transform (src/machines).

  • MLJ’s model composition interface, including learning
    networks
    , pipelines, stacks, target transforms (/src/composition)

  • basic utilities for manipulating datasets and for synthesizing datasets (src/data)

  • a small
    interface

    for resampling strategies and implementations, including CV(), StratifiedCV and
    Holdout (src/resampling.jl). Actual performance evaluation measures (aka metrics), which previously
    were provided by MLJBase.jl, now live in StatisticalMeasures.jl.

  • methods for performance evaluation, based on those resampling strategies (src/resampling.jl)

  • one-dimensional hyperparameter range types, constructors and
    associated methods, for use with
    MLJTuning (src/hyperparam)