You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I encountered an issue when using glmtlp() for a single run. I got output named integer(0), but neither a warning nor an error was produced. To replicate this issue, run the following codes:
library(glmtlp)
set.seed(1234)
n<-100p<-300rho<-0.3kappa0<-10# snr = 17 ensures that sigma is about 1 as absolute noise levelgau_data<- gen_gaussian_data(n, p, rho, kappa0, beta_type=2, snr=17)
fit_raw<- glmtlp(
gau_data$X, gau_data$y, family="gaussian",
method="tlp-constrained", kappa=40
)
selection<- which(abs(fit_raw$beta[, 2]) >0)
selection# none selected
The text was updated successfully, but these errors were encountered:
I update a temporary fix to this issue. However, this is related to determining reasonable range of hyper-parameter--it needs more thorough investigation.
I encountered an issue when using
glmtlp()
for a single run. I got outputnamed integer(0)
, but neither a warning nor an error was produced. To replicate this issue, run the following codes:The text was updated successfully, but these errors were encountered: