程式相關的測試資料過大,請至這裡下載
gym 不再更新,未來由 gymnasium 套件取代,請參閱 Gymnasium GitHub
np.argmax(model.predict(x_test_norm), axis=-1)
pip install chatterbot --no-dependencies -U
pip install chatterbot_corpus
pip install pint
pip install mathparse
pip install pymongo -U
若出現 sqlalchemy 錯誤,dialect.has_table error, 請修改 anaconda3\Lib\site-packages\chatterbot\storage\sql_storage.py, 約在第46行。
# Michael changed
# if not self.engine.dialect.has_table(self.engine, 'Statement'):
import sqlalchemy
insp = sqlalchemy.inspect(self.engine)
if not insp.has_table('Statement'):