- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我在使用 Python 2.7 的 Tensorflow 1.3.0 中实现 DNNClassifier 时遇到错误。我从 Tensorflow tf.estimator Quickstart
教程中获得了示例代码,我想使用我自己的数据集运行它:3D 坐标和 10 个不同的类(int 标签)。这是我的实现:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
def ReadLabels(file):
#load the labels from test file here
labelFile = open(file, "r")
Label = labelFile.readlines();
returnL = [[Label[i][j+1] for j in range(len(Label[0])-3)] for i in range(len(Label))]
returnLint = list();
for i in range(len(returnL)):
tmp = ''
for j in range(len(returnL[0])):
tmp += str(returnL[i][j])
returnLint.append(int(tmp))
return returnL, returnLint
def NumpyReadBin(file,numcols,type):
#load the data from binary file here
import numpy as np
trainData = np.fromfile(file,dtype=type)
numrows = len(trainData)/numcols
#print trainData[0:100]
result = [[trainData[i+j*numcols] for i in range(numcols)] for j in range(numrows)]
return result
def TensorflowDNN():
#load sample dataset
trainData = NumpyReadBin('data/TrainingData.dat',3,'float32')
valData = NumpyReadBin('data/ValidationData.dat',3,'float32')
testData = NumpyReadBin('data/TestingData.dat',3,'float32')
#load sample labels
trainL, trainLint = ReadLabels('data/TrainingLabels.txt')
validateL, validateLint = ReadLabels('data/ValidationLabels.txt')
testL, testLint = ReadLabels('data/TestingLabels.txt')
import tensorflow as tf
import numpy as np
#get unique labels
uniqueTrain = set()
for l in trainLint:
uniqueTrain.add(l)
uniqueTrain = list(uniqueTrain)
numClasses = len(uniqueTrain)
numDims = len(trainData[0])
#All features have real-value data
feature_columns = [tf.feature_column.numeric_column("x", shape=[3])]
# Build 3 layer DNN with 10, 20, 10 units respectively.
classifier = tf.estimator.DNNClassifier(feature_columns=feature_columns,
hidden_units=[10, 20, 10],
n_classes=numClasses,
model_dir="../Classification/tmp")
# Define training inputs
train_input_fn = tf.estimator.inputs.numpy_input_fn(
x={"x": np.array(trainData)},y=np.array(trainLint),
num_epochs = None, shuffle = True)
#Train the model
classifier.train(input_fn = train_input_fn, steps = 2000)
#Define Validation inputs
val_input_fn = tf.estimator.inputs.numpy_input_fn(
x={"x": np.array(valData)},y=np.array(validateLint),
num_epochs = 1, shuffle = False)
# Evaluate accuracy.
accuracy_score = classifier.evaluate(input_fn=val_input_fn)["accuracy"]
print("\nTest Accuracy: {0:f}\n".format(accuracy_score))
if __name__ == '__main__':
TensorflowDNN()
函数 RedLabels(...)
和 NumpyReadBin(...)
正在加载我保存的张量数据集。由于标签是我从文本文件中读取的整数,该函数有点奇怪,但我最终得到的是一个包含来自这些标签的整数的数组:[11、12、21、22、23、31、32 , 33, 41, 42].
但是我无法对任何内容进行分类,因为在调用 classifier.train(input_fn = train_input_fn, steps = 2000)
时,我收到以下错误:
...Traceback and stuff like that...
InvalidArgumentError (see above for traceback): assertion failed: [Label IDs must < n_classes] [Condition x < y did not hold element-wise:x (dnn/head/labels:0) = ] [[21][32][42]...] [y (dnn/head/assert_range/Const:0) = ] [10]
[[Node: dnn/head/assert_range/assert_less/Assert/AssertGuard/Assert = Assert[T=[DT_STRING, DT_STRING, DT_INT64, DT_STRING, DT_INT64], summarize=3, _device="/job:localhost/replica:0/task:0/cpu:0"](dnn/head/assert_range/assert_less/Assert/AssertGuard/Assert/Switch/_117, dnn/head/assert_range/assert_less/Assert/AssertGuard/Assert/data_0, dnn/head/assert_range/assert_less/Assert/AssertGuard/Assert/data_1, dnn/head/assert_range/assert_less/Assert/AssertGuard/Assert/Switch_1/_119, dnn/head/assert_range/assert_less/Assert/AssertGuard/Assert/data_3, dnn/head/assert_range/assert_less/Assert/AssertGuard/Assert/Switch_2/_121)]]
有没有人以前遇到过这个错误或者知道如何解决它?我猜这是在提示我的数据集中的类/标签格式的数量,但我知道 trainLint 包含 10 个不同的类标签,这就是 numClasses
的值。会不会是我的 trainLint
数组的格式?
最佳答案
所以解决方案为Ishant Mrinal指出:
Tensorflow 期望从 0 到类数的整数作为类标签 (range(0, num_classes)
),而不是像我的情况那样的“任意”数字。谢谢!:)
...我刚刚遇到的另一个选择是将 label_vocabulary
添加到分类器定义中:
classifier = tf.estimator.DNNClassifier(feature_columns=feature_columns,
hidden_units=[10, 20, 10],
n_classes=numClasses,
model_dir=saveAt,
label_vocabulary=uniqueTrain)
使用此选项,我可以像以前一样定义标签,并将其转换为字符串。
关于python - Tensorflow 无效参数 : Assertation Failed [Label IDs must < n_classes],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45813746/
在whatsapp中,如果消息很短,文本和时间在同一行。如果消息很长,时间在右下角 - 上面的文字。 我如何在 Ios 中使用 Storyboard 实现此目的 最佳答案 尝试使用类似这样的方法来定义
我有这段代码: label.control-label{ font-weight: bold; } label.control-label::after{ content: ":";
尊敬的社区成员, 我想将测试中的文本放在 div 的中心。代码如下所示: Testing everything: 现在,如果我尝试以下代码部分: Testing everything: 它不会在
我有一个 DIV 元素,它有一个 并在其中输入文本框。 基本上,我在 DIV 元素上启用了 jQuery .resizable(),但是当您使 DIV 元素小于当前大小时,文本框会被推到新的一行。 我
请考虑以下标记。 This is a label 对我来说,这个标记是在我的自定义工具提示控件之后生成的。我在 IE 上的 JAWS 上看到的问题是它只读取“标题,而不是标签”,但是对于其他屏幕阅读
我正在按照文档使用 ionic 2 构建应用程序。我已经实现了一个带有 fab-list 的 fab 按钮。我试图在包含按钮旁边放置一个描述性标签。开箱即用的 ionic 2 似乎无法在 float
通常我使用标签标签来指向这样的输入标签 First Name: 现在我有了这个 First Name: 由于我以前没有穿过这样的东西,是否可以为 label 添加 label 标签。当我应用 Ja
我有一个包含换行符(“\r”)的传入文本字符串。 当我输出它时: System.out.println(myString) , 回车被解释。 但是,当我将字符串设置为标签的内容时,它会忽略回车。 如何
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 1年前关闭。 Improve thi
在 Excel 2013 中,我使用单元格中的值标记散点图。我希望标签不重叠。我可以手动移动标签,但我创建了一个过滤器来自动创建新绘图,因此我希望标签冲突也能自动发生。 这可能吗?无需 VBA 的解决
在我的 Struts2 JSP 中,我想显示一个 id,所以我写道: A${id}B ( A 和 B 用于调试) 我希望它显示为 Id:A7B 但 HTML 中生成了以下内容:A7BId: 为什么标签
我想要一个带注释的 AST,所以我定义了那些递归数据结构 使用 Fix : data Term a = Abstraction Name a | Application a a | Var
这两种方法都没有记录,并且似乎没有达到我的预期。 mylabel.setFontScale(3f); 使明显文本变大 3 倍(我正在寻找的),但与 Align.center 一起使用时无法正确居中>.
ScrollView里面有两个Label(多边的),下面是TableView(其中行数可能不同) Label 和 TableView 的高度都没有设置。 所有 outlet 都对彼此上方和下方的缩进设
我很好奇是否有一种简单的方法可以使标签采用 CSS 样式属性的默认值。我的复选框采用了我的选项卡的属性,我只希望它们成为默认值。正如您将看到的,我更改了复选框的字体大小,使其小于选项卡。但是,我不想仅
asp:label 和 html label 有什么区别? 我知道第一个是在服务器上呈现的,所以基本上它会返回一个跨度选项卡,但它有什么用呢?在什么情况下需要使用 HTML 标记,在什么情况下需要使用
我需要从网站中提取所有城市名称。我在以前的项目中使用了 beautifulSoup 和 RE,但在这个网站上,城市名称是常规文本的一部分,没有特定的格式。我找到了满足我要求的地理包 ( https:/
您好,我正在尝试添加 到表格的每个单元格。我在这里使用 Material 表:https://material-table.com/#/docs/features/component-overridi
我想制作一个简单的 R 图,y 轴标签位于 y 轴刻度标签上方。我用下面的代码创建了我喜欢的东西。但是它需要对 at 进行一些摸索。图形参数。 问:有没有更简单的方法来做到这一点?有没有办法查询 y
我可以绘制以下 df 的标签使用 geom_text : df 1 8 var 2 426 -276 hours worked per week N
我是一名优秀的程序员,十分优秀!