2021-10-20 16:06:45 +03:00
|
|
|
plugins {
|
|
|
|
id("ru.mipt.npm.gradle.jvm")
|
|
|
|
}
|
|
|
|
|
|
|
|
description = "Google tensorflow connector"
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
api(project(":kmath-tensors"))
|
2022-01-29 15:02:46 +03:00
|
|
|
api("org.tensorflow:tensorflow-core-api:0.4.0")
|
|
|
|
testImplementation("org.tensorflow:tensorflow-core-platform:0.4.0")
|
2021-10-20 16:06:45 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
readme {
|
|
|
|
maturity = ru.mipt.npm.gradle.Maturity.PROTOTYPE
|
|
|
|
}
|