Update models and remove normalize weights in XA1DE

This commit is contained in:
2025-03-17 13:28:35 +01:00
parent c2a4e3e64e
commit c9ab88e475
3 changed files with 8 additions and 5 deletions

View File

@@ -14,7 +14,7 @@ namespace platform {
auto y = TensorUtils::to_vector<int>(dataset.index({ -1, "..." }));
int num_instances = X[0].size();
weights_ = torch::full({ num_instances }, 1.0);
normalize_weights(num_instances);
//normalize_weights(num_instances);
aode_.fit(X, y, features, className, states, weights_, true, smoothing);
}
}
}