From 1ad20cb143477ed69a305ccd025791c4d64c59c3 Mon Sep 17 00:00:00 2001 From: Roland Grinis Date: Sun, 11 Jul 2021 19:01:50 +0100 Subject: [PATCH] readme updates --- kmath-noa/README.md | 12 ++++++------ kmath-tensors/README.md | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/kmath-noa/README.md b/kmath-noa/README.md index 7d1518fa5..9b86e1962 100644 --- a/kmath-noa/README.md +++ b/kmath-noa/README.md @@ -1,14 +1,14 @@ # Module kmath-noa -This module provides a `kotlin-jvm` frontend for the +A Bayesian computation library over [NOA](https://github.com/grinisrit/noa.git) -library together with relevant functionality from +together with relevant functionality from [LibTorch](https://pytorch.org/cppdocs). -Our aim is to create a Bayesian computational platform -which covers a wide set of applications from particle physics -simulations to deep learning and general differentiable programs -written on top of `AutoGrad` & `ATen`. +Our aim is to cover a wide set of applications from particle physics +simulations to deep learning. In fact, we support any +differentiable program written on top of +`AutoGrad` & `ATen`. ## Installation diff --git a/kmath-tensors/README.md b/kmath-tensors/README.md index dd21a9f2f..6b991d5df 100644 --- a/kmath-tensors/README.md +++ b/kmath-tensors/README.md @@ -9,7 +9,7 @@ Common linear algebra operations on tensors. ## Artifact: -The Maven coordinates of this project are `space.kscience:kmath-tensors:0.3.0-dev-13`. +The Maven coordinates of this project are `space.kscience:kmath-tensors:0.3.0-dev-14`. **Gradle:** ```gradle @@ -19,7 +19,7 @@ repositories { } dependencies { - implementation 'space.kscience:kmath-tensors:0.3.0-dev-13' + implementation 'space.kscience:kmath-tensors:0.3.0-dev-14' } ``` **Gradle Kotlin DSL:** @@ -30,6 +30,6 @@ repositories { } dependencies { - implementation("space.kscience:kmath-tensors:0.3.0-dev-13") + implementation("space.kscience:kmath-tensors:0.3.0-dev-14") } ```