owl icon indicating copy to clipboard operation
owl copied to clipboard

Owl - OCaml Scientific Computing @ https://ocaml.xyz

Results 90 owl issues
Sort by recently updated
recently updated
newest added

It will be useful to have a `percentile` function in `Ndarray` and `Matrix` with the signature `val percentile : ?keep_dims:bool -> axis:int -> pct:float -> Arr.arr -> Arr.arr` This shouldn't...

enhancement
R&D

Since the new` odoc`, which should be out very soon, supports latex on html output, has extensible output formats (already supports also manpages for example), and does a rather nice...

enhancement

It would be helpful to have functions like `ones_like`, `zeros_like`, and `empty_like` in Owl, similar to the ones in numpy https://numpy.org/doc/stable/reference/generated/numpy.ones_like.html

enhancement

The latest discussion can be seen at the bottom of https://github.com/owlbarn/owl/issues/450 The gist of it is that we should be more portable, and need to find a way to deliver...

enhancement
R&D

I failed to install Owl on Ubuntu 18.04 (ocaml-base-compiler.4.07.1) using instructions from Dockerfile.ubuntu. Please have a look at the list of commands below followed by the error message. 1. git...

enhancement

Hello, I was very surprised to not find an implementation in owl. It might be nice to have one. https://en.wikipedia.org/wiki/Partial_least_squares_regression Regards, F.

enhancement
help wanted
R&D

Ndarray mutable functions are currently missing in Base, which prevents us from making a computation graph using Base.

enhancement
help wanted

When executing this snippet: ```ocaml open Owl;; open Owl.Dense.Ndarray.Generic;; transpose (create Bigarray.int [|3;4|] 2) ``` I get the following exception: ``` Exception: Failure "_matrix_transpose: unsupported operation". ``` **Edit:** it seems...

bug
enhancement
help wanted

I wonder what's the expected behavior for this code: ```ocaml # open Owl # let f x = Algodiff.D.Maths.cos x;; val f : Owl_algodiff.D.t -> Owl_algodiff.D.t = # let x...

bug

[Notice that the rfft of odd and even length signals are of the same shape. (?)](https://ocaml.xyz/book/signal.html) Hum, I'm not sure about that. However when composing `irfft` with `rttf` on odd...

bug
enhancement
question