Skip to content

Commit 517de8a

Browse files
Merge pull request #6596 from breakanalysis/aura-shutdown-persistence
Aura shutdown persistence
2 parents 81481ec + 44cd840 commit 517de8a

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

doc/modules/ROOT/pages/model-catalog/store.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Currently, we only support xref:machine-learning/training-methods/logistic-regre
4141
----
4242
CALL gds.alpha.model.store(
4343
modelName: String,
44-
failIfUnsupportedType: Boolean
44+
failIfUnsupported: Boolean
4545
)
4646
YIELD
4747
modelName: String,
@@ -53,7 +53,7 @@ YIELD
5353
|===
5454
| Name | Type | Default | Optional | Description
5555
| modelName | String | n/a | no | The name of a model.
56-
| failIfUnsupportedType | Boolean | true | yes | By default, the library will raise an error when trying to store a non-supported model. When set to `false`, the procedure returns an empty result.
56+
| failIfUnsupported | Boolean | true | yes | By default, the library will raise an error when trying to store a non-supported model. When set to `false`, the procedure returns an empty result.
5757
|===
5858

5959
.Results

ml/ml-algo/src/main/java/org/neo4j/gds/ml/models/logisticregression/LogisticRegressionData.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,10 @@
3131
import org.neo4j.gds.ml.models.Classifier;
3232
import org.neo4j.gds.ml.models.TrainingMethod;
3333

34+
import java.io.Serializable;
35+
3436
@ValueClass
35-
public interface LogisticRegressionData extends Classifier.ClassifierData {
37+
public interface LogisticRegressionData extends Classifier.ClassifierData, Serializable {
3638

3739
Weights<Matrix> weights();
3840
Weights<Vector> bias();

0 commit comments

Comments
 (0)