Hi!
I have a question about conditions for autotune.Proxy which makes no sense for me. Is this the intended use? There is the same condition for both if and elif statement in computation of percentile to ratio. As I understand there is two options for autotuner that one comes with sqrt and one does not.
At the line 281:
if self.autotune.proxy == AutoTuneProxy.PercentileSqrtOverNME:
ratio = np.sqrt(1 - p_percentile) / max_delta_norm
elif self.autotune.proxy == AutoTuneProxy.PercentileSqrtOverNME:
ratio = (1 - p_percentile) / max_delta_norm
else:
raise ValueError("Unsupported value of AutoTuneProxy")
return ratio, eigenvectors, n_clusters
Hi! I have a question about conditions for autotune.Proxy which makes no sense for me. Is this the intended use? There is the same condition for both if and elif statement in computation of percentile to ratio. As I understand there is two options for autotuner that one comes with sqrt and one does not.
At the line 281: