package owl-jupyter

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
include module type of struct include Owl end
include module type of struct include Owl_types end
include module type of struct include Owl_types_common end
type number = Owl_types_common.number =
  1. | F32
  2. | F64
  3. | C32
  4. | C64
type ('a, 'b) owl_arr = ('a, 'b, Bigarray.c_layout) Bigarray.Genarray.t
type index = Owl_types_common.index =
  1. | I of int
  2. | L of int list
  3. | R of int list
type slice = index list
type index_ = Owl_types_common.index_ =
  1. | I_ of int
  2. | L_ of int array
  3. | R_ of int array
type slice_ = index_ array
type padding = Owl_types_common.padding =
  1. | SAME
  2. | VALID
type device_type = Owl_types_common.device_type =
  1. | CPU
  2. | OpenCL
  3. | CUDA
module type Ndarray_Basic = Owl.Ndarray_Basic
module type Ndarray_Compare = Owl.Ndarray_Compare
module type Ndarray_Mutable = Owl.Ndarray_Mutable
module type Ndarray_Algodiff = Owl.Ndarray_Algodiff
module type Ndarray_Numdiff = Owl.Ndarray_Numdiff
module type Stats_Dist = Owl.Stats_Dist
module type Computation_Device = Owl.Computation_Device
val version : string
val float32 : (float, Bigarray.float32_elt) Bigarray.kind
val float64 : (float, Bigarray.float64_elt) Bigarray.kind

Make alias of the modules in Owl for your convenience.

module Const = Owl.Const
module Exception = Owl.Exception
module Dense = Owl.Dense
module Maths = Owl.Maths
module Stats = Owl.Stats
module Linalg = Owl.Linalg
module Algodiff = Owl.Algodiff
module Optimise = Owl.Optimise
module Regression = Owl.Regression
module Neural = Owl.Neural
module Fft = Owl.Fft
module Cluster = Owl.Cluster
module Utils = Owl.Utils
module Dataset = Owl.Dataset
module Dataframe = Owl.Dataframe
module Lazy = Owl.Lazy
module Graph = Owl.Graph
module Nlp = Owl.Nlp
module Log = Owl.Log
module Computation = Owl.Computation
module Signal = Owl.Signal
module Cblas = Owl.Cblas
module Lapacke = Owl.Lapacke
module Arr = Owl.Arr
module Mat = Owl.Mat
module Plot = Owl_jupyter_plot