第3课使用模型

上节我们训练了模型,但有人会问:“模型如何使用。”这节我们来使用模型

调用模型需要用module.chat或module.Best_chat


from pychatbots.module import module

while True:

    i = input()
    
    print(module.Best_chat(None,i,'你的模型位置'))#print(module.chat(None,i,'你的模型位置')
    

其中i是问题,你的模型位置请改成h6模型的位置

其中Best_chat可替换为chat,视模型类型而定

Best_train训练出的模型不能供chat调用,但train训练出的模型可以供Best_chat调用

上一课

[第2课](http://lazy-cat-xiaolanmao.github.io/Learning-course/zh-cn/2)

下一课

[第4课](http://lazy-cat-xiaolanmao.github.io/Learning-course/zh-cn/4)

主页

主页