Re: [Scikit-learn-general] adaboost parameters

2015-04-14 Thread Jason Wolosonovich
Roberto, Check this link out. https://www.youtube.com/watch?v=0wUF_Ov8b0A Andy actually did a workshop where he talked about grid searching and random searching a few weeks ago. I watched this one a few days ago as well, really great stuff in there that you'll be able to use as well. Here is

Re: [Scikit-learn-general] [ANN] Scikit-learn 0.16.1 is out!

2015-04-14 Thread Olivier Grisel
Before being able to update with conda, you will need for the Anaconda maintainer to build the new package. They do it quite quickly usually. -- Olivier -- BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT Dev

Re: [Scikit-learn-general] adaboost parameters

2015-04-14 Thread Pagliari, Roberto
hi Jason/Andreas, I watched the videos and definitely helped. Adaboost seems to be a special case of GBR. It seems to be working very well with my dataset. If you guys have any suggestions about the grid over which grid search should be run, that'd be great. Some suggestions are provided in the

[Scikit-learn-general] pydata

2015-04-14 Thread Pagliari, Roberto
Is there a pydata or sklearn workshop coming up in NYC or London? Thank you, -- BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT Develop your own process in accordance with the BPMN 2 standard Learn Process mod

[Scikit-learn-general] [ANN] Scikit-learn 0.16.1 is out!

2015-04-14 Thread Andy
Hi All. I'm happy to announce that Olivier and me just uploaded the 0.16.1 bugfix release. It fixes a bug in Isotonic Regression that made the new calibration unstable. It also fixes some minor regressions, such as prediction speed of random forests, and makes the cross_decomposition module mor

[Scikit-learn-general] Combining multiple forests trained on different datasets

2015-04-14 Thread shalu jhanwar
Hi Scikit fans, I want to combine multiple forests with same no. of samples but different no. of features. For e.g. Here are two estimators of random forest with different no. of features: estimator = RandomForestClassifier(n_estimators=best_n_estimators,max_depth=best_max_depth,random_state=0)

Re: [Scikit-learn-general] reconstruct image after preprocessing

2015-04-14 Thread Joel Nothman
Use preprocessing.StandardScaler()'s transform and inverse_transform methods. HTH! On 14 April 2015 at 19:06, Souad Chaabouni wrote: > Hello, > > Im beginner, > I have an image which i done a preprocessing with sklearn > > img_scaled = preprocessing.scale(img) > > > my question how can reconstr

Re: [Scikit-learn-general] reconstruct image after preprocessing

2015-04-14 Thread Yogesh Karpate
Hi, If I understand you correctly you want to see the scaled image. def rescale_intensity(img): img = img img_flat_scale = preprocessing.Scale(img.flatten()) return img_flat_scale.reshape(img.shape) Hope this should be useful! On Tue, Apr 14, 2015 at 11:06 AM, Souad Chaabouni wrote

[Scikit-learn-general] reconstruct image after preprocessing

2015-04-14 Thread Souad Chaabouni
Hello, Im beginner, I have an image which i done a preprocessing with sklearn img_scaled = preprocessing.scale(img) my question how can reconstrcut my original image just from img_scaled?? is it possible or no?? is there a function that ensures the reverse of preprocessing.scale??? Thx for re