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

Update release-next for the 1.4 release. #252

Merged
merged 1 commit into from
Aug 30, 2019
Merged
Changes from all commits
Commits
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
19 changes: 17 additions & 2 deletions release-next.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,26 @@

## **New Features**

None.
- **Add initial implementation of DatasetTransformer.**

[PR#240](https://github.com/microsoft/NimbusML/pull/240)
This transform allows a fitted transformer based model to be inserted
in to another `Pipeline`.

```python
Pipeline([
DatasetTransformer(transform_model=transform_pipeline.model),
OnlineGradientDescentRegressor(label='c2', feature=['c1'])
])
```

## **Bug Fixes**

None.
- **Fixed `classes_` attribute when no `y` input specified **

[PR#218](https://github.com/microsoft/NimbusML/pull/218)
Fix a bug with the classes_ attribute when no y input is specified during fitting.
This addresses [issue 216](https://github.com/microsoft/NimbusML/issues/216)

## **Breaking Changes**

Expand Down