File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ def writeScoreCode(
28
28
scoreCAS = True ,
29
29
isBinaryModel = False ,
30
30
binaryString = None ,
31
- pickleType = None ,
31
+ pickleType = 'pickle' ,
32
32
):
33
33
"""
34
34
Writes a Python score code file based on training data used to generate the model
@@ -110,8 +110,8 @@ def writeScoreCode(
110
110
Sets whether the H2O model provided is a binary model or a MOJO model. By default False.
111
111
binaryString : string, optional
112
112
Binary string representation of the model object. By default None.
113
- pickleType : string optional
114
- Indicator for MLFlow models, which may pickle by non-standard methods. By default None .
113
+ pickleType : string, optional
114
+ Indicator for MLFlow models, which may pickle by non-standard methods. By default 'pickle' .
115
115
"""
116
116
# Check if binary string model
117
117
if binaryString is not None :
You can’t perform that action at this time.
0 commit comments