evo-science

Awesome evo_science created by maycuatroi


Keywords
deep-learning, machine-learning, machine-learning-algorithms
License
Unlicense
Install
pip install evo-science==0.1.12

Documentation

Evolution Science

codecov CI

Awesome evo_science created by maycuatroi

Install it from PyPI

pip install evo-science

Example

    model = LinearRegressionModel()

    x = FeatureSet(features=[PClass, Sex, Age, SibSp, Parch, Fare])
    y = FeatureSet(features=[Survived])

    (x + y).build(
        csv_path="https://web.stanford.edu/class/archive/cs/cs109/cs109.1166/stuff/titanic.csv"
    )

    model.fit(x=x, y=y)
    model.evaluate(x=x, y=y, metrics=[Slope, ErrorStd])
    model.calculate_coefficients(x=x)

Development

Read the CONTRIBUTING.md file.