import nltk
from nltk.stem.lancaster import LancasterStemmer
stemmer = LancasterStemmer()
import numpy
import tflearn
import tensorflow
import random
import json
with open("intents.json") as file:
data = json.load(file)
wrds = []
labels = []
docs_x = []
docs_y = []
for intent in data["intents"]:
for pattern in intent["patterns"]:
wrds = nltk.word_tokenize(pattern)
wrds.extend(wrds)
docs_x.append(pattern)
docs_y.append(intent["tag"])
if intent["tag"] not in labels:
labels.append(intent["tag"])
请告诉我为什么这段代码没有运行它给出这个错误:
警告:tensorflow:来自 C:\Program Files\Python37\lib\site-packages\tflearn\helpers\summarizer.py:9:不推荐使用名称 tf.summary.merge。请改用 tf.compat.v1.summary.merge
警告:tensorflow:来自 C:\Program Files\Python37\lib\site-packages\tflearn\helpers\trainer.py:25:不推荐使用名称 tf.summary.FileWriter。请改用 tf.compat.v1.summary.FileWriter
警告:tensorflow:来自 C:\Program Files\Python37\lib\site-packages\tflearn\collections.py:13:不推荐使用名称 tf.GraphKeys。请改用 tf.compat.v1.GraphKeys
警告:tensorflow:来自 C:\Program Files\Python37\lib\site-packages\tflearn\config.py:123:不推荐使用名称 tf.get_collection。请改用 tf.compat.v1.get_collection
警告:tensorflow:来自 C:\Program Files\Python37\lib\site-packages\tflearn\config.py:129:名称 tf.add_to_collection 已弃用。请改用 tf.compat.v1.add_to_collection
警告:tensorflow:来自 C:\Program Files\Python37\lib\site-packages\tflearn\config.py:131:不推荐使用名称 tf.assign。请改用 tf.compat.v1.assign。
任何帮助将不胜感激。