- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要更改内部变量以引用新对象,然后做一些事情,然后再次更改对象,然后对新值做一些事情。
class dml
{
void setTrain(matrix<T> train_x , matrix<T> train_y)
{
train_x_ = train_x;
train_y_ = train_y;
}
void train();
private:
matrix<T> train_x_;
matrix<T> train_y_;
}
因此,我将首先设置 train ,然后调用 train ,它使用我刚刚设置的值进行训练。然后稍后我可能会通过对新值调用 setTrain 来更改值,我想再次对该数据运行训练。(对于 ML 的人,我想实现小批量,我输入数据,训练它,然后输入下一批数据,然后训练它)我现在拥有的简单解决方案很愚蠢,因为它涉及复制一个非常大的矩阵。我的指针是想到的简单解决方案,但我不想使用它们。我的程序很复杂,指针和内存分配只会更麻烦。我想到的一个想法是:
private:
matrix<T>& train_x_;
matrix<T>& train_y_;
}
当然这是行不通的,因为引用永远不能指向空值,我必须在构造函数中初始化它们,因为它们不能重新绑定(bind),所以没有必要使用它们。
我认为解决方案是使用一些智能指针。但是智能指针用于管理堆中的内存,但我不是在堆中分配内存。矩阵对象是在堆栈中创建的,但它是使用 std::vector 实现的,它初始化堆中的所有对象。
我认为逻辑上 shared_ptr 应该起作用,因为我们正在共享一个变量。 std::make_shared
似乎是个好主意,但我读到,当您尝试从堆栈中的现有对象创建 shared_ptr 时,它也会创建一个拷贝。但这并没有解决必须复制这么大对象的问题。
另一个明显的事情是 std::move
,但是 move 在这里不适用,因为我可能需要在函数调用之外使用训练数据 agian。
我确定我遗漏了一些明显的东西。我现在有点 sleep 不足,所以任何解决方案都会对我有很大帮助!
澄清一下:
LargeObj a=9;
auto a_ptr=std::make_shared(a);
如果我这样做,那么 a_ptr 将只指向 a,而不创建拷贝?但这不是这里的一个答案所说的:
Create a boost::shared_ptr to an existing variable
int a = 3;//现有变量shared_ptr aCopy = make_shared(a);//创建值为a的拷贝
最佳答案
LargeObj a=9;
auto a_ptr=std::make_shared(a);If I do this, then a_ptr will just point to a, without creating a copy?
如果您通过复制现有对象(允许)来创建共享指针,那么您将拥有两个对象。这可以通过删除类中的相关函数和/或永远不要将对象定义为 shared_ptr<matrix<T>>
以外的任何对象来避免。 .
如果使用 std::shared_ptr
,您可以处理大对象并防止复制.
以下是对问题中示例的改编。它将对象创建为 std::shared_ptr
s 并显示如何将它们分配给示例中的类。
#include <memory>
#include <iostream>
#include <string>
template <typename T>
class matrix {
public:
matrix() = default;
matrix(const matrix&) = delete; // no copy
matrix(matrix&&) = default; // allow move
matrix& operator=(const matrix&) = delete; // no copy
matrix& operator=(matrix&&) = default; // allow move
};
template <typename T>
class dml
{
public:
void setTrain(std::shared_ptr<matrix<T>> train_x_ptr, std::shared_ptr<matrix<T>> train_y_ptr)
{
train_x_ = train_x_ptr;
train_y_ = train_y_ptr;
}
void train() {};
private:
std::shared_ptr<matrix<T>> train_x_{}; // starts out as an empty shared pointer (contains nullptr)
std::shared_ptr<matrix<T>> train_y_{}; // starts out as an empty shared pointer (contains nullptr)
};
int main()
{
// no explicit new, object is created on the heap (train_x_ptr is created on the stack,
// but will be copied to dml without copying the underlying object).
auto train_x_ptr{std::make_shared<matrix<int>>()};
auto train_y_ptr{std::make_shared<matrix<int>>()};
dml<int> d;
d.setTrain(train_x_ptr, train_y_ptr);
}
请注意 new
不直接使用。
I think the solution would be in using some of the smart pointers. But smart pointers are used to manage the memory in heap, but I am not allocating an memory in the heap. The matrix object is created in the stack, but it is implemented using a std::vector, which initializes all of its objects in the heap.
在此示例中,std::shared_ptr
将创建 matrix
在堆上并为您管理生命周期。同时,如果matrix
包含 std::vector
这些元素也将在某个地方的堆上,由 std::vector
管理.
I think logically shared_ptr should work, as we are sharing a varaible.
std::make_shared
seems to be a good idea, but I read that it too creates a copy when you try create a shared_ptr from an existing object in the stack. But this does not solve the problem of having to copy such a large object.
它不会创建拷贝。它确实解决了问题。
关于c++ - 如何设计可反弹的大对象的类依赖?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41125733/
如果停止 ScrollView 中两个元素之间的滚动,是否有办法使 ScrollView 弹起并稳定? 最佳答案 是的,它叫做Pagination,您基本上需要设置contentSize,然后在中设置
我有一个 UIImageView,它应该从顶部滑入 View ,然后当它停止时它应该制作一个弹跳动画。 我正在像这样设置 y.position 变化的动画: [UIView animateW
我在 java android studio 中使用 libgdx。我才刚刚开始。我正在使用安卓手机。我没有使用任何相机。我想要的只是屏幕所有四个边的 Sprite 反弹而无需点击。我尝试了很多我认为
文本以编程方式添加到 UILabel。随着添加更多文本,文本换行并增加标签的高度。 问题是,当文本在一行的末尾换行时,整个标签将跳起 1 行的高度并自行动画回到正确的位置。最终结果很好,但是你如何摆脱
从 iPhone 上的 UIAlertView 模仿弹跳动画的最佳方法是什么?是否有一些内置机制? UIAlertView 本身不能满足我的需要。 我研究了动画曲线,但据我所知,它们提供的唯一曲线是缓
为此搜索了很多,但还没有找到合适的解决方案。 是否可以禁用 UIPageViewController 的反弹效果并仍然使用 UIPageViewControllerTransitionStyleScr
我有一个 ScrollView ,它充当横幅,其中有 15 个 ImageView 作为 subview (水平滚动)。我这样添加 subview : for (int i = 0; i < feat
我希望如果用户滑动的宽度小于按钮宽度的一半,那么它会弹回并且不显示任何按钮,但是如果用户滑动的宽度超过按钮宽度的一半,那么单元格就会弹回正确的位置。 这就是我目前所拥有的,可以左右滑动。 privat
我使用 jQuery Waypoints 库将菜单栏容器的位置从静态修改为固定。当浏览器窗口向下滚动到菜单栏时,该栏固定在窗口的顶部。 当缓慢滚动到/经过航路点时,状态变化似乎很顺利,但当我以正常速度
我在 xib 中为我的 customCell 使用 autoLayout,因为我想根据文本为行设置可变高度。 现在在我的 VC.m 中 我正在使用这些代码行 - (void)viewdidLoad {
我已经尝试了很多方法来解决这个问题,浪费了整整一周,没有解决。 我有两个 AWS 账户。一个帐户有 example.com 通过 SMTP 发送 SES 电子邮件。原始 mime 文件包括来源:bou
我希望让球的弹跳变得逼真。有时它会反弹,顶点会开始下降,然后再次撞击地面并反弹得更高。当它撞到墙壁时也会发生同样的情况,就好像墙壁违背我的意愿对球施加了一个力(除了 y 方向默认设置为 9.8 的重力
正在寻求有关如何创建执行弹跳的自定义 SKAction( Sprite 套件)的帮助? 基本上,想要将 Sprite 从顶部屏幕拖放到底部(Y 轴)并让它执行快速衰减反弹(仅在 Y 轴上下)。 注意:
我是 Core Animation 的新手,也是 RubyMotion 的新手(自 1 月以来一直在 Xcode 中使用 Obj-C)。我需要 AppLabel(它的 png 在名为 AppAppea
我正在尝试将 vector 拆分为 n 个部分。我检查了以下解决方案 How to split a vector into n "almost equal" parts 我根据这个评论得出了以下代码:
我是一名优秀的程序员,十分优秀!