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
nplet_measures works with nplets of the same order, if the nplets have not the same order, then it converts the nplets to hot encoded nplets and return de result of nplets_measures_hot_encoded.
This return a small accuracy error because the hot encoded measures has some extra steps that introduce a small numerical error. Then, we want to give the option by default to not use the hot encoded version and if the user prefers the hot encoded version, then set the parameter hot_encoding in True and that would perform the current behaviour of converting the nplets into hot encoded nplets and use the nplets_measures_hot_encoded function to obtain the result.
In de default hot_encoding not in True, the nplets must first be grouped by orders, then batch processed by order and then the result is reordered in the original order (this was implemented in the simulated_annealing_multi_order and can be retrieved from there 3c455224d05c3c1137175e724c7ceaf932ab0f64)
The text was updated successfully, but these errors were encountered:
nplet_measures works with nplets of the same order, if the nplets have not the same order, then it converts the nplets to hot encoded nplets and return de result of nplets_measures_hot_encoded.
This return a small accuracy error because the hot encoded measures has some extra steps that introduce a small numerical error. Then, we want to give the option by default to not use the hot encoded version and if the user prefers the hot encoded version, then set the parameter hot_encoding in True and that would perform the current behaviour of converting the nplets into hot encoded nplets and use the nplets_measures_hot_encoded function to obtain the result.
In de default hot_encoding not in True, the nplets must first be grouped by orders, then batch processed by order and then the result is reordered in the original order (this was implemented in the simulated_annealing_multi_order and can be retrieved from there 3c455224d05c3c1137175e724c7ceaf932ab0f64)
The text was updated successfully, but these errors were encountered: