Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 2.09 KB

README.md

File metadata and controls

34 lines (27 loc) · 2.09 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 variables/covariates 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 data

Background

...

References