-
Notifications
You must be signed in to change notification settings - Fork 98
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
WIP: Make installable module #10
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we need to change the imports in the notebooks as well.
setup.py
Outdated
'treelib', | ||
'pymining' | ||
] | ||
) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
note that treelib should be locked to version <=1.5.5
. I wonder whether deps in environment.yml
should be part of this as well, e.g. pandas needs to be locked otherwise things break.
setup.py
Outdated
@@ -23,18 +23,18 @@ | |||
'treelib<=1.5.5', | |||
'pymining', | |||
'sklearn', | |||
'git+https://github.com/maciejkula/spotlight.git', | |||
'spotlight @ git+git://github.com/maciejkula/spotlight.git@v0.1.6#egg=spotlight', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you don't need to install spotlight here, do you ?It's only developed by a recommender we do in house, and if we port that to this repo, we would do as part of a separate pr.
d847b13
to
5fcec84
Compare
fixing notebooks + setup deps
Add init to markov util
Starting a pr to make this installable as per
#9