You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are trying to convert Revcol to TensorRT format, but when converting to ONNX, we found that when using save_memory=True, the conversion does not work properly.
Here is our conversion test code:
Do you use ONNX in inference? You can set save_memory = False when converting the weight, then set save_memory = True in later inference. Low memory footprint only benefits the training process.
We are trying to convert Revcol to
TensorRT
format, but when converting toONNX
, we found that when usingsave_memory=True
, the conversion does not work properly.Here is our conversion test code:
When save_memory=True, the following error occurs:
If you add the following code, the export will work, but you should not be able to take advantage of the low memory footprint of Reversible Net.
Is there any relevant solution?
The text was updated successfully, but these errors were encountered: