1
0
mirror of https://github.com/sjwhitworth/golearn.git synced 2025-05-03 22:17:14 +08:00

Update README.md

This commit is contained in:
Stephen Whitworth 2014-05-17 21:19:18 +01:00
parent cc4d6a60ef
commit 0fc6fb7cfa

View File

@ -21,6 +21,9 @@ go get ./...
Getting Started Getting Started
======= =======
Data is loaded in as Instances. You can then perform matrix like operations on them, and pass them to estimators.
We implement the scikit-learn interface of Fit/Predict, so you can easily swap out estimators for trial and error.
``` ```
// Load in a dataset, with headers. Header attributes will be stored. // Load in a dataset, with headers. Header attributes will be stored.
// Think of instances as a Data Frame structure in R or Pandas. // Think of instances as a Data Frame structure in R or Pandas.