harissa.inference.network_fast module#
Core functions for network inference using likelihood maximization NB: This is the fast version using Numba
Functions#
Smoothed L1 penalization gradient. |
|
Penalization gradient of network parameters. |
|
Objective gradient (one time point). |
|
Network inference procedure. |
|
Estimate y directly from data. |
|
Objective function to be minimized (one time point). |
|
Smoothed L1 penalization. |
|
Penalization of network parameters. |
- harissa.inference.network_fast.grad_penalization(theta, theta0, t)[source]#
Penalization gradient of network parameters.
- harissa.inference.network_fast.grad_theta(theta, theta0, x, y, a, c, d, l, t)[source]#
Objective gradient (one time point).
- harissa.inference.network_fast.infer_network(x, y, a, c, l, tol, verb)[source]#
Network inference procedure.