Skip to content

Commit

Permalink
temp cmt
Browse files Browse the repository at this point in the history
  • Loading branch information
zezhishao committed Sep 3, 2024
1 parent f3c80d2 commit c1d192f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tutorial/scaler_design.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ For example, a Z-Score Scaler reads the raw data and computes the mean and stand

The Scaler functions after the data is extracted from the dataset. The data is first normalized by the Scaler before being passed to the model for training. After the model processes the data, the Scaler denormalizes the output before it is passed to the runner for loss calculation and metric evaluation.

> **Note:**
> [!IMPORTANT]
> In traditional time series analysis, normalization often occurs during data preprocessing, as was the case in earlier versions of BasicTS. However, this approach is not scalable. Adjustments like changing input/output lengths, applying different normalization methods (e.g., individual normalization for each time series), or altering the training/validation/test split ratios would require re-preprocessing the data. To overcome this limitation, BasicTS adopts an "instant normalization" approach, where data is normalized each time it is extracted.
```python
Expand Down

0 comments on commit c1d192f

Please sign in to comment.