- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直试图确定为什么,当我运行程序时,它说所选图像未定义,而当我查看代码时它似乎已定义。
有问题的错误是:
NameError: name 'selectedimage' is not defined
我正在使用 Streamlit,一个在线 GUI 生成器。
if st.sidebar.button("Identify"):
selectedimage = "./AI_TESTING_DATA/" + imageselect
selectedimage = Image.open(selectedimage).resize(IMAGE_SHAPE)
selectedimage = np.array(selectedimage) / 255.0
result = model.predict(selectedimage[np.newaxis, ...])
predicted_class = np.argmax(result[0], axis=-1)
labels_path = "./Product/labels.txt"
class_labels = np.array(open(labels_path).read().splitlines())
predicted_class_name = class_labels[predicted_class]
"It's a :" + predicted_class_name
最佳答案
if 条件if st.sidebar.button("Identify"):
失败,因此 selectedimage
未声明,因此您在 中遇到错误>selectedimage = np.array(selectedimage)/255.0
行
如果您的 if 条件
正确,请检查 st.sidebar.button("Identify")
的值。它将是False
关于python - 为什么未定义 selectedimage?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59925286/
我有一个标签栏 Controller (它是一个基于标签栏的应用程序,所以标签栏在 MainWindow.xib 上)。在这个 xib 中,我添加了 4 个标签栏项目,并设置了所有标签栏项目的图像。因
我一直试图确定为什么,当我运行程序时,它说所选图像未定义,而当我查看代码时它似乎已定义。 有问题的错误是: NameError: name 'selectedimage' is not defined
我有一个带有 4 个 UITabBarItems 的 UITabBar,每个项目都有一个图像和一个 selectedimage。 通常我想要这样: 但首次启动时,应用程序会显示所有选定的图像: 然后,
我正在尝试为 UITabBar 选项卡的 selectedImage 指定图像。此图像包含在 Asset Catalogs 文件夹中。该图像称为 secondActive。 但是,模拟器中显示的图像并
我正在做一个关于react/redux的简单教程,我不明白为什么我们必须在render()方法中这样做 const {images, selectedImage} = this.state; 我知道我
我看到您可以为 UITabBarItem 添加一个 selectedImage 和一个图像,所以我修改了一个 Cordova 插件来添加: UIImage *tabIcon = [UIImage im
我一直在尝试更改 UITabBar 上的选定图像。我遵循了其他 Stackoverflow 问题中列出的步骤,但似乎没有任何效果。 我尝试通过用户定义的运行时属性部分设置图像,并尝试将以下内容添加到
我正在尝试使用 map在我的 vue 组件中运行。我有一个文件上传输入,可以接受多个文件。由于我正在使用 Electron ,因此无法将文件直接传递到应用程序的后端,因此我想使用 Array.prot
我是一名优秀的程序员,十分优秀!