LoadElectricity_Forecasting_CNN-BiLSTM-Attention icon indicating copy to clipboard operation
LoadElectricity_Forecasting_CNN-BiLSTM-Attention copied to clipboard

Performed comparative analysis of BiLSTM, CNN-BiLSTM and CNN-BiLSTM with attention models for forecasting cases.

Results 2 LoadElectricity_Forecasting_CNN-BiLSTM-Attention issues
Sort by recently updated
recently updated
newest added

I'm having issues regarding this part of the code import pickle # Save the trained model model.save('/content/drive/MyDrive/Model/BiLSTM_Model_Final.h5') # Save the history object with open('/content/drive/MyDrive/Model/BiLSTM_history_Final.pkl', 'wb') as f: pickle.dump(history.history, f) Can...

请问这个是什么意思?可以怎么解决? # Load the trained model model = load_model('/content/drive/MyDrive/Model/CNN-BiLSTM-Attention_Model_Final.h5', custom_objects={"cc": cc, "Attention": Attention}) # Load the history object with open('/content/drive/MyDrive/Model/CNN-BiLSTM-Attention_history_Final.pkl', 'rb') as f: history = pickle.load(f)

question