Skip to content

Commit e3001e5

Browse files
committedSep 29, 2023
Updates LightGBM to 1.7.6 and XGBoost to 3.3.510
1 parent 963332d commit e3001e5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
 

‎engines/ml/lightgbm/src/main/java/ai/djl/ml/lightgbm/LgbmEngine.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
public final class LgbmEngine extends Engine {
3232

3333
public static final String ENGINE_NAME = "LightGBM";
34-
public static final String ENGINE_VERSION = "3.2.110";
34+
public static final String ENGINE_VERSION = "3.3.510";
3535
static final int RANK = 10;
3636

3737
private Engine alternativeEngine;

‎engines/ml/xgboost/src/test/java/ai/djl/ml/xgboost/XgbModelTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public void downloadXGBoostModel() throws IOException {
5353
@Test
5454
public void testVersion() {
5555
Engine engine = Engine.getEngine("XGBoost");
56-
Assert.assertEquals("1.7.5", engine.getVersion());
56+
Assert.assertEquals("1.7.6", engine.getVersion());
5757
}
5858

5959
/*

‎gradle.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ paddlepaddle_version=2.3.2
2222
sentencepiece_version=0.1.97
2323
tokenizers_version=0.13.3
2424
fasttext_version=0.9.2
25-
xgboost_version=1.7.5
26-
lightgbm_version=3.2.110
25+
xgboost_version=1.7.6
26+
lightgbm_version=3.3.510
2727
rapis_version=22.12.0
2828

2929
commons_cli_version=1.5.0

0 commit comments

Comments
 (0)