Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 2.1 KB

README.md

File metadata and controls

35 lines (28 loc) · 2.1 KB

BQNet

BQNet.jl is a Julia package for distributional regression using Bernstein quantile networks (BQN). That is,

  • the conditional distribution is specified by its quantile function and assumed to be a Bernstein polynomial of a certain degree
  • its distribution parameters, the coefficients of the Bernstein polynomial, are linked to the input feature variables by a neural network
  • the model parameters, the weights and biases of the network, are estimated by optimising a composite quantile loss function.

The package is based on Flux.

Installation

BQNet can be installed by

using Pkg
Pkg.add(url = "https://github.com/jbbremnes/BQNet.jl")

or by entering REPL's package environment by pressing ] and then

add "https://github.com/jbbremnes/BQNet.jl"

Examples

In the following examples the BQN is applied to various datasets

Background

...

References