Skip to content

Commit 06f4b6a

Browse files
authored
ml_dataframe 0.3.0 supported, github actions set up (#22)
1 parent e908546 commit 06f4b6a

11 files changed

+78
-31
lines changed

.github/workflows/ci_pipeline.yml

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: CI pipeline
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
container:
14+
image: google/dart:latest
15+
16+
steps:
17+
- uses: actions/checkout@v2
18+
19+
- name: Print Dart SDK version
20+
run: dart --version
21+
22+
- name: Install dependencies
23+
run: dart pub get
24+
25+
- name: Analyze project source
26+
run: dart analyze --fatal-infos
27+
28+
- name: Run tests
29+
run: dart test
30+
31+
- name: Code coverage
32+
run: dart pub run test_coverage
33+
34+
- name: Coveralls GitHub Action
35+
uses: coverallsapp/[email protected]
36+
with:
37+
github-token: ${{ secrets.GITHUB_TOKEN }}

.travis.yml

-5
This file was deleted.

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 5.2.1
4+
- `ml_dataframe`: version 0.3.0 supported
5+
- `CI`: github actions set up
6+
37
## 5.2.0
48
- `UnknownValueHandlingType` enum added to the lib's public API
59

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Build Status](https://travis-ci.com/gyrdym/ml_algo.svg?branch=master)](https://travis-ci.com/gyrdym/ml_preprocessing)
1+
[![Build Status](https://github.com/gyrdym/ml_preprocessing/workflows/CI%20pipeline/badge.svg)](https://github.com/gyrdym/ml_preprocessing/actions?query=branch%3Amaster+)
22
[![Coverage Status](https://coveralls.io/repos/github/gyrdym/ml_preprocessing/badge.svg)](https://coveralls.io/github/gyrdym/ml_preprocessing)
33
[![pub package](https://img.shields.io/pub/v/ml_preprocessing.svg)](https://pub.dartlang.org/packages/ml_preprocessing)
44
[![Gitter Chat](https://badges.gitter.im/gyrdym/gyrdym.svg)](https://gitter.im/gyrdym/)
@@ -194,4 +194,4 @@ final processed = pipeline.process(dataFrame);
194194

195195
`encodeAsOneHotLabels`, `encodeAsIntegerLabels`, `normalize` and `standardize` are pipeable operator functions.
196196
Pipeable operator function is a factory, that takes fitting data and creates a fitted pipeable entity (e.g.,
197-
`Normalizer` instance)
197+
`Normalizer` instance)

analysis_options.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include: package:ml_tech/analysis_options.yaml
1+
include: package:pedantic/analysis_options.yaml

lib/src/encoder/helpers/create_encoder_to_series_mapping.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Map<String, SeriesEncoder> createEncoderToSeriesMapping(
66
DataFrame dataFrame,
77
Iterable<String> predefinedSeriesNames,
88
Iterable<int> seriesIndices,
9-
SeriesEncoder seriesEncoderFactory(Series series),
9+
SeriesEncoder Function(Series series) seriesEncoderFactory,
1010
) {
1111
final seriesNames = predefinedSeriesNames ??
1212
getSeriesNamesByIndices(dataFrame.header, seriesIndices);
@@ -16,4 +16,4 @@ Map<String, SeriesEncoder> createEncoderToSeriesMapping(
1616
return MapEntry(name, encoder);
1717
});
1818
return Map.fromEntries(entries);
19-
}
19+
}

pubspec.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
name: ml_preprocessing
22
description: Popular algorithms of data preprocessing for machine learning
3-
version: 5.2.0
3+
version: 5.2.1
44
author: Ilia Gyrdymov <[email protected]>
55
homepage: https://github.com/gyrdym/ml_preprocessing
66

77
environment:
88
sdk: '>=2.7.0 <3.0.0'
99

1010
dependencies:
11-
ml_dataframe: ^0.2.0
11+
ml_dataframe: ^0.3.0
1212
ml_linalg: ^12.17.0
1313
quiver: ^2.0.2
1414

1515
dev_dependencies:
1616
benchmark_harness: '>=1.0.0 <2.0.0'
1717
build_runner: ^1.1.2
1818
build_test: ^0.10.2
19-
grinder: ^0.8.3
20-
ml_tech: ^0.0.5
2119
mockito: ^3.0.0
20+
pedantic: ^1.9.2
2221
test: ^1.2.0
22+
test_coverage: ^0.5.0

test/helpers.dart

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import 'package:test/test.dart';
2+
3+
Matcher iterable2dAlmostEqualTo(Iterable<Iterable<double>> expected,
4+
[double precision = 1e-5]) =>
5+
pairwiseCompare<Iterable<double>, Iterable<double>>(expected,
6+
(Iterable<double> expected, Iterable<double> actual) {
7+
if (expected.length != actual.length) {
8+
return false;
9+
}
10+
for (var i = 0; i < expected.length; i++) {
11+
if ((expected.elementAt(i) - actual.elementAt(i)).abs() >= precision) {
12+
return false;
13+
}
14+
}
15+
return true;
16+
}, '');
17+
18+
Matcher iterableAlmostEqualTo(Iterable<double> expected,
19+
[double precision = 1e-5]) =>
20+
pairwiseCompare<double, double>(
21+
expected,
22+
(expectedVal, actualVal) =>
23+
(expectedVal - actualVal).abs() <= precision,
24+
'');

test/normalizer/normalizer_test.dart

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
import 'package:ml_dataframe/ml_dataframe.dart';
22
import 'package:ml_linalg/linalg.dart';
33
import 'package:ml_preprocessing/src/normalizer/normalizer.dart';
4-
import 'package:ml_tech/unit_testing/matchers/iterable_2d_almost_equal_to.dart';
54
import 'package:test/test.dart';
65

6+
import '../helpers.dart';
7+
78
void main() {
89
group('Normalizer', () {
910
test('should divide each row-vector by its euclidean norm and preserve '

test/standardizer/standardizer_test.dart

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@ import 'package:ml_dataframe/ml_dataframe.dart';
22
import 'package:ml_linalg/dtype.dart';
33
import 'package:ml_linalg/linalg.dart';
44
import 'package:ml_preprocessing/ml_preprocessing.dart';
5-
import 'package:ml_tech/unit_testing/matchers/iterable_2d_almost_equal_to.dart';
65
import 'package:test/test.dart';
76

7+
import '../helpers.dart';
8+
89
void main() {
910
const dtype = DType.float32;
1011

tool/grind.dart

-15
This file was deleted.

0 commit comments

Comments
 (0)