This repository was archived by the owner on Aug 25, 2024. It is now read-only.
File tree 4 files changed +5
-5
lines changed 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -29,5 +29,5 @@ Here are some examples:
29
29
- Most PRs should include a description of what is changing to the
30
30
[ CHANGELOG.md] ( CHANGELOG.md ) file. Use your own judgement on what warrants
31
31
inclusion, the expectation is that 95% of PRs will include an edit to the
32
- change log. Maintainers will let you know if you if you include and its not
32
+ change log. Maintainers will let you know if you need to include it or its not
33
33
needed.
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ Making you're next machine learning project a breeze to write!
67
67
68
68
- Features
69
69
- The [ new feature tutorial] ( docs/tutorial/FEATURE.md ) will walk you through
70
- how to write a new DFFML feature to gernerate data for a dataset.
70
+ how to write a new DFFML feature to generate data for a dataset.
71
71
- Models
72
72
- The [ new model tutorial] ( docs/tutorial/MODEL.md ) will walk you through how
73
73
to wrap your favorite framework or a custom implementation in the DFFML
Original file line number Diff line number Diff line change @@ -50,4 +50,4 @@ entry_points={
50
50
## Tutorial
51
51
52
52
The [ new feature tutorial] ( tutorial/FEATURE.md ) will walk you through how to
53
- write a new DFFML feature to gernerate data for a dataset.
53
+ write a new DFFML feature to generate data for a dataset.
Original file line number Diff line number Diff line change 3
3
## Create the Package
4
4
5
5
To create a new feature we first create a new python package. DFFML has a script
6
- to created it for you.
6
+ to create it for you.
7
7
8
8
We're going to create a feature that multiplies float values by ` 4.2 ` .
9
9
@@ -134,7 +134,7 @@ from dffml_feature_string.feature.string_by_4_point_2 import \
134
134
### Modify ` evaluates ` test
135
135
136
136
The tests start out with one testcase which should work. Modify that so that it
137
- still works. If you don't it should fail because the string being parsed can't
137
+ still works. If you don't, it should fail because the string being parsed can't
138
138
be parsed into a float.
139
139
140
140
``` python
You can’t perform that action at this time.
0 commit comments