Re: [scikit-learn] How can i write the birch prediction results to the file

2017-08-22 Thread Sema Atasever
Dear David, "joblib.dump" produces a file format with npy extension so I can not open the file with the notepad editor. I can not see the predictions results inside the file. Is there another way to save the prediction results in text format? Thank you for your help. On Mon, Aug 21, 2017 at 5:3

Re: [scikit-learn] How can i write the birch prediction results to the file

2017-08-22 Thread Roman Yurchak
Hello Sema, On 22/08/17 11:24, Sema Atasever wrote: > "joblib.dump" produces a file format with npy extension so I can not open the file with the notepad editor. I can not see the predictions results inside the file. Is there another way to save the prediction results in text format? Predic

Re: [scikit-learn] How can i write the birch prediction results to the file

2017-08-22 Thread Ali Ozcan
Sema, you can use this import numpy as np np.savetxt('birch_predict.csv', birch_predict, delimiter=',') On Tue, Aug 22, 2017 at 10:33 AM, Roman Yurchak wrote: > Hello Sema, > > On 22/08/17 11:24, Sema Atasever wrote: > > "joblib.dump" produces a file format with npy extension so I can not > o

Re: [scikit-learn] How can i write the birch prediction results to the file

2017-08-22 Thread Sema Atasever
Dear Roman and Ali, it did worked thanks for all your help. Regards. On Tue, Aug 22, 2017 at 11:33 AM, Roman Yurchak wrote: > Hello Sema, > > On 22/08/17 11:24, Sema Atasever wrote: > > "joblib.dump" produces a file format with npy extension so I can not > open the file with the notepad editor

Re: [scikit-learn] any interest in incorporating a new Transformer?

2017-08-22 Thread Michael Capizzi
Thanks @joel, for the guidance. I will get right on it, and hopefully have something for public consumption soon! -M On Sun, Aug 20, 2017 at 5:28 AM, Joel Nothman wrote: > The idea is to take the template (https://github.com/scikit- > learn-contrib/project-template), build, test and document y