Skip to content

Commit f8daa54

Browse files
author
Simon Johnston
committed
Removed Racket 6.0 from Travis
1 parent 7c920ee commit f8daa54

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ env:
2020
# Supply more than one RACKET_VERSION (as in the example below) to
2121
# create a Travis-CI build matrix to test against multiple Racket
2222
# versions.
23-
- RACKET_VERSION=6.0
2423
- RACKET_VERSION=6.5
2524
- RACKET_VERSION=6.11
2625
- RACKET_VERSION=HEAD

README.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,25 @@
77
[![GitHub stars](https://img.shields.io/github/stars/johnstonskj/rml-core.svg)](https://github.com/johnstonskj/rml-core/stargazers)
88
![MIT License](https://img.shields.io/badge/license-MIT-118811.svg)
99

10-
This package does not assume anything about the capabilities, and uses an
11-
expansive notion of machine learning that should cover statistical inferencing,
12-
tree and decision matrix models, as well as deep leaning approaches.
10+
This Package is part of an expected set of packages implementing machine learning capabilities
11+
for Racket. The core of this package is the management of *datasets*, these data sets are assumed
12+
to be for training and testing of machine learning capabilities. This package does not assume
13+
anything about such capabilities, and uses an expansive notion of machine learning that should
14+
cover statistical inferencing, tree and decision matrix models, as well as deep leaning approaches.
15+
16+
This module deals with two opaque structure types, `data-set` and `data-set-field`. These are not
17+
available to clients directly although certain accessors are exported by this module.
18+
Conceptually a `data-set` is a table of data, columns represent fields that are either *features*
19+
that represent properties of an instance, and *classifiers* or *labels* that are used to train
20+
and match instances.
1321

1422
## Modules
1523

1624
* `data` - TBD
1725

1826
## Example
1927

28+
TBD
2029

2130
## Links
2231

0 commit comments

Comments
 (0)