翻译结果为:我有20个类别。尝试使用示例来突出部分特征。
label_list = []
for i in range(20):
print(i)
label_list.append(str(i))
print(label_list)
MAX_SEQ_LENGTH = 128
train_features = bert.run_classifier.convert_examples_to_features(train_InputExamples, label_list, MAX_SEQ_LENGTH, tokenizer)
# test_features = bert.run_classifier.convert_examples_to_features(test_InputExamples, label_list, MAX_SEQ_LENGTH, tokenizer)
错误是KeyError,Traceback (most recent call last)
在以下代码中:
775 feature = convert_single_example(ex_index, example, label_list, max_seq_length, tokenizer)
776 features.append(feature)
解决方案:检查label_list中的标签是否正确。
2条答案
按热度按时间rryofs0p1#
@abhishek-choudhary-guavus 我遇到了完全相同的问题!你解决了吗?
z31licg02#
#934