Upgrade tensorflow version

This commit is contained in:
Alexander Nozik 2025-01-27 13:13:47 +03:00
parent 06271fb889
commit 2a3cf190b1
4 changed files with 10 additions and 4 deletions

@ -5,6 +5,7 @@
### Added ### Added
### Changed ### Changed
- Upgrade tensorflow version to 1.0.0
### Deprecated ### Deprecated

@ -14,7 +14,7 @@ allprojects {
} }
group = "space.kscience" group = "space.kscience"
version = "0.4.2" version = "0.4.3-dev-1"
} }
dependencies{ dependencies{

@ -3,6 +3,7 @@
commons-rng = "1.6" commons-rng = "1.6"
multik = "0.2.3" multik = "0.2.3"
nd4j = "1.0.0-M2.1" nd4j = "1.0.0-M2.1"
tensorflow = "1.0.0"
[libraries] [libraries]
attributes = "space.kscience:attributes-kt:0.3.0" attributes = "space.kscience:attributes-kt:0.3.0"
@ -20,4 +21,8 @@ nd4j-native-platform = { module = "org.nd4j:nd4j-native-platform", version.ref =
ojalgo = "org.ojalgo:ojalgo:55.1.0" ojalgo = "org.ojalgo:ojalgo:55.1.0"
tensorflow-core-api = {module = "org.tensorflow:tensorflow-core-api", version.ref="tensorflow"}
tensorflow-core-platform = {module = "org.tensorflow:tensorflow-core-platform", version.ref="tensorflow"}
[plugins] [plugins]

@ -5,9 +5,9 @@ plugins {
description = "Google tensorflow connector" description = "Google tensorflow connector"
dependencies { dependencies {
api(project(":kmath-tensors")) api(projects.kmathTensors)
api("org.tensorflow:tensorflow-core-api:0.4.0") api(libs.tensorflow.core.api)
testImplementation("org.tensorflow:tensorflow-core-platform:0.4.0") testImplementation(libs.tensorflow.core.platform)
} }
readme { readme {