-
Notifications
You must be signed in to change notification settings - Fork 425
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
plans for gcForest V1.1 #3
Comments
@kingfengji I think these would be the more important improvement you can bring to the code with of course using users feedback to improve the code. I will let you know if more important ideas come to my mind! Best regards |
Hi @pylablanche , Thank you very much for your suggestions, I'm new to this open-source thing and I appriciate your kindness. I've done some more improvement for speed via cython and numba, I'm happy to share some new results in the near future. |
@kingfengji You're welcome! I'll happily give you more suggestions on the coming versions. About the memory issue it is only a problem of slicing the pictures without copying it in the memory. Basically every slice would need to be a view and not a copy of the original picture. I've tried a couple of things but nothing really worked and I came to the conclusion that you need to control the way the picture is first stored in the memory. I'll give you more details if you are interested. Best wishes |
yep, python 3 support would be nice to have. |
@pylablanche thank you very much for your tips. I was kind of really busy on some new research and sorry for late reply. @unnir I agree, python 3 should be included. and it will be..I just finished the sklearn-like api, will be out soon. thanks |
Are you still working on Python 3 support? :) While trying to install the requirements I encountered the problem that there's no tensorflow support below Python 3.5 for Windows machines. |
Hi @pylablanche , I've just updated the package, feel free to use it and comment |
Hi @kingfengji , That's great news!!! |
For the next version, I plan to write some more wrappers such as
model.fit() / model.predict()
for a more user-friendly API if your goal here is to train the model out-of-box.
(again, currently you actually can extract predictions)
Other suggestions is welcomed.
Thanks.
The text was updated successfully, but these errors were encountered: