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
In the pr/solver.py Line 123 all inputs are one-hot encoded.
However this is incorrect for some problem cases for example discrete categorical inputs.
This leads to a wrong optimization scheme ultimately (and a significantly larger problem space).
TODO: only if absolutely required do torch.nn.functional.one_hot(X_init) otherwise keep input variables (integers) as is.
The text was updated successfully, but these errors were encountered:
In the
pr/solver.py
Line 123 all inputs are one-hot encoded.However this is incorrect for some problem cases for example discrete categorical inputs.
This leads to a wrong optimization scheme ultimately (and a significantly larger problem space).
TODO: only if absolutely required do
torch.nn.functional.one_hot(X_init)
otherwise keep input variables (integers) as is.The text was updated successfully, but these errors were encountered: