Xanyv

Results 3 issues of Xanyv

when I run: trainer = pl.Trainer(max_nb_epochs = tft.num_epochs, gpus = 1, track_grad_norm = 2, gradient_clip_val = tft.max_gradient_norm, early_stop_callback = early_stop_callback, #train_percent_check = 0.01, #val_percent_check = 0.01, #test_percent_check = 0.01, overfit_pct=0.01,...

能否在作图的时候把真实值去尾,预测值去头来对齐数据呢? 比如原始作图为: ![20210416145330](https://user-images.githubusercontent.com/55947137/114985014-e5233300-9ec4-11eb-8a1b-521c052b87a8.png) 作图时选择 `plt.plot(Truth[:-1], label='mean_gt')` `plt.plt(Predictions[1:], label='mean')` ![20210416145228](https://user-images.githubusercontent.com/55947137/114985288-36332700-9ec5-11eb-8f9c-d81ef637f415.png) 这样图片在每个时间点上就对齐了, 请问可行吗?