Skip to main content
  • Home
  • Development
  • Documentation
  • Donate
  • Operational login
  • Browse the archive

swh logo
SoftwareHeritage
Software
Heritage
Archive
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

Revision a7ab0a6819d450d1b379aa5650b9efef9d5f954e authored by James Scott on 10 February 2016, 04:18:57 UTC, committed by James Scott on 10 February 2016, 04:18:57 UTC
added toy logit example in R code
1 parent 97c546a
  • Files
  • Changes
  • 5595290
  • /
  • R
  • /
  • ADMMutils.R
Raw File Download
Permalinks

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • revision
  • directory
  • content
revision badge
swh:1:rev:a7ab0a6819d450d1b379aa5650b9efef9d5f954e
directory badge Iframe embedding
swh:1:dir:2e1066beccc045737527faebe2d34f34cc8e1273
content badge Iframe embedding
swh:1:cnt:761a888703967d190b2b5faae3e9b250c8540c4d
Citations

This interface enables to generate software citations, provided that the root directory of browsed objects contains a citation.cff or codemeta.json file.
Select below a type of object currently browsed in order to generate citations for them.

  • revision
  • directory
  • content
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
ADMMutils.R
library(limSolve)

ilogit = function(x) 1/{1+exp(-x)}

makeD1 = function(d) {
# Construct the first-difference matrix
	D1 = diag(1,d-1)
	D1 = rbind(D1,0)
	D1 = cbind(0,D1)
	diag(D1) = -1
	D1 = D1[-nrow(D1),]
	D1
}

Dcrossx = function(x) {
# efficient compute cross-product D^T x,
# where D is the first-difference matrix
	n = length(x) + 1
	out = rep(0, n)
	out[1] = -x[1]
	out[2:(n-1)] = rev(diff(rev(x)))
	out[n] = x[n-1]
	out
}

softthresh = function(x, lambda) {
	return(sign(x)*pmax(0, abs(x) - lambda))
}

fit_1dfusedlasso_ADMM = function(y, lambda, weights=NULL, initial_values = NULL, iter_max = 10000, rel_tol = 1e-4, alpha=1.0) {
	# Fits the 1D weighted fused lasso by ADMM
	n = length(y)
	m = n-1
	
	if(missing(weights)) {
		weights = rep(1, n)
	}
	
	# Step-size parameter
	a = lambda
	
	# the D matrix is the first-difference operator
	# K is the matrix (W + a D^T D)
	# where W is the diagonal matrix of weights.
	# We use a tridiagonal representation of K
	Kd = c(a, rep(2*a, n-2), a) + weights # diagonal entries
	Kl = rep(-a, n-1) # below the diagonal
	Ku = rep(-a, n-1) # above the diagonal

	# print("K:")
	# print(length(Kd))
	# print(length(Kl))
	# print(length(Ku))
	
	# Initialize primal and dual variables
	if(missing(initial_values)) {
		x = rep(mean(y), n)
		z = rep(0,m)
		u = rep(0,m)
	} else {
		x = initial_values$x
		z = initial_values$z
		u = initial_values$u
		u = pmin(lambda, pmax(-lambda, u)) # ensure feasibility of starting point
	}
	
	primal_trace = NULL
	dual_trace = NULL
	converged = FALSE
	counter = 0
	while(!converged & counter < iter_max) {
		
		# Update x
		out = Dcrossx(a*z - u)
		x = Solve.tridiag(Kl, Kd, Ku, weights*y + out)
		Dx = diff(x)

		# Update z: over-relaxation?
		Dx_hat = alpha*Dx + (1-alpha)*z
		z_new = softthresh(Dx_hat + u/a, lambda/a)
		dual_residual = a * Dcrossx(z_new - z)
		z = z_new
		primal_residual = Dx - z
		
		# Update u
		u = u + a*primal_residual
		
		# Check convergence
		primal_resnorm = sqrt(mean(primal_residual^2))
		dual_resnorm = sqrt(mean(dual_residual^2))
		primal_trace = c(primal_trace, primal_resnorm)
		dual_trace = c(dual_trace, dual_resnorm)
		if(dual_resnorm < rel_tol && primal_resnorm < rel_tol) {
			converged=TRUE
		}
		counter = counter+1
		
		# Update step-size parameter based on norm of primal and dual residuals
		if(primal_resnorm > 10*dual_resnorm) {
			a = 2*a
			Kd = c(a, rep(2*a, n-2), a) + weights # diagonal entries
			Kl = rep(-a, n-1) # below the diagonal
			Ku = rep(-a, n-1) # above the diagonal
		} else if(dual_resnorm > 10*primal_resnorm) {
			a = a/2
			Kd = c(a, rep(2*a, n-2), a) + weights # diagonal entries
			Kl = rep(-a, n-1) # below the diagonal
			Ku = rep(-a, n-1) # above the diagonal
		}

	}
	dof = sum(Dx > rel_tol) + 1
	AIC =  sum((y-x)^2) + 2*dof
	
	list(x=x, z=z, u=u, dof=dof, AIC=AIC)
}
The diff you're trying to view is too large. Only the first 1000 changed files have been loaded.
Showing with 0 additions and 0 deletions (0 / 0 diffs computed)
swh spinner

Computing file changes ...

back to top

Software Heritage — Copyright (C) 2015–2025, The Software Heritage developers. License: GNU AGPLv3+.
The source code of Software Heritage itself is available on our development forge.
The source code files archived by Software Heritage are available under their own copyright and licenses.
Terms of use: Archive access, API— Contact— JavaScript license information— Web API