完全披露,几天前我在 PyTorch 论坛上问了同样的问题,但没有得到回复,所以这在技术上是一个转发,但我相信这仍然是一个好问题,因为我一直无法在网上的任何地方找到答案. 开始:
您能否展示一个将 register_module 与自定义模块一起使用的示例? 我在网上找到的唯一示例是将线性层或卷积层注册为子模块。
我试图编写自己的模块并将其注册到另一个模块,但我无法让它工作。我的 IDE 告诉我no instance of overloaded function "MyModel::register_module" matches the argument list -- argument types are: (const char [14], TreeEmbedding)
(TreeEmbedding 是我创建的另一个结构的名称,它扩展了 torch::nn::Module。)
我错过了什么吗?这方面的一个例子会很有帮助。
编辑:附加上下文如下。
我有一个头文件“model.h”,其中包含以下内容:
struct TreeEmbedding : torch::nn::Module {
TreeEmbedding();
torch::Tensor forward(Graph tree);
};
struct MyModel : torch::nn::Module{
size_t embeddingSize;
TreeEmbedding treeEmbedding;
MyModel(size_t embeddingSize=10);
torch::Tensor forward(std::vector<Graph> clauses, std::vector<Graph> contexts);
};
我还有一个 cpp 文件“model.cpp”,其中包含以下内容:
MyModel::MyModel(size_t embeddingSize) :
embeddingSize(embeddingSize)
{
treeEmbedding = register_module("treeEmbedding", TreeEmbedding{});
}
此设置仍然存在与上述相同的错误。文档中的代码确实可以工作(使用线性层等内置组件),但使用自定义模块则不行。在追踪torch::nn::Linear之后,它看起来好像是一个ModuleHolder
(不管是什么......)
谢谢,杰克