Skip to main content

No project description provided

Project description

DFFML Models For scikit / sklearn

About

Models created using scikit.

Install

python3.7 -m pip install --user dffml-model-scikit

Usage

  1. Linear Regression Model

For implementing linear regression to a dataset, let us take a simple example:

Years of Experience Expertise Trust Factor Salary
0 01 0.2 10
1 03 0.4 20
2 05 0.6 30
3 07 0.8 40
4 09 1.0 50
5 11 1.2 60
$ cat > train.csv << EOF
Years,Expertise,Trust,Salary
0,1,0.2,10
1,3,0.4,20
2,5,0.6,30
3,7,0.8,40
EOF
$ cat > test.csv << EOF
Years,Expertise,Trust,Salary
4,9,1.0,50
5,11,1.2,60
EOF
$ dffml train \
    -model scikitlr \
    -features def:Years:int:1 def:Expertise:int:1 def:Trust:float:1 \
    -model-predict Salary \
    -sources f=csv \
    -source-filename train.csv \
    -source-readonly \
    -log debug
$ dffml accuracy \
    -model scikitlr \
    -features def:Years:int:1 def:Expertise:int:1 def:Trust:float:1 \
    -model-predict Salary \
    -sources f=csv \
    -source-filename test.csv \
    -source-readonly \
    -log debug
$ echo -e 'Years,Expertise,Trust\n6,13,1.4\n' | \
  dffml predict all \
    -model scikitlr \
    -features def:Years:int:1 def:Expertise:int:1 def:Trust:float:1 \
    -model-predict Salary \
    -sources f=csv \
    -source-filename /dev/stdin \
    -source-readonly \
    -log debug

License

Scikit Models are distributed under the terms of the MIT License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dffml-model-scikit-0.0.2.tar.gz (8.8 kB view details)

Uploaded Source

File details

Details for the file dffml-model-scikit-0.0.2.tar.gz.

File metadata

  • Download URL: dffml-model-scikit-0.0.2.tar.gz
  • Upload date:
  • Size: 8.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for dffml-model-scikit-0.0.2.tar.gz
Algorithm Hash digest
SHA256 4aa0f6c358dbf25792c4a79d2c000acc7e41cc57153e0f545540b55fba2abf4d
MD5 45fb48c4c6b9976c1492dfb9c55d728d
BLAKE2b-256 0bcbdb6b1cc4454967d1f8dc7f3ec09f0211c611eb5d9519cf9f507928a187db

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page