Skip to content

Commit 7e2fe61

Browse files
committed
Acrolinx updates . . .
1 parent 7f9ecff commit 7e2fe61

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/machine-learning/feature-set-specification-transformation-concepts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ class UserTotalSpendProfileTransformer(Transformer):
137137
.withColumn("is_low_spend_user", col("total_spend") < 20.0)
138138
```
139139

140-
This feature set has three features, with data types as shown:
140+
The feature set has three features, with data types as shown:
141141

142142
- `total_spend`: double
143143
- `is_high_spend_user`: bool
@@ -338,7 +338,7 @@ Define `source_lookback` as a time delta value, which presents the range of sour
338338
| Transformation type | `source_lookback` |
339339
|---|---|
340340
| Row-level transformation | 0 (default) |
341-
| Sliding window | size of the largest window range in the transformer.<br> e.g.<br> `source_lookback` = 3 days when the feature set defines 3 day rolling features <br> `source_lookback` = 7 days when the feature set defines both 3 day and 7 day rolling features |
341+
| Sliding window | size of the largest window range in the transformer.<br> e.g.<br> `source_lookback` = 3 days when the feature set defines three day rolling features <br> `source_lookback` = 7 days when the feature set defines both three day and seven day rolling features |
342342
| Tumbling/stagger window | value of `windowDuration` in `window` definition. e.g. source_lookback = 1day when using `window("timestamp", windowDuration="1 day",slideDuration="6 hours)` |
343343

344344
Incorrect `source_lookback` settings can lead to incorrect calculated/materialized feature values.

0 commit comments

Comments
 (0)