kotlin-numpy
kotlin-numpy copied to clipboard
Kotlin bindings for NumPy
Could not GET 'https://kotlin.bintray.com/kotlin-datascience/org/jetbrains/kotlin-numpy/0.1.5/kotlin-numpy-0.1.5.pom'
The bintray repo at `https://kotlin.bintray.com/kotlin-datascience` is not up to date anymore (`Forbidden!` error). Please update the repo url.
Ok, so, I should have all the [requirements](https://github.com/Kotlin/kotlin-numpy#requirements) listed ``` elect@5800x:~/Documents/minterpy/tests$ python --version Python 3.8.6 elect@5800x:~/Documents/minterpy/tests$ python3 -c "import numpy; print(numpy.__version__)" 1.20.1 ``` gcc should be installed within `build-essential` However,...
I encountered an error running the [`KotlinNumpy.ipynb`](https://github.com/Kotlin/kotlin-jupyter/blob/master/samples/KotlinNumpy.ipynb) sample with Python `3.7.7` on Anaconda. Not sure if this is an issue with Kotlin Jupyter or Kotlin-NumPy. I'll paste it here in...
Can we use this library in the Android Studio? As of now, I am facing this error? `Error: Method name '@' in class 'org.jetbrains.numkt.math.ArithmeticOperatorsKt' cannot be represented in dex format....
Hi, Given function: ` fun objectiveFunction(p: KtNDArray): Double { var s = 0.0 for (i in 0 until problemSize) { println("iter $i") println("p before: $p") val res = flowMatrix[i] *...
Now when passing 1d KtNDArray as a data series to lets-plot user have to explicitly call `toList()`.
When trying to execute Kotlin notebook at mybinder I'm getting an error: ``` ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command...
It is 1-D array_like thing and can be just a std Kotiln collection. Instead of ``` Random.multivariateNormal(mean=array(listOf(-2,0)), ... ``` would be nice to have: ``` Random.multivariateNormal(mean=listOf(-2,0), ... ```
The description for building the current version (0.1.4) of the library seems to be broken. ``` ./gradlew ktnumpyReleaseSharedLibrary ✔ > Configure project : Current branch: null FAILURE: Build failed...