Skip to content

Commit

Permalink
revert to test
Browse files Browse the repository at this point in the history
  • Loading branch information
svotaw committed Oct 9, 2023
1 parent 51786c5 commit e153974
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ trait LightGBMExecutionParams extends Wrappable {
val dataTransferMode = new Param[String](this, "dataTransferMode",
"Specify how SynapseML transfers data from Spark to LightGBM. " +
"Values can be streaming, bulk. Default is bulk, which is the legacy mode.")
setDefault(dataTransferMode -> LightGBMConstants.StreamingDataTransferMode)
setDefault(dataTransferMode -> LightGBMConstants.BulkDataTransferMode) // TODO change
def getDataTransferMode: String = $(dataTransferMode)
def setDataTransferMode(value: String): this.type = set(dataTransferMode, value)

Expand Down

0 comments on commit e153974

Please sign in to comment.