问题标签 [valueerror]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
python - Python Flask 中的相对导入似乎不起作用
我的 Flask 项目具有以下目录结构
我的setup.py
样子如下:
我担心如何将我的models
和app (__init__)
导入我的测试文件(first_test.py
)。
所以,到目前为止我已经尝试过
和
我不知道如何导入文件。另外,我运行测试文件py.test API/test/first_test.py
python - 与 functools.partial 一起使用时,itertools.islice 会引发 ValueError
考虑以下python会话(3.6.1):
这里没有什么是出乎意料的。现在,与functools.partial
:
partial
似乎以一种非常意想不到的方式干扰islice
行为。
这种行为背后的原因是什么?这是因为 islice 不处理关键字参数,例如 str.split 几个版本?
python - Value Error when creating dictionary using python 3
I am a student who is totally new to python and is currently learning it. So i was asked to create a dictionary from a list which contains a row of data in the file.
the file is already imported and it consists of many rows of data that correspond to the the element in record
list.
Example of data:
so my code is like
I am expecting to get
but I get an error message says:
and also if there is a blank value in data(such as in eg of r2 above), it is supposed to be left out of dictionary, what should i do to achieve this?
Thanks for any help in this!
python - 为什么我收到 ValueError: invalid literal for int() with base 10: ''
当我运行这个程序时,我收到错误,ValueError: invalid literal for int() with base 10: '',我觉得这与 int 和 str 转换有关,但我真的不太确定,感谢任何帮助:)
python - 机器学习 - 为什么我会收到 ValueError?
我目前正在阅读 Python for Machine Learning 一书的第 3 章。在计算机上实现书中的算法时,我收到一个 ValueError 说明“不允许将整数转换为负整数”,即使我以与书中描述的相同方式实现代码。这里有人知道为什么我会收到 valueerror 并帮助我修复它吗?
代码:
错误:
lr = LogisticRegression(C=10**c, random_state = 0)
ValueError: 整数的负整数幂是不允许的。
【6.1s完成】
python - Python Pandas ValueError
感谢您提供以下建议,我已经修改了我的问题以使其更清楚
我有一个带有余额的数据框(bp)以及第 1-6 列中的(年度)集合。
我正在尝试预测明年的余额(因此第 1 列中的余额应该是第 1 年的开始余额减去收款)。但是,与此同时,如果预计不再有收款,我想将余额记为零。
上面的代码有效,但如果不再需要收集,则不会将余额记为零,我尝试了以下操作,但这会产生错误。我想这是因为我正在比较行(检查 bp 中是否有未来的集合)并且 gbv.iloc[:,i] 将结果强制在总列上。不知道我应该怎么做。
我正在尝试获得以下输出:
欢迎任何建议!
tensorflow - 带有 Keras 的 Tensorflow:ValueError - 预期 dense_84 有 2 个维度,但得到的数组形状为 (100, 9, 1)
我正在尝试通过 Keras 使用 Tensorflow 来构建一个使用时间序列数据来预测下一个值的网络,但是我收到了这个错误:
这是什么原因造成的?我已经尝试按照其他帖子的建议重塑数据,但到目前为止无济于事。这是代码:
这是模型摘要:
如果有适当的方法来格式化数据,或者可能有适当的方法来堆叠这些层,我很想知道。
numpy - Tensorflow ,设置具有序列的数组元素
尝试训练 word2vec 模型时,我在将值加载到 feed_dict 的过程中被卡住了。错误信息是:
这是我的模型代码:
...
这是我生成的 8 号批次,仅用于演示目的:
从我收集的数组形状来看,center_words 和 target_words 的形状都是一致的(batch_size,)。我的猜测是它必须与 dtype=object part 做一些事情,但我不确定。将不胜感激任何建议。
gen_batch 代码:
generate_empty_2D_batch_array 的代码:
windows - 在 python 3.6 Windows 上使用 nltk 的 ValueError
试图跑
从 Windows 上的 Python 3.6 得到
在 Linux 上它工作得很好!
有人知道发生了什么吗?
python-3.x - 无法更新字典:ValueError:字典更新序列元素 #0 的长度为 1;2 是必需的
我对 python 很陌生,我目前正在使用不是我为我的工作编写的代码。我使用的代码给了我一个名为“net”的字典,我被告知我需要在使用它的内容之前更新这个字典。
如果您对此有解释,则不确定“更新”是做什么的,将不胜感激。
无论如何,我使用的代码称为 OpenPNM,下面的 pn 是“Network.GenericNetwork.GenericNetwork”类型,这对不使用 OpenPNM 的人来说可能毫无意义。
所以要更新我做的字典:
pn.update('net')
并得到错误: ValueError: dictionary update sequence element #0 has length 1; 2 是必需的
我知道这很含糊,但我不知道还要添加什么,所以只需询问我需要提供的任何代码以获得帮助!
提前致谢。