Skip to content
This repository was archived by the owner on Nov 16, 2023. It is now read-only.

Set of new timeseries transforms #475

Open
wants to merge 44 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
284fcd7
Use latest ML.Net dev packages from MachineLearning feed.
Jan 17, 2020
ad00b70
Re-enable the default nuget.org feed. It does not appear to cause
Jan 17, 2020
258a799
Add whitespace change to restart CI build. Linux timed out.
Jan 21, 2020
c542c1d
Fix build issue when using pip version >= 20.0.0
Jan 21, 2020
4c5bac1
Merge branch 'master' into nuget_update
Jan 21, 2020
5423d6a
Merge branch 'master' into nightly
actions-user Jan 24, 2020
324d379
Merge branch 'master' into nightly
actions-user Jan 24, 2020
b3ed66b
Merge branch 'master' into nightly
actions-user Jan 25, 2020
5924fdc
Merge branch 'master' into nightly
ganik Mar 25, 2020
5feb56d
preview3
ganik Mar 25, 2020
fed9aa2
fix signing
ganik Mar 26, 2020
039356a
run ep only if VerifyManifest
ganik Mar 26, 2020
cbe0e75
draft of timeseries transforms
ganik Mar 31, 2020
6a2a913
Updated with latest changes
ganik Apr 19, 2020
7ddbba5
Merge branch 'master' into tsaml
ganik Apr 19, 2020
7ae2fa9
add unit tests
ganik Apr 19, 2020
e3196c7
Add timeseries transforms to onnx suite test.
ganik Apr 20, 2020
d6ae18f
Add automl ONNX tests
ganik Apr 20, 2020
7244760
0.4.0 version for Featurizers
ganik Apr 20, 2020
f333452
Featurizer Onnx Export tests (#484)
angryjinyan Apr 27, 2020
ac5ce11
Add tests for DateTimeSplitter with country (#486)
angryjinyan Apr 27, 2020
0d5e594
install ort-featurizers
ganik Apr 28, 2020
fa35f9f
Merge branch 'tsaml' of https://github.com/microsoft/NimbusML into tsaml
ganik Apr 28, 2020
634597d
fix feed
ganik Apr 28, 2020
7819fdb
Merge branch 'master' into tsaml
ganik Apr 28, 2020
f223671
update version for ort-featurizers
ganik Apr 28, 2020
1e601e7
Merge branch 'tsaml' of https://github.com/microsoft/NimbusML into tsaml
ganik Apr 28, 2020
ca0eaa8
fix tests
ganik Apr 28, 2020
f234b7c
skip ts checks
ganik Apr 28, 2020
9a0bec9
fix tests
ganik Apr 28, 2020
82f831b
fix test
ganik Apr 28, 2020
2b7accb
MLFeatur vcersion
ganik Apr 28, 2020
7a7bef7
exclude test for Mac
ganik Apr 29, 2020
1315d4d
do mv to save space
ganik Apr 29, 2020
99b0e71
Make more space for build
ganik Apr 30, 2020
7878982
more space
ganik Apr 30, 2020
b3797e2
more space
ganik Apr 30, 2020
f2e81d3
more space
ganik Apr 30, 2020
9252d1e
more space
ganik Apr 30, 2020
b088277
fix build
ganik Apr 30, 2020
2fc6a1f
more space
ganik Apr 30, 2020
bea3ec3
check in (#487)
angryjinyan May 1, 2020
ba376b9
Fix shape (#488)
angryjinyan May 1, 2020
e9b6b87
Merge branch 'master' into tsaml
ganik May 12, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix tests
  • Loading branch information
ganik committed Apr 28, 2020

Verified

This commit was signed with the committer’s verified signature.
theolundqvist Theodor Lundqvist
commit ca0eaa80cf1716dcb7a74fb2de0705b43d64c585
8 changes: 4 additions & 4 deletions src/python/nimbusml/tests/timeseries/test_rollingwindow.py
Original file line number Diff line number Diff line change
@@ -32,10 +32,10 @@ def test_simple_rolling_window(self):
horizon=2)
result = rw.fit_transform(df)

self.assertTrue(math.isnan(result.loc[0, 'ts_r']))
self.assertEqual(result.loc[1, 'ts_r'], 1)
self.assertEqual(result.loc[2, 'ts_r'], 3)
self.assertEqual(result.loc[3, 'ts_r'], 5)
self.assertTrue(math.isnan(result.loc[0, 'ts_r.1']))
self.assertEqual(result.loc[1, 'ts_r.1'], 1)
self.assertEqual(result.loc[2, 'ts_r.1'], 3)
self.assertEqual(result.loc[3, 'ts_r.1'], 5)

def test_simple_rolling_window2(self):

8 changes: 8 additions & 0 deletions src/python/tests_extended/test_export_to_onnx.py
Original file line number Diff line number Diff line change
@@ -118,10 +118,12 @@
'OnnxRunner',
'Sentiment',
'TensorFlowScorer',
'TimeSeriesImputer',
'TreeFeaturizer',
'WordEmbedding',
'Binner',
'BootstrapSampler',
'DateTimeSplitter',
'EnsembleClassifier',
'EnsembleRegressor',
'FactorizationMachineBinaryClassifier',
@@ -138,12 +140,18 @@
'RangeFilter',
'Resizer',
'RobustScaler',
'RollingWindow',
'ForecastingPivot',
'LagLeadOperator',
'ShortDrop',
'SkipFilter',
'SsaChangePointDetector',
'SsaForecaster',
'SsaSpikeDetector',
'SymSgdBinaryClassifier',
'TakeFilter',
'ToKeyImputer',
'ToString',
'EnsembleClassifier',
'EnsembleRegressor',
'CharTokenizer',