孤独棒棒糖

文章
4
资源
0
加入时间
2年10月17天

xpcom:思想理解,思考总结

1.xpcom的思想核心,将接口与实现分开,接口写在固定的idl文件。具体的实现则是相应的c++或js文件。这样的目的是使得所定义的接口可在全范围内使用,只要引了.idl???是这样吗?2.所以创建一个xpcom 组件的方法是什么呢???idl file. js implement file.这是实现部分???如何使用呢??通过xpcom.component.xxx来注册使用。所以...

Pytorch 深度学习实践 第5讲

import torchx_data = torch.tensor([[1.0], [2.0], [3.0]])y_data = torch.tensor([[0.], [0.], [1.]])class LogisticRessionModel(torch.nn.Module): def __init__(self): super(LogisticRessionModel, self).__init__() self.linear = torch.nn.