Ruonan Wang

Results 26 issues of Ruonan Wang

``` autoformer = AutoformerForecaster(past_seq_len=look_back, future_seq_len=horizon, input_feature_num=321, output_feature_num=321, label_len=label_len, freq='h', seed=1024, loss="mse", metrics=['mae', 'mse', 'mape'], lr=0.0001, d_model=128, d_ff=64, e_layer=2, n_head=2) autoformer.fit(train_loader, epochs=2, batch_size=32) autoformer.trainer.fit(autoformer.internal, train_loader) ``` and the second fit is...

Chronos

Although I fixed seed in this code(https://github.com/intel-analytics/BigDL/blob/main/python/chronos/use-case/electricity/autoformer.py), the results after each fit are different, and the gap is very large (MSE: 0.26-0.4).

Chronos

Also to fix https://github.com/intel-analytics/BigDL/issues/4970, here add automatic detection of redundant input names in trace with onnxruntime.

Nano

I see on this website https://grouplens.org/datasets/movielens/ ml-20m.zip is 196MB.

## Description This PR makes is_predict=True works for BaseForecaster ### 1. Why the change? https://github.com/intel-analytics/BigDL/issues/5874 ### 2. User API changes Before API is : ```python # BaseForecaster x, y =...

Chronos

## Description Provide a How-to guide for new function: predict_interval in Forecaster ### 1. Why the change? Provide a How-to guide for new function: predict_interval in Forecaster ### 2. User...

Chronos

## Description Bigdl-nano InferenceOptimizer example about how to export the optimized model to standard format. ### 1. Why the change? We need to show users how to export the optimized...

Nano

## Description Update https://bigdl.readthedocs.io/en/latest/doc/Nano/QuickStart/pytorch_inference.html with InferenceOptimizer ### 1. Why the change? As we have deprecated Trainer.trace / Trainer.quantize, we need to change our documentation too. ### 2. User API changes...

Nano

Now user use `predict()` under two situations: 1. they use predict as evaluate, so the data should contain (x, y) 2. they just do inference, so the data should only...

Chronos

Nowdays, input data types for different methods in BaseForecaster and AutoformerForecaster is different and is confusing. The following table lists the support data types of each method: | Method |...

Chronos