Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
List pip package versions in implementations
  • Loading branch information
vishalbollu committed Mar 11, 2019
commit b880a91851a9b69bb778f9c580ee61cce8a25830
15 changes: 13 additions & 2 deletions docs/applications/implementations/aggregators.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,17 @@ def aggregate_spark(data, columns, args):
return discretizer.getSplits()
```

## Customization
## Pre-installed Packages

You can import PyPI packages or your own Python packages to help create more complex aggregators. See [Python Packages](../advanced/python-packages.md) for more details.
The following packages have been pre-installed and can be used in your implementations:

```text
pyspark==2.4.0
boto3==1.9.78
msgpack==0.6.1
numpy>=1.13.3,<2
requirements-parser==0.2.0
packaging==19.0.0
```

You can install additional PyPI packages and import your own Python packages. See [Python Packages](../advanced/python-packages.md) for more details.
15 changes: 13 additions & 2 deletions docs/applications/implementations/models.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,17 @@ def create_estimator(run_config, model_config):
)
```

## Customization
## Pre-installed Packages

You can import PyPI packages or your own Python packages to help create more complex models. See [Python Packages](../advanced/python-packages.md) for more details.
The following packages have been pre-installed and can be used in your implementations:

```text
tensorflow==1.12.0
boto3==1.9.78
msgpack==0.6.1
numpy>=1.13.3,<2
requirements-parser==0.2.0
packaging==19.0.0
```

You can install additional PyPI packages and import your own Python packages. See [Python Packages](../advanced/python-packages.md) for more details.
15 changes: 13 additions & 2 deletions docs/applications/implementations/transformers.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,17 @@ def reverse_transform_python(transformed_value, args):
return args["mean"] + (transformed_value * args["stddev"])
```

## Customization
## Pre-installed Packages

You can import PyPI packages or your own Python packages to help create more complex transformers. See [Python Packages](../advanced/python-packages.md) for more details.
The following packages have been pre-installed and can be used in your implementations:

```text
pyspark==2.4.0
boto3==1.9.78
msgpack==0.6.1
numpy>=1.13.3,<2
requirements-parser==0.2.0
packaging==19.0.0
```

You can install additional PyPI packages and import your own Python packages. See [Python Packages](../advanced/python-packages.md) for more details.