warnings cannot be accessed in notebooks
Open
- Dominant language
- C#
- Stars
- 1.9k
- Forks
- 228
- PR merge metrics
- No merged PRs in 30d
Description
For example, the following codes can produce a warning in the console
```csharp
using TorchSharp;
var loss = torch.nn.MSELoss();
var x = torch.zeros([]);
var y = torch.zeros([1]);
loss.call(x, y);
```

However this seems to be unable to access on other platforms, like polyglot notebooks.
Contributor guide
Assessment
This issue has not been assessed yet.