Re: [Scikit-learn-general] Print coordinate descent coefficients at each iteration

2014-09-08 Thread Danny Sullivan
neral@lists.sourceforge.net Subject: Re: [Scikit-learn-general] Print coordinate descent coefficients at each iteration with gil: print("something with gil") That seems to work. What doesn't is to get the GIL for the whole algorithm (it compiles without errors but messes up th

Re: [Scikit-learn-general] Print coordinate descent coefficients at each iteration

2014-09-05 Thread Manoj Kumar
Hi, I'm making a wild guess that it must be some sort of indentation problem. I've run into this problem before, when I realized I was off by four spaces. I'm not sure anything else can explain it. -- Slashdot TV. Video

Re: [Scikit-learn-general] Print coordinate descent coefficients at each iteration

2014-09-04 Thread Alberto Torres
t; > Try > > with gil: > print("something with gil") > > > Let me know if that works > > Danny > > -- > From: albert...@gmail.com > Date: Mon, 1 Sep 2014 17:23:02 +0200 > To: scikit-learn-general@lists.sourceforge.net &

Re: [Scikit-learn-general] Print coordinate descent coefficients at each iteration

2014-09-01 Thread Danny Sullivan
Hey Alberto, Try with gil: print("something with gil") Let me know if that works Danny From: albert...@gmail.com Date: Mon, 1 Sep 2014 17:23:02 +0200 To: scikit-learn-general@lists.sourceforge.net Subject: [Scikit-learn-general] Print coordinate descent coefficients at each

Re: [Scikit-learn-general] Print coordinate descent coefficients at each iteration

2014-09-01 Thread Lars Buitinck
2014-09-01 17:23 GMT+02:00 Alberto Torres : > I would like to print the coordinate descent coefficients at each iteration. > So far I've identified the code and variable I want to print. In particular > I want to print the variable w in function enet_coordinate_descent from > cd_fast.pyx. The probl

[Scikit-learn-general] Print coordinate descent coefficients at each iteration

2014-09-01 Thread Alberto Torres
Hi, I would like to print the coordinate descent coefficients at each iteration. So far I've identified the code and variable I want to print. In particular I want to print the variable *w* in function *enet_coordinate_descent* from *cd_fast.pyx*. The problem is I do not have any previous experien