maxhodak / keras-molecules

Autoencoder network for learning a continuous representation of molecular structures.
MIT License
519 stars 146 forks source link

use https rather than git:// in requirement.txt #28

Closed hsiaoyi0504 closed 7 years ago

hsiaoyi0504 commented 7 years ago

Use the HTTPS URL instead of the SSH/git URL to avoid having to deal with SSH keys. This is GitHub's recommended method. This avoid the problem "Permission denied (publickey)" may happen when use pip -r requirements.txt to install.

hsiaoyi0504 commented 7 years ago

Another thing is that current import will cause:

cross_validation.py:44: DeprecationWarning: This module was deprecated in version 0.18 in favor of the model_selection module into which all the refactored classes and functions are moved. Also note that the interface of the new CV iterators are different from that of this module. This module will be removed in 0.20. "This module will be removed in 0.20.", DeprecationWarning)

maxhodak commented 7 years ago

cool thanks