- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我希望能够使用来自 C++ 的 python 模块,例如 numpy、scipy 等。以下代码尝试调用 scipy.optimize.curve_fit 来拟合抛物线函数。调用 curve_fit 时出现问题。此处抛出异常。
#include <iostream>
#include <pybind11/embed.h>
#include <pybind11/numpy.h>
#include <pybind11/stl.h> // mandatory for myPyObject.cast<std::vector<T>>()
#include <pybind11/functional.h> // mandatory for py::cast( std::function )
namespace py = pybind11;
int main()
{
try {
py::scoped_interpreter guard{};
py::module np = py::module::import("numpy");
py::object random = np.attr("random");
py::module scipy = py::module::import("scipy.optimize");
// create some data for fitting
std::vector<double> xValues(11, 0);
std::vector<double> yValues(11, 0);
for (int i = -5; i < 6; ++i) {
xValues[i + 5] = i;
yValues[i + 5] = i*i;
}
// cast it to numpy arrays
py::array_t<double> pyXValues = py::cast(xValues);
py::array_t<double> pyYValues = py::cast(yValues);
// add some noise to the yValues using numpy -> Works!
py::array_t<double> pyYValuesNoise = np.attr("add")(pyYValues, random.attr("randn")(11));
// create a function f_a(x) = a*x^2
std::function<std::vector<double>(std::vector<double>, double)> squared = [](std::vector<double> x, double a) {
std::vector<double> retvals(x);
std::transform(x.begin(), x.end(), retvals.begin(), [a](double val) { return a*val*val; });
return retvals;
};
// cast it to a python function
py::function pySquared = py::cast(squared);
// get scipy.optimize.curve_fit
py::function curve_fit = scipy.attr("curve_fit");
// call curve_fit -> throws exception
/* py::object = */ curve_fit(pySquared, pyXValues, pyYValues);
}
catch (std::exception error) {
std::cout << error.what() << std::endl;
}
system("pause");
return 0;
}
异常给出信息:
ValueError: no signature found for builtin < built-in method of PyCapsule object at 0x00000204FFE9C630>
At:
D:\Programs\python36_6_x64\Lib\inspect.py(2090): _signature_from_builtin D:\Programs\python36_6_x64\Lib\inspect.py(2266): _signature_from_callable D:\Programs\python36_6_x64\Lib\inspect.py(2802): from_callable D:\Programs\python36_6_x64\Lib\inspect.py(3052): signature D:\Programs\python36_6_x64\lib\site-packages\scipy_lib_util.py(290): getargspec_no_self
D:\Programs\python36_6_x64\lib\site-packages\scipy\optimize\minpack.py(685): curve_fit
如何从 C++ 正确调用 curve_fit?
最佳答案
基于 Jens Munk 的 comment我创建了一个 Python 模块“MyPythonModule”,其中包含文件“MyFunctionality.py”,函数为
def python_square_function(x, a):
return a*x**2
我将此模块的路径添加到环境变量 PYTHONPATH 中。 C++ 代码更改为:
#include <iostream>
#include <pybind11/embed.h>
#include <pybind11/numpy.h>
#include <pybind11/stl.h> // for myPyObject.cast<std::vector<T>>()
namespace py = pybind11;
int main()
{
py::scoped_interpreter guard{};
py::module np = py::module::import("numpy");
py::object random = np.attr("random");
py::module scipy = py::module::import("scipy.optimize");
// Load created module containing f_a(x) = a*x^2
py::module myModule = py::module::import("MyPythonModule.MyFunctionality");
// Create some data for fitting
std::vector<double> xValues(11, 0);
std::vector<double> yValues(11, 0);
for (int i = -5; i < 6; ++i) {
xValues[i + 5] = i;
yValues[i + 5] = i*i;
}
// Cast data to numpy arrays
py::array_t<double> pyXValues = py::cast(xValues);
py::array_t<double> pyYValues = py::cast(yValues);
// Add some noise to the yValues using numpy
py::array_t<double> pyYValuesNoise = np.attr("add")(pyYValues, random.attr("randn")(11));
// Get the function f_a(x) = a*x^2 we want to fit
py::function pySquareFunction = myModule.attr("python_square_function");
// Load scipy.optimize.curve_fit
py::function curve_fit = scipy.attr("curve_fit");
// Call curve_fit
py::object retVals = curve_fit(pySquareFunction, pyXValues, pyYValuesNoise);
// The return value contains the optimal values and the covariance matrix.
// Get the optimal values
py::object optVals = retVals.attr("__getitem__")(0);
// Cast return value back to std::vector and show the result
std::vector<double> retValsStd = optVals.cast<std::vector<double>>();
std::cout << "Fitted parameter a = " << retValsStd[0] << std::endl;
return 0;
}
此代码导致预期行为:拟合参数 a = 0.978144
。
不幸的是,这仍然是一种解决方法,它使用了一些外部 Python 代码。如果能够在 C++ 源代码中定义所有内容,那就太好了。
关于c++ - 通过 pybind11 从 C++ 使用 scipy,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51762140/
首先,感谢大家努力解决我的这个疑问。我正在转换一个最小的 C++ 项目以在 Python 中使用。这种努力背后的真正原因是为了速度。 我遇到了 PyBind,对它的功能以及他们提供的文档数量感到非常惊
我有以下类结构(我实际实现的简化示例): /* TestClass.hpp */ #pragma once template class CurRecTemplate { protected:
我有以下设置(1 个基类、1 个派生类、1 个容器)。容器采用 shared_ptr作为输入。 #include namespace py = pybind11; struct Base { };
我刚刚安装了 pybinding,我正在尝试运行该库文档中提出的第一个示例。 import pybinding as pb import numpy as np import matplotlib.p
我正在使用 pybind 包装一些 C++ 函数,然后在 Python 中使用它。我需要一些结构,但我不知道如何在 Python 中访问它的属性。我的结构没有只有方法的属性,所以我认为绑定(bind)
我使用以下命令创建了一个 miniconda 环境: conda create -n build_a_python_cpp_module xtensor-python -c conda-forge 激
为了更好地理解如何使用 pybind 库将参数从 Python 传递到 C++ 函数,我想构建一个小的虚拟/演示代码,我可以在其中接收 C++ 端的 Python 列表,将其转换为浮点指针对象,然后打
我正在尝试编译 Pybind11 C++ 中的模块它调用了几个头文件(.h)在上面。由于我有很多头文件,我决定做一个 Makefile ,没有问题,除了创建目标共享对象文件(s.o) .我需要这个共享
pybind 的新手 - 阅读文档,但我不了解如何将其应用于二维数组。 我有两个数组存储 3d 坐标 shape = (10,3) a = np.zeros(shape=(10,3)) b = np.
TL;博士 将 pybind11 绑定(bind)添加到工作中的 C++ DLL 项目允许我在 Python 中导入和使用生成的 DLL,但会破坏我使用 boost/dll 机制在 C++ 代码中使用
在 Pybind 中,可以通知 Python 关于函数的参数名称: m.def("add", &add, "A function which adds two numbers", py::arg(
当我运行 pip install .在我有 setup.py 的目录中。我正在使用 pybind11 为我的 C++ 项目构建一个 python 模块。 (同样,在 Windows 10 上) 我收到
我正在尝试使用 PyBind 在 C++ 中嵌入一些 Python 代码。大多数文档都是关于使用 C++ 扩展 Python,但我对嵌入感兴趣: 关于 http://pybind11.readthed
我正在尝试使用 pybind11 实现 C++ 到 python,并使用 pybind11-multiprocessing-hangs 。不同之处在于我想在c++中使用python对象并继续从c++调
我是一名优秀的程序员,十分优秀!