BUG
Better Will
这个作者很懒,什么都没留下…
展开
-
ValueError: not enough values to unpack (expected 2, got 0)的问题 ,对应的代码是words, _ = zip(*count_pairs)
这个报错是文件读取方式不当的错误,将四个py文件中的读取文件方式"r"全部换成"rb"即可,注意四个文件里面的这部分都要进行更换,示例:fp=open(’…/data/poetry.txt’, “rb”) 以及 with open(poetry_file, “rb”) as f:...原创 2020-07-05 15:01:00 · 1616 阅读 · 0 评论 -
list index out of range错误解决方法
检查数据中存在空行原创 2020-07-04 18:39:15 · 3108 阅读 · 0 评论 -
RuntimeError: Attempted to use a closed Session.解决方法
解决方案CASE 1try: model.load("model.tflearn")except: model.fit(training, output, n_epoch=1000, batch_size=8, show_metric=True) model.save("model.tflearn")去掉try: model.load("model.tflearn")except:CASE 2with tf.Session(config=sess_conf原创 2020-07-04 18:01:53 · 2784 阅读 · 0 评论 -
RuntimeError: CUDA out of memory. Tried to allocate 144.00 MiB (GPU 0; 2.00 GiB total capacity; 1.29
RuntimeError: CUDA out of memory. Tried to allocate 144.00 MiB (GPU 0; 2.00 GiB total capacity; 1.29 GiB already allocated; 79.00 MiB free; 1.30 GiB reserved in total by PyTorch)解决方案原创 2020-07-04 12:20:07 · 18712 阅读 · 3 评论 -
【BUG】NLTK 由于目标计算机积极拒绝,无法连接。
1先去Github下载 https://github.com/nltk/nltk_data/tree/gh-pages 得到nltk_data-gh-pages.zip文件2解压punkt压缩包3将刚下载的文件夹nltk_data-gh-pages\packages复制粘贴到截图文件下原创 2020-07-04 09:27:22 · 1654 阅读 · 0 评论 -
cannot import name ‘args‘ from ‘parser‘ (unknown location) windows
cannot import name 'args' from 'parser' (unknown location) windows解决措施:将parser.py模块全部换了个名,改为了parser1.py,中间所有parser都换为了parser1原创 2020-07-04 08:34:13 · 4822 阅读 · 2 评论