Skip to content

Commit 49fee18

Browse files
committed
Release 0.3 version
1 parent d2db4a9 commit 49fee18

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ apply from: project.rootProject.file('gradle/dokka.gradle')
1010

1111
allprojects {
1212
group = 'org.jetbrains.kotlinx'
13-
version = '0.3.0-alpha-5'
13+
version = '0.3.0'
1414

1515
apply plugin: "maven"
1616
apply plugin: "kotlin"

examples/src/main/kotlin/examples/onnx/cv/efficicentnet/EfficientNet.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ fun efficientNet4LitePrediction() {
4141
}
4242
}
4343

44-
// TODO: currently, the whole model is loaded but not used for prediction, the preprocessing is used only
45-
val inputData = modelType.preprocessInput(preprocessing) // TODO: to preprocessInput(preprocessing)
44+
45+
val inputData = modelType.preprocessInput(preprocessing)
4646

4747
val res = it.predict(inputData)
4848
println("Predicted object for image$i.jpg is ${imageNetClassLabels[res]}")

0 commit comments

Comments
 (0)