You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AutoNormalize is a Python library for automated datatable normalization, intended for use with [Featuretools](https://github.com/Featuretools/featuretools). AutoNormalize allows you to build an `EntitySet` from a single denormalized table and generate features for machine learning.
5
+
AutoNormalize is a Python library for automated datatable normalization. It allows you to build an `EntitySet` from a single denormalized table and generate features for machine learning using [Featuretools](https://github.com/Featuretools/featuretools).
6
6
7
7

8
8
9
-
### Install
9
+
## Getting Started
10
+
*[Install](#install)
11
+
*[Demos](#demos)
12
+
*[API Reference](#api-reference)
13
+
14
+
15
+
## Install
10
16
```shell
11
17
pip install featuretools[autonormalize]
12
18
```
13
-
### Uninstall
19
+
####Uninstall
14
20
```shell
15
21
pip uninstall autonormalize
16
22
```
17
-
<br />
18
23
19
-
### API Reference
24
+
##Demos
20
25
21
-
#### `auto_entityset`
26
+
*[Machine Learning Demo with Featuretools](https://github.com/FeatureLabs/autonormalize/blob/master/autonormalize/demos/AutoNormalize%20%2B%20FeatureTools%20Demo.ipynb)
*[Demo with Editing Dependencies](https://github.com/Featuretools/featuretools/pull/699)
29
+
*[Kaggle Food Production Dataset Demo](https://github.com/FeatureLabs/autonormalize/blob/master/autonormalize/demos/Kaggle%20Food%20%20Dataset%20Demo.ipynb)
@@ -84,7 +93,7 @@ Creates a normalized EntitySet from dataframe based on the dependencies given. K
84
93
85
94
<br />
86
95
87
-
####`normalize_entity`
96
+
### `normalize_entity`
88
97
89
98
```shell
90
99
normalize_entity(es, accuracy=0.98)
@@ -101,15 +110,6 @@ Returns a new normalized `EntitySet` from an `EntitySet` with a single entity.
101
110
102
111
<br />
103
112
104
-
### Demos
105
-
106
-
*[Machine Learning Demo with Featuretools](https://github.com/FeatureLabs/autonormalize/blob/master/autonormalize/demos/AutoNormalize%20%2B%20FeatureTools%20Demo.ipynb)
*[Demo with Editing Dependencies](https://github.com/Featuretools/featuretools/pull/699)
109
-
*[Kaggle Food Production Dataset Demo](https://github.com/FeatureLabs/autonormalize/blob/master/autonormalize/demos/Kaggle%20Food%20%20Dataset%20Demo.ipynb)
0 commit comments