ModuleNotFoundError:没有名为“预处理”的模块

问题描述 投票:0回答:0

好吧,我正在做一门关于 Python ChatBots 的课程,并且有一个平台外项目,所以我设置了它(我正在使用 Jupyter Lab),并且我刚刚运行了一个名为training_model.ipynb 的文件(这是 Python 的 Jupyterlab 扩展) )并得到错误:

ModuleNotFoundError: No module named 'preprocessing'
该文件存在,并且与其他 4 个文件位于同一目录中,任何尝试导入另一个文件的文件都会出现相同的错误。

以下是导入声明:

from preprocessing import num_encoder_tokens, num_decoder_tokens, decoder_target_data, encoder_input_data, decoder_input_data, decoder_target_data, max_encoder_seq_length, max_decoder_seq_length
from preprocessing import input_features_dict, target_features_dict, reverse_input_features_dict, reverse_target_features_dict, max_decoder_seq_length, input_docs, target_docs, input_tokens, target_tokens, max_encoder_seq_length
from training_model import decoder_inputs, decoder_lstm, decoder_dense, encoder_input_data, num_decoder_tokens, num_encoder_tokens
python-3.x module python-import importerror
© www.soinside.com 2019 - 2024. All rights reserved.