Simon
Simon
Encapsulating the nn.LSTM into a nn.Module subclass actually resolves this first issue. But the process fails further away: ```python class LstmWrapper(nn.Module): def __init__(self, *args): super().__init__() self.lstm = nn.LSTM(*args) def forward(self,...
> Hi @notsimon > Did you find a wayout for this error yet? No I didn't, sorry. Tracing is a good enough alternative for my use case.
Hi @leouieda, thanks for your explanation ! I guess that's more an enhancement than a bug to fix then, as the field inside the magnetized object may not be used...
Hi @leouieda, sorry for the late reply. Turns out I can manage to do what I need without what's happening inside the sphere. If I find some time to contribute,...
@BernardoLuck Any updates on that issue?
Same issue today suddenly appeared, without an update of macOS nor VimR... > Try removing ~/Library/Preferences/com.qvacua.VimR.plist That didn't help sadly. Any suggestions?
I'm facing the same wall with [slotmap](https://docs.rs/slotmap/latest/slotmap/index.html#custom-key-types)'s keys. The underlying type is a struct containing two u32 and has the equivalent of `to_u64` and `from_u64` . > as a strawman,...
Thinking Docker could be to blame, I've started from a fresh Ubuntu 20.04. Installing everything (which wasn't an easy task) led me to more errors poping up from Node... At...
Thanks a lot @alanb128! I ended up managing to flash my board with an Ubuntu Live after a couple hours of fiddling, but that'll be handy for next time!
I'm using rerun to live stream data from a gstreamer pipeline, and being able to send h264 encoded frames would be extremely useful in that case. With the latest version...