-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove
transform_space
requirement from FeatureTransformer
and `F…
…eaturePipeline` and move the functionality into `Exchange`.
- Loading branch information
1 parent
70c3953
commit f8aaf18
Showing
31 changed files
with
791 additions
and
469 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,23 @@ | ||
# FeatureTransformer | ||
|
||
As stated before in the [overview](../overview.md), We use an `ABCMeta` abstract hierarchy to handle the transformation calls of each asset. The `FeatureTransformer` is an abstract of all other price transformers available inside of the `tensortrade` library. As such, it has a set of common functions that are called on almost every transformer. | ||
As stated before in the [overview](../overview.md), We use an `ABCMeta` abstract hierarchy to handle the transformation calls of each asset. The `FeatureTransformer` is an abstract of all other price transformers available inside of the `tensortrade` library. As such, it has a set of common functions that are called on almost every transformer. | ||
|
||
## Properties and Setters | ||
|
||
* `columns` | ||
* A list of column names to normalize | ||
|
||
- `columns` | ||
- A list of column names to normalize | ||
|
||
## Functions | ||
|
||
Below are the functions that the `FeatureTransformer` uses to effectively operate. | ||
Below are the functions that the `FeatureTransformer` uses to effectively operate. | ||
|
||
### Private | ||
|
||
`None` | ||
|
||
### Public | ||
|
||
* `reset` | ||
* Optionally implementable method for resetting stateful transformers. | ||
* `transform_space` | ||
* Get the transformed output space for a given input space. | ||
* `transform` | ||
* Transform the data set and return a new data frame. | ||
- `reset` | ||
- Optionally implementable method for resetting stateful transformers. | ||
- `transform` | ||
- Transform the data set and return a new data frame. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.