fasttransform 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- fasttransform-0.0.1/LICENSE +201 -0
- fasttransform-0.0.1/MANIFEST.in +5 -0
- fasttransform-0.0.1/PKG-INFO +296 -0
- fasttransform-0.0.1/README.md +269 -0
- fasttransform-0.0.1/fasttransform/__init__.py +4 -0
- fasttransform-0.0.1/fasttransform/_modidx.py +109 -0
- fasttransform-0.0.1/fasttransform/cast.py +76 -0
- fasttransform-0.0.1/fasttransform/transform.py +268 -0
- fasttransform-0.0.1/fasttransform.egg-info/PKG-INFO +296 -0
- fasttransform-0.0.1/fasttransform.egg-info/SOURCES.txt +17 -0
- fasttransform-0.0.1/fasttransform.egg-info/dependency_links.txt +1 -0
- fasttransform-0.0.1/fasttransform.egg-info/entry_points.txt +2 -0
- fasttransform-0.0.1/fasttransform.egg-info/not-zip-safe +1 -0
- fasttransform-0.0.1/fasttransform.egg-info/requires.txt +7 -0
- fasttransform-0.0.1/fasttransform.egg-info/top_level.txt +1 -0
- fasttransform-0.0.1/pyproject.toml +3 -0
- fasttransform-0.0.1/settings.ini +46 -0
- fasttransform-0.0.1/setup.cfg +4 -0
- fasttransform-0.0.1/setup.py +64 -0
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
@@ -0,0 +1,296 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: fasttransform
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Transform is the main building block of data pipelines in fastai. And elsewhere if you want.
|
|
5
|
+
Home-page: https://github.com/AnswerDotAI/fasttransform
|
|
6
|
+
Author: Jeremy Howard and Rens Dimmendaal and Alexis Gallagher
|
|
7
|
+
Author-email: info@fast.ai
|
|
8
|
+
License: Apache Software License 2.0
|
|
9
|
+
Keywords: nbdev jupyter notebook python
|
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Natural Language :: English
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
18
|
+
Requires-Python: >=3.9
|
|
19
|
+
Description-Content-Type: text/markdown
|
|
20
|
+
License-File: LICENSE
|
|
21
|
+
Requires-Dist: fastcore
|
|
22
|
+
Requires-Dist: plum-dispatch
|
|
23
|
+
Provides-Extra: dev
|
|
24
|
+
Requires-Dist: matplotlib; extra == "dev"
|
|
25
|
+
Requires-Dist: numpy; extra == "dev"
|
|
26
|
+
Requires-Dist: pandas; extra == "dev"
|
|
27
|
+
|
|
28
|
+
# Welcome to fasttransform
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
<!-- WARNING: THIS FILE WAS AUTOGENERATED! DO NOT EDIT! -->
|
|
32
|
+
|
|
33
|
+
## Installation
|
|
34
|
+
|
|
35
|
+
Install latest from the GitHub
|
|
36
|
+
[repository](https://github.com/AnswerDotAI/fasttransform):
|
|
37
|
+
|
|
38
|
+
``` sh
|
|
39
|
+
$ pip install git+https://github.com/AnswerDotAI/fasttransform.git
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
or from [pypi](https://pypi.org/project/fasttransform/):
|
|
43
|
+
|
|
44
|
+
``` sh
|
|
45
|
+
$ pip install fasttransform
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
## Quick start
|
|
49
|
+
|
|
50
|
+
### Transform
|
|
51
|
+
|
|
52
|
+
Transform is a class that lets you create reusable data transformations.
|
|
53
|
+
You initialize a Transform by passing in or decorating a raw function.
|
|
54
|
+
The Transform then provides an enhanced version of that function via
|
|
55
|
+
`Transform.encodes`, which can be used in your data pipeline.
|
|
56
|
+
|
|
57
|
+
It provides various conveniences:
|
|
58
|
+
|
|
59
|
+
- **Reversibility**. You can collect the raw function and its inverse
|
|
60
|
+
into one transform object.
|
|
61
|
+
- **Customized initialization** You can customize the exact behavior of
|
|
62
|
+
a transform function on initialization.
|
|
63
|
+
- **Type-based mulitiple dispatch**. Transforms can specialize their
|
|
64
|
+
behavior based on the runtime types of their arguments.
|
|
65
|
+
- **Type conversion/preservation**. Transforms help you maintain desired
|
|
66
|
+
return types.
|
|
67
|
+
|
|
68
|
+
The simplest way to create a Transform is by decorating a function:
|
|
69
|
+
|
|
70
|
+
``` python
|
|
71
|
+
from fasttransform import Transform, Pipeline
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
``` python
|
|
75
|
+
@Transform
|
|
76
|
+
def add_one(x):
|
|
77
|
+
return x + 1
|
|
78
|
+
|
|
79
|
+
# Usage
|
|
80
|
+
add_one(2)
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
3
|
|
84
|
+
|
|
85
|
+
### Reversibility
|
|
86
|
+
|
|
87
|
+
To make a transform reversible, you provide the raw function and its
|
|
88
|
+
inverse. This is useful in data pipelines where, for instance, you might
|
|
89
|
+
want to normalize and then de-normalize numerical values, or encode to
|
|
90
|
+
category indexes and then decode back to categories.
|
|
91
|
+
|
|
92
|
+
``` python
|
|
93
|
+
def enc(x): return x*2
|
|
94
|
+
def dec(x): return x//2
|
|
95
|
+
|
|
96
|
+
t = Transform(enc,dec)
|
|
97
|
+
|
|
98
|
+
t(2), t.decode(2), t.decode(t(2))
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
(4, 1, 2)
|
|
102
|
+
|
|
103
|
+
### Customized initialization
|
|
104
|
+
|
|
105
|
+
You can customize an individual Transform instance at initialization
|
|
106
|
+
time, so that it can depend on aggregate properties of the data set.
|
|
107
|
+
|
|
108
|
+
Here we define a z-score normalization Transform by defining `encodes`
|
|
109
|
+
and `decodes` methods directly:
|
|
110
|
+
|
|
111
|
+
``` python
|
|
112
|
+
import statistics
|
|
113
|
+
|
|
114
|
+
class NormalizeMean(Transform):
|
|
115
|
+
def setups(self, items):
|
|
116
|
+
self.mean = statistics.mean(items)
|
|
117
|
+
self.std = statistics.stdev(items)
|
|
118
|
+
|
|
119
|
+
def encodes(self, x):
|
|
120
|
+
return (x - self.mean) / self.std
|
|
121
|
+
|
|
122
|
+
def decodes(self, x):
|
|
123
|
+
return x * self.std + self.mean
|
|
124
|
+
|
|
125
|
+
normalize = NormalizeMean()
|
|
126
|
+
normalize.setup([1, 2, 3, 4, 5])
|
|
127
|
+
normalize.mean
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
3
|
|
131
|
+
|
|
132
|
+
### Type-based multiple dispatch
|
|
133
|
+
|
|
134
|
+
Instead of providing one raw functions, you can provide multiple raw
|
|
135
|
+
functions which differ in their parameter types. Tranform will use
|
|
136
|
+
type-based dispatch to automatically execute the correct function.
|
|
137
|
+
|
|
138
|
+
This is handy when your inputs come in different types (eg., different
|
|
139
|
+
image formats, different numerical types).
|
|
140
|
+
|
|
141
|
+
``` python
|
|
142
|
+
def inc1(x:int): return x+1
|
|
143
|
+
def inc2(x:str): return x+"a"
|
|
144
|
+
|
|
145
|
+
t = Transform(enc=(inc1,inc2))
|
|
146
|
+
|
|
147
|
+
t(5), t('b')
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
(6, 'ba')
|
|
151
|
+
|
|
152
|
+
If an input type does not match any of the type annotations then the
|
|
153
|
+
original input is returned.
|
|
154
|
+
|
|
155
|
+
``` python
|
|
156
|
+
add_one(2.0)
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
3.0
|
|
160
|
+
|
|
161
|
+
``` python
|
|
162
|
+
normalize(3.0)
|
|
163
|
+
```
|
|
164
|
+
|
|
165
|
+
0.0
|
|
166
|
+
|
|
167
|
+
### Type conversion/preservation
|
|
168
|
+
|
|
169
|
+
You initialize a Transform by passing in or decorating a raw function.
|
|
170
|
+
|
|
171
|
+
A Transform `encodes` or `decodes` will note the return type of its raw
|
|
172
|
+
function, which may be defined explicitly or implicitly, and enhance
|
|
173
|
+
type-handling behavior in three ways:
|
|
174
|
+
|
|
175
|
+
1. **Guaranteed return type**. It will always return the return type of
|
|
176
|
+
the raw function, promoting values if necessary.
|
|
177
|
+
|
|
178
|
+
2. **Type Preservation**. It will return the runtime type of its
|
|
179
|
+
argument, whenever that is a subtype of the return type.
|
|
180
|
+
|
|
181
|
+
3. **Opt-out conversion**. If you explicitly mark the raw function’s
|
|
182
|
+
return type as `None`, then it will not perform any type conversion
|
|
183
|
+
or preservation.
|
|
184
|
+
|
|
185
|
+
Examples help make this clear:
|
|
186
|
+
|
|
187
|
+
#### Guaranteed return type
|
|
188
|
+
|
|
189
|
+
Say you define `FS`, a subclass of `float`. The usual Python type
|
|
190
|
+
promotion behavior means that an `FS` times a `float` is still a
|
|
191
|
+
`float`:
|
|
192
|
+
|
|
193
|
+
``` python
|
|
194
|
+
class FS(float):
|
|
195
|
+
def __repr__(self): return f'FS({float(self)})'
|
|
196
|
+
|
|
197
|
+
f1 = float(1)
|
|
198
|
+
FS2 = FS(2)
|
|
199
|
+
|
|
200
|
+
val = f1 * FS2
|
|
201
|
+
type(val) # => float
|
|
202
|
+
```
|
|
203
|
+
|
|
204
|
+
float
|
|
205
|
+
|
|
206
|
+
With Transform, you can define a new multiplication operation which will
|
|
207
|
+
be guaranteed to return a `FS`, because Transform reads the required raw
|
|
208
|
+
function’s annotated return type:
|
|
209
|
+
|
|
210
|
+
``` python
|
|
211
|
+
def double_FS(x)->FS: return FS(2)*x
|
|
212
|
+
t = Transform(double_FS)
|
|
213
|
+
val = t(1)
|
|
214
|
+
assert isinstance(val,FS)
|
|
215
|
+
val
|
|
216
|
+
```
|
|
217
|
+
|
|
218
|
+
FS(2.0)
|
|
219
|
+
|
|
220
|
+
#### Type preservation
|
|
221
|
+
|
|
222
|
+
Let us say that we define a transform *without* any return type
|
|
223
|
+
annotation, so that the raw function is defined only by the behavior of
|
|
224
|
+
multiplying its argument by the float 2.0.
|
|
225
|
+
|
|
226
|
+
Multiplying the subtype `FS` with the float value 2 would normally
|
|
227
|
+
return a `float`. However, Transform’s `encodes` will *preserve the
|
|
228
|
+
runtime type of its argument*, so that it returns `FS`:
|
|
229
|
+
|
|
230
|
+
``` python
|
|
231
|
+
def double(x): return x*2.0 # no type annotation
|
|
232
|
+
t = Transform(double)
|
|
233
|
+
fs1 = FS(1)
|
|
234
|
+
val = t(fs1)
|
|
235
|
+
assert isinstance(val,FS)
|
|
236
|
+
val # => FS(2), an FS value of 2
|
|
237
|
+
```
|
|
238
|
+
|
|
239
|
+
FS(2.0)
|
|
240
|
+
|
|
241
|
+
#### Opt-out conversion
|
|
242
|
+
|
|
243
|
+
Sometimes you don’t want Transform to do any type-based logic. You can
|
|
244
|
+
opt-out of this system by declaring that your raw function’s return type
|
|
245
|
+
is `None`:
|
|
246
|
+
|
|
247
|
+
``` python
|
|
248
|
+
def double_none(x) -> None: return x*2.0 # "None" returnt type means "no conversion"
|
|
249
|
+
t = Transform(double_none)
|
|
250
|
+
fs1 = FS(1)
|
|
251
|
+
val = t(fs1)
|
|
252
|
+
assert isinstance(val,float)
|
|
253
|
+
val # => 2.0, a float of 2, because of fallback to standard Python type logic
|
|
254
|
+
```
|
|
255
|
+
|
|
256
|
+
2.0
|
|
257
|
+
|
|
258
|
+
### Pipelines
|
|
259
|
+
|
|
260
|
+
Transforms can be combined into larger **Pipelines**:
|
|
261
|
+
|
|
262
|
+
``` python
|
|
263
|
+
def double(x): return x*2.0
|
|
264
|
+
def halve(x): return x/2.0
|
|
265
|
+
dt = Transform(double,halve)
|
|
266
|
+
|
|
267
|
+
class NormalizeMean(Transform):
|
|
268
|
+
def setups(self, items):
|
|
269
|
+
self.mean = statistics.mean(items)
|
|
270
|
+
self.std = statistics.stdev(items)
|
|
271
|
+
|
|
272
|
+
def encodes(self, x):
|
|
273
|
+
return (x - self.mean) / self.std
|
|
274
|
+
|
|
275
|
+
def decodes(self, x):
|
|
276
|
+
return x * self.std + self.mean
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
p = Pipeline((dt, normalize))
|
|
280
|
+
|
|
281
|
+
v = p(5)
|
|
282
|
+
v
|
|
283
|
+
```
|
|
284
|
+
|
|
285
|
+
4.427188724235731
|
|
286
|
+
|
|
287
|
+
``` python
|
|
288
|
+
p.decode(v)
|
|
289
|
+
```
|
|
290
|
+
|
|
291
|
+
5.0
|
|
292
|
+
|
|
293
|
+
### Documentation
|
|
294
|
+
|
|
295
|
+
This was just a quickstart. Learn more by reading the
|
|
296
|
+
[documentation](https://github.io/AnswerDotAI/fasttransform).
|