HCareLou
HCareLou
The fact that such an excellent project has many unimplemented APIs and is no longer being maintained is regrettable.
``` m = torch.nn.Conv2d(3, 64, 7, 2, 3, bias=False).cuda() for i in range(1000000): x = torch.randn(1, 3, 224, 224, dtype=torch.float).cuda() y = m.forward(x) ```  ``` var m=TorchSharp.torch.nn.Conv2d(3, 64, 7,...
   In TorchSharp, I defined a model that contains nn.Sequential cv4. However, when I obtained the state_dict of the entire model, the dictionary for cv4 was missing, which...
Lately, I have been trying to migrate features from Thop to TorchSharp, and in the process, I have discovered several attribute omissions in specific model components: The properties related to...
**Information** - OS: [Windows] - Version: [0.49.2-preview.0.7] - Terminal: [Windows Terminal] **Describe the bug**  When the front string is too long, the console updates, and part of the tail...
### Overview In actual projects, there is often a requirement to record the old and new values of an attribute when its value changes (e.g., monitoring personnel changing parameters in...
 Here are two Tensor fields, which are just regular fields. However, after calling RegisterComponents(), TorchSharp will turn these two fields into parameters. Could you add an attribute to mark...