{ "info": { "author": "Paul C. Jennings", "author_email": "pcjennings@stanford.edu", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6" ], "description": "# CatLearn\n\n> An environment for atomistic machine learning in Python for applications in catalysis.\n\n[![DOI](https://zenodo.org/badge/130307939.svg)](https://zenodo.org/badge/latestdoi/130307939) [![Build Status](https://travis-ci.org/SUNCAT-Center/CatLearn.svg?branch=master)](https://travis-ci.org/SUNCAT-Center/CatLearn) [![Coverage Status](https://coveralls.io/repos/github/SUNCAT-Center/CatLearn/badge.svg?branch=master)](https://coveralls.io/github/SUNCAT-Center/CatLearn?branch=master) [![Documentation Status](https://readthedocs.org/projects/catlearn/badge/?version=latest)](http://catlearn.readthedocs.io/en/latest/?badge=latest) [![PyPI version](https://badge.fury.io/py/CatLearn.svg)](https://badge.fury.io/py/CatLearn) [![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)\n\nUtilities for building and testing atomic machine learning models. Gaussian Processes (GP) regression machine learning routines are implemented. These will take any numpy array of training and test feature matrices along with a vector of target values.\n\nIn general, any data prepared in this fashion can be fed to the GP routines, a number of additional functions have been added that interface with [ASE](https://wiki.fysik.dtu.dk/ase/). This integration allows for the manipulation of atoms objects through GP predictions, as well as dynamic generation of descriptors through use of the many ASE functions.\n\nCatLearn also includes the [MLNEB](https://github.com/mhangaard/CatLearn/tree/v061/tutorials/11_NEB) algorithm for efficient transition state search, and the [MLMIN](https://github.com/mhangaard/CatLearn/tree/v061/tutorials/12_MLMin) algorithm for efficient atomic structure optimization.\n\nPlease see the [tutorials](https://github.com/SUNCAT-Center/CatLearn/tree/master/tutorials) for a detailed overview of what the code can do and the conventions used in setting up the predictive models. For an overview of all the functionality available, please read the [documentation](http://catlearn.readthedocs.io/en/latest/).\n\n## Table of contents\n\n- [Installation](#installation)\n- [Tutorials](#tutorials)\n- [Usage](#usage)\n- [Functionality](#functionality)\n- [How to cite](#how-to-cite-catlearn)\n- [Contribution](#contribution)\n\n## Installation\n\n[(Back to top)](#table-of-contents)\n\nThe easiest way to install the code is with:\n\n```shell\n$ pip install catlearn\n```\n\nThis will automatically install the code as well as the dependencies. Alternatively, you can clone the repository to a local directory with:\n\n```shell\n$ git clone https://github.com/SUNCAT-Center/CatLearn.git\n```\n\nAnd then put the `/` into your `$PYTHONPATH` environment variable.\n\nBe sure to install dependencies in with:\n\n```shell\n$ pip install -r requirements.txt\n```\n\n### Docker\n\nTo use the docker image, it is necessary to have [docker](https://www.docker.com) installed and running. After cloning the project, build and run the image as follows:\n\n```shell\n$ docker build -t catlearn .\n```\n\nThen it is possible to use the image in two ways. It is possible to run the docker image as a bash environment in which CatLearn can be used will all dependencies in place.\n\n```shell\n$ docker run -it catlearn bash\n```\n\nOr python can be run from the docker image.\n\n```shell\n$ docker run -it catlearn python2 [file.py]\n$ docker run -it catlearn python3 [file.py]\n```\n\nUse Ctrl + d to exit the docker image when done.\n\n### Optional Dependencies\n\nThe tutorial scripts will generally output some graphical representations of the results etc. For these scripts, it is advisable to have at least `matplotlib` installed:\n\n```shell\n$ pip install matplotlib seaborn\n```\n\n## Tutorials\n\n[(Back to top)](#table-of-contents)\n\nHelpful examples and test scripts are present in [tutorials](https://github.com/SUNCAT-Center/CatLearn/tree/master/tutorials).\n\n## Usage\n\n[(Back to top)](#table-of-contents)\n\nSet up CatLearn's Gaussian Process model and make some predictions using the following lines of code:\n\n```python\nimport numpy as np\nfrom catlearn.regression import GaussianProcess\n\n# Define some input data.\ntrain_features = np.arange(200).reshape(50, 4)\ntarget = np.random.random_sample((50,))\ntest_features = np.arange(100).reshape(25, 4)\n\n# Setup the kernel.\nkernel = [{'type': 'gaussian', 'width': 0.5}]\n\n# Train the GP model.\ngp = GaussianProcess(kernel_list=kernel, regularization=1e-3,\n train_fp=train_features, train_target=target,\n optimize_hyperparameters=True)\n\n# Get the predictions.\nprediction = gp.predict(test_fp=test_features)\n```\n\n## Functionality\n\n[(Back to top)](#table-of-contents)\n\nThere is much functionality in CatLearn to assist in handling atom data and building optimal models. This includes:\n\n- API to other codes:\n - [Atomic simulation environment](https://wiki.fysik.dtu.dk/ase/) API\n - [Magpie](https://bitbucket.org/wolverton/magpie) API\n - [NetworkX](https://networkx.github.io/) API\n- Fingerprint generators:\n - Bulk systems\n - Support/slab systems\n - Discrete systems\n- Preprocessing routines:\n - Data cleaning\n - Feature elimination\n - Feature engineering\n - Feature extraction\n - Feature scaling\n- Regression methods:\n - Regularized ridge regression\n - Gaussian processes regression\n- Cross-validation:\n - K-fold cv\n - Ensemble k-fold cv\n- Machine Learning Algorithms\n - Machine Learning Nudged Elastic Band (ML-NEB) algorithm.\n- General utilities:\n - K-means clustering\n - Neighborlist generators\n - Penalty functions\n - SQLite db storage\n\n## How to cite CatLearn\n\n[(Back to top)](#table-of-contents)\n\nIf you find CatLearn useful in your research, please cite\n\n 1) M. H. Hansen, J. A. Garrido Torres, P. C. Jennings, \n Z. Wang, J. R. Boes, O. G. Mamun and T. Bligaard.\n An Atomistic Machine Learning Package for Surface Science and Catalysis.\n https://arxiv.org/abs/1904.00904\n\nIf you use CatLearn's ML-NEB module, please cite:\n\n 2) J. A. Garrido Torres, M. H. Hansen, P. C. Jennings,\n J. R. Boes and T. Bligaard. Phys. Rev. Lett. 122, 156001.\n https://journals.aps.org/prl/abstract/10.1103/PhysRevLett.122.156001\n\n## Contribution\n\n[(Back to top)](#table-of-contents)\n\nAnyone is welcome to contribute to the project. Please see the contribution guide for help setting up a local copy of the code. There are some `TODO` items in the README files for the various modules that give suggestions on parts of the code that could be improved.", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/SUNCAT-Center/CatLearn", "keywords": "", "license": "GPL-3.0", "maintainer": "", "maintainer_email": "", "name": "CatLearn", "package_url": "https://pypi.org/project/CatLearn/", "platform": "", "project_url": "https://pypi.org/project/CatLearn/", "project_urls": { "Homepage": "https://github.com/SUNCAT-Center/CatLearn" }, "release_url": "https://pypi.org/project/CatLearn/0.6.1/", "requires_dist": null, "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "summary": "Machine Learning using atomic-scale calculations.", "version": "0.6.1" }, "last_serial": 5201783, "releases": { "0.4.0.dev1": [ { "comment_text": "", "digests": { "md5": "076d777edba2b19f9879680611e073ec", "sha256": "25bae9f793758b3d882c37fefaac41dc15f4664197ea648660b639102399f045" }, "downloads": -1, "filename": "CatLearn-0.4.0.dev1.tar.gz", "has_sig": false, "md5_digest": "076d777edba2b19f9879680611e073ec", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 105517, "upload_time": "2018-04-23T18:11:04", "url": "https://files.pythonhosted.org/packages/53/24/3cd5e6c8ef92e65560792378286217b99319571f1bdd27dbe6fea26f15b1/CatLearn-0.4.0.dev1.tar.gz" } ], "0.4.0.dev2": [ { "comment_text": "", "digests": { "md5": "5e2dfe5da8e1abf7cf4c993c744853f3", "sha256": "4c1cc05baff8d4a12ee8c4cf59282cc7e8fa783315b1396bb2abb05142388b80" }, "downloads": -1, "filename": "CatLearn-0.4.0.dev2.tar.gz", "has_sig": false, "md5_digest": "5e2dfe5da8e1abf7cf4c993c744853f3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 174866, "upload_time": "2018-04-23T18:40:31", "url": "https://files.pythonhosted.org/packages/80/05/87aceaab155b20f14cc6c0ca4b94b0e75436fb3cb219e749082531434b4e/CatLearn-0.4.0.dev2.tar.gz" } ], "0.4.0.dev3": [ { "comment_text": "", "digests": { "md5": "5b4e7bd7ef083def7484df92f0512543", "sha256": "0edc2355ba772e8cef96a5024710d7948e9db052ce1101f22fa6b97652ddf68a" }, "downloads": -1, "filename": "CatLearn-0.4.0.dev3.tar.gz", "has_sig": false, "md5_digest": "5b4e7bd7ef083def7484df92f0512543", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 17338919, "upload_time": "2018-04-23T19:14:58", "url": "https://files.pythonhosted.org/packages/40/93/96428e520d8b17d5770cb5fd4d5c95cac896f6d8078c79ff4d9145bdd867/CatLearn-0.4.0.dev3.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "430aaf85e14001b686415d842d4d5d2c", "sha256": "aef518bad64959ad8fc798c07b203b729922a5c224ce1b3a13e3c3a1025176a9" }, "downloads": -1, "filename": "CatLearn-0.4.1.tar.gz", "has_sig": false, "md5_digest": "430aaf85e14001b686415d842d4d5d2c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 17336671, "upload_time": "2018-04-26T22:54:45", "url": "https://files.pythonhosted.org/packages/da/c9/f0a2b75b32c344f2ddfb9d9d38b9cfff41deac6ed5fffdd3bc8dfed062bd/CatLearn-0.4.1.tar.gz" } ], "0.4.1.post1": [ { "comment_text": "", "digests": { "md5": "10ed38e1cecb41205e910def31530734", "sha256": "8a41e4bbeca6f803cb4385fb6a9f5edcbabe5fa47e46a000a019e09673e8e52e" }, "downloads": -1, "filename": "CatLearn-0.4.1.post1.tar.gz", "has_sig": false, "md5_digest": "10ed38e1cecb41205e910def31530734", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 17336709, "upload_time": "2018-04-26T23:18:32", "url": "https://files.pythonhosted.org/packages/5a/a7/4f5ec1d9d21e91b5a909ccf2e5b6a5a38954d86179ef60fdbda56693c34c/CatLearn-0.4.1.post1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "294ba65f94cbec640599fd83102dc1b6", "sha256": "1845036637c1ac86533ea7839e4f7dd7bc72c40a48d2143005bc81e68d32a9fa" }, "downloads": -1, "filename": "CatLearn-0.4.2.tar.gz", "has_sig": false, "md5_digest": "294ba65f94cbec640599fd83102dc1b6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 17342513, "upload_time": "2018-05-17T21:32:27", "url": "https://files.pythonhosted.org/packages/59/d6/dc5942475fe1cb5d9fbfd0a83062984c77a1b78f6fb1db0841f16647c712/CatLearn-0.4.2.tar.gz" } ], "0.4.2.dev1": [ { "comment_text": "", "digests": { "md5": "8cde625e341f8d4775a610e45b274873", "sha256": "610db9d08b86c528ed4749689c58a215abfca7ab1d7de9dea7ec046a9ad5ca36" }, "downloads": -1, "filename": "CatLearn-0.4.2.dev1.tar.gz", "has_sig": false, "md5_digest": "8cde625e341f8d4775a610e45b274873", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 17338079, "upload_time": "2018-05-02T23:51:34", "url": "https://files.pythonhosted.org/packages/6a/42/e6b0b3a30ee471184134d57a359fede4bc3fc9d73e5381ecec142a5d760d/CatLearn-0.4.2.dev1.tar.gz" } ], "0.4.2.dev2": [ { "comment_text": "", "digests": { "md5": "5e1068f7023ca867633a22fa3a996c31", "sha256": "f9b208f38fd979bf67319adacdba890445ed16d2df00c786e23a584f886a397d" }, "downloads": -1, "filename": "CatLearn-0.4.2.dev2.tar.gz", "has_sig": false, "md5_digest": "5e1068f7023ca867633a22fa3a996c31", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 17338729, "upload_time": "2018-05-10T17:43:21", "url": "https://files.pythonhosted.org/packages/83/28/396599ef5b917289e4b6df02b1b6974fdc59b43a832521560bd5ca653a77/CatLearn-0.4.2.dev2.tar.gz" } ], "0.4.2.dev3": [ { "comment_text": "", "digests": { "md5": "340eac194d7e738ecd535c04d16654d0", "sha256": "e98e7c0b7f3710e22e1141de18584b67775d70649af15b3084adfcebbe4aaa60" }, "downloads": -1, "filename": "CatLearn-0.4.2.dev3.tar.gz", "has_sig": false, "md5_digest": "340eac194d7e738ecd535c04d16654d0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4", "size": 17340464, "upload_time": "2018-05-11T16:32:54", "url": "https://files.pythonhosted.org/packages/76/14/d843c82773679d1d08d9ea287c01d0fa83b72c3e5c482ba41779528594d3/CatLearn-0.4.2.dev3.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "e32982ca6e9b210a278751b17be3bf78", "sha256": "6532d737c4875b401c42d2b45ba551894d3898dcffea68d101c432ea66bad9f0" }, "downloads": -1, "filename": "CatLearn-0.4.3.tar.gz", "has_sig": false, "md5_digest": "e32982ca6e9b210a278751b17be3bf78", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 17345840, "upload_time": "2018-05-30T20:42:48", "url": "https://files.pythonhosted.org/packages/8e/47/48e8432c18d745f5cf08f8ac2ec896039f38693441cfe5fe9d5d3a10b1e8/CatLearn-0.4.3.tar.gz" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "9bed1bf887a86607cfd7098b9b50b5f2", "sha256": "0194a71e6639bd858be3e80cc822d0ea9c5c689d6338a867b45eaf17591ecc9f" }, "downloads": -1, "filename": "CatLearn-0.4.4.tar.gz", "has_sig": false, "md5_digest": "9bed1bf887a86607cfd7098b9b50b5f2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 17350177, "upload_time": "2018-08-15T18:34:53", "url": "https://files.pythonhosted.org/packages/0f/9c/b943f21dbb520e5c3d284a80e6f73c4bb16f4e814a95619233640144f0be/CatLearn-0.4.4.tar.gz" } ], "0.4.4.dev1": [ { "comment_text": "", "digests": { "md5": "fe4032cb440671eedd36fe7f8ea011da", "sha256": "2fa43cd8b9ffcbcf21bf1a9255bd182d21a572ea22fc44f5ed4d1adf5d4c3feb" }, "downloads": -1, "filename": "CatLearn-0.4.4.dev1.tar.gz", "has_sig": false, "md5_digest": "fe4032cb440671eedd36fe7f8ea011da", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 17345168, "upload_time": "2018-06-08T20:39:53", "url": "https://files.pythonhosted.org/packages/1a/42/f95ca65cbd022c0bd0a0146b5f9a090eb4290837d3d5090361f86d8f684d/CatLearn-0.4.4.dev1.tar.gz" } ], "0.4.4.dev2": [ { "comment_text": "", "digests": { "md5": "e8b4d1bd462c9cac5dd71c019dc09d52", "sha256": "2c879f491a38936b21495585e47ed5da56554512c9f847a3b21bfb102a552802" }, "downloads": -1, "filename": "CatLearn-0.4.4.dev2.tar.gz", "has_sig": false, "md5_digest": "e8b4d1bd462c9cac5dd71c019dc09d52", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 17346368, "upload_time": "2018-06-14T16:51:34", "url": "https://files.pythonhosted.org/packages/5e/89/8c471096737328ffc7a9689fee13eded77363f9a4729f2cdd3325b1fe5a7/CatLearn-0.4.4.dev2.tar.gz" } ], "0.4.4.dev3": [ { "comment_text": "", "digests": { "md5": "0d05dc1cd9e4e1b8d300bd5418c6f935", "sha256": "f3f975d35df077f396a29b782437b3fff3b5bea48e21a8fb9d8a39a1be08d6e9" }, "downloads": -1, "filename": "CatLearn-0.4.4.dev3.tar.gz", "has_sig": false, "md5_digest": "0d05dc1cd9e4e1b8d300bd5418c6f935", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 17348228, "upload_time": "2018-07-24T06:13:34", "url": "https://files.pythonhosted.org/packages/3b/74/39724399e9d062923839bc2f277b81ec47f6dc01e5200b4bf05813246840/CatLearn-0.4.4.dev3.tar.gz" } ], "0.4.4.dev4": [ { "comment_text": "", "digests": { "md5": "37b9c7517500dd1d8387e90bfde1b2ff", "sha256": "8a2a7113908a08ba0146e0e1ec2b24373f72d6723a6c6b9443e3580c3e0048d8" }, "downloads": -1, "filename": "CatLearn-0.4.4.dev4.tar.gz", "has_sig": false, "md5_digest": "37b9c7517500dd1d8387e90bfde1b2ff", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 17348271, "upload_time": "2018-07-24T06:44:51", "url": "https://files.pythonhosted.org/packages/54/f4/7e7ba6529bf3c8a4096770a04d751b9961e7c7769a28f81401e89126210c/CatLearn-0.4.4.dev4.tar.gz" } ], "0.4.4.dev5": [ { "comment_text": "", "digests": { "md5": "8ba3542431b4c6e79b33293c681ee346", "sha256": "5fff101bc430795b5e88168df48ba081444a2bcc23d0210fc5a7b40a56afc37a" }, "downloads": -1, "filename": "CatLearn-0.4.4.dev5.tar.gz", "has_sig": false, "md5_digest": "8ba3542431b4c6e79b33293c681ee346", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 17348385, "upload_time": "2018-07-31T00:45:57", "url": "https://files.pythonhosted.org/packages/00/4a/99d8cada67ee3bc85bdcb4ba41455dccabf56941548b2e084968d8c6988f/CatLearn-0.4.4.dev5.tar.gz" } ], "0.4.4.post1": [ { "comment_text": "", "digests": { "md5": "83bb65d0852250bca87321302bfb04fa", "sha256": "029e575c5a63a0fe08edf3da428c706c0ff01b296a96e86d0160175bb3d5818e" }, "downloads": -1, "filename": "CatLearn-0.4.4.post1-py3.6.egg", "has_sig": false, "md5_digest": "83bb65d0852250bca87321302bfb04fa", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 17638246, "upload_time": "2018-12-04T20:22:43", "url": "https://files.pythonhosted.org/packages/78/be/8f1c216558d9b35ffdbc9a65179a125a5d922c33a1709a413c62f76f4085/CatLearn-0.4.4.post1-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "21cabc845ac986c3fb978f122b355eb1", "sha256": "616b0ed7ef978e97cbfc767cc75333aec6b2a4e77a0d6e3f4405f5cb1b064cd8" }, "downloads": -1, "filename": "CatLearn-0.4.4.post1.tar.gz", "has_sig": false, "md5_digest": "21cabc845ac986c3fb978f122b355eb1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 17349987, "upload_time": "2018-08-17T18:41:50", "url": "https://files.pythonhosted.org/packages/c4/73/91d2411800d472170725c1d9b5ec40264d8543e813ce03785c0f5f2ed89a/CatLearn-0.4.4.post1.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "4b4b6768aa600c1ee21beb5844252781", "sha256": "d751b92b36c3e0c18a5b994c1e3ff22efce01209bc32b8b7cd5dc0e4c50ea806" }, "downloads": -1, "filename": "CatLearn-0.5.0.tar.gz", "has_sig": false, "md5_digest": "4b4b6768aa600c1ee21beb5844252781", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 17350462, "upload_time": "2018-10-17T22:15:47", "url": "https://files.pythonhosted.org/packages/cc/55/ca6b30fcd7348ca3b0d3926064a77e1283940d775ceb37b46d8da9c3c5a6/CatLearn-0.5.0.tar.gz" } ], "0.5.0.dev1": [ { "comment_text": "", "digests": { "md5": "0351bdbefab394b66992b29eff44fc73", "sha256": "8eeafe6d2ea4893b67f1fd8d27d88054ab741441cb9a1536b471771965ac8822" }, "downloads": -1, "filename": "CatLearn-0.5.0.dev1.tar.gz", "has_sig": false, "md5_digest": "0351bdbefab394b66992b29eff44fc73", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 17350918, "upload_time": "2018-08-24T23:19:43", "url": "https://files.pythonhosted.org/packages/39/6b/aee209601e4a3cfb7b5e36eeb8ebaa38503031bce31dcd39e492478889dc/CatLearn-0.5.0.dev1.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "b60a07b042ecc51edea46d1ae517ca54", "sha256": "c71f6395e984fec3d081ac8fb169188126ac4bd7b3e61620df6272cf0b18af04" }, "downloads": -1, "filename": "CatLearn-0.6.0.tar.gz", "has_sig": false, "md5_digest": "b60a07b042ecc51edea46d1ae517ca54", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 17373388, "upload_time": "2019-03-21T16:20:29", "url": "https://files.pythonhosted.org/packages/f3/70/9fc605eef30287ecc53cffa0310932fdbc38574e628f4513276f2531340e/CatLearn-0.6.0.tar.gz" } ], "0.6.0.dev1": [ { "comment_text": "", "digests": { "md5": "e0edc8678c4ad040a5ba4376e5870174", "sha256": "2478e819f26105749c42570cc0391e33ab9539b173caad7db4a39b5b316f3ba3" }, "downloads": -1, "filename": "CatLearn-0.6.0.dev1.tar.gz", "has_sig": false, "md5_digest": "e0edc8678c4ad040a5ba4376e5870174", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 17367987, "upload_time": "2018-11-22T06:36:13", "url": "https://files.pythonhosted.org/packages/d1/cc/36dc3c3f91a4c762e93d0b3d44d4f5af872cc679f4ec7a784571adb78a89/CatLearn-0.6.0.dev1.tar.gz" } ], "0.6.0.dev2": [ { "comment_text": "", "digests": { "md5": "c428bc0afbae262f5271cd489095323b", "sha256": "85b829f7d4931e7f849020f86b77d7dd9b6c34a1c15315bd65808cb43c10e285" }, "downloads": -1, "filename": "CatLearn-0.6.0.dev2.tar.gz", "has_sig": false, "md5_digest": "c428bc0afbae262f5271cd489095323b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 17373522, "upload_time": "2018-12-04T20:22:47", "url": "https://files.pythonhosted.org/packages/f4/39/620ee110eaab860494b2daa6f72b7566882dd2027cbf049f385636883851/CatLearn-0.6.0.dev2.tar.gz" } ], "0.6.0.dev3": [ { "comment_text": "", "digests": { "md5": "c3532a563261aed8e8cbc8ff8e8201e0", "sha256": "daa90f41f950312781e8d2432dc89834ba8070a5e0f186b2eae12838378a39b4" }, "downloads": -1, "filename": "CatLearn-0.6.0.dev3.tar.gz", "has_sig": false, "md5_digest": "c3532a563261aed8e8cbc8ff8e8201e0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 17372045, "upload_time": "2019-02-05T09:26:48", "url": "https://files.pythonhosted.org/packages/91/6e/5c519e62783335b39810c0aeef9df3eaeba8bfbd55629593ed53d1724523/CatLearn-0.6.0.dev3.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "8985b44b20a379292ed283426edf403a", "sha256": "50b87c212675cf0afbab0d03647cfa4ea745c95bd9e2a132eab88c4d6bb253c0" }, "downloads": -1, "filename": "CatLearn-0.6.1.tar.gz", "has_sig": false, "md5_digest": "8985b44b20a379292ed283426edf403a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 17374531, "upload_time": "2019-04-29T06:33:55", "url": "https://files.pythonhosted.org/packages/c7/7a/2fd81c270e2fba7ca4e497ccc862c7ec40d92795711d46e07c64872654b4/CatLearn-0.6.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "8985b44b20a379292ed283426edf403a", "sha256": "50b87c212675cf0afbab0d03647cfa4ea745c95bd9e2a132eab88c4d6bb253c0" }, "downloads": -1, "filename": "CatLearn-0.6.1.tar.gz", "has_sig": false, "md5_digest": "8985b44b20a379292ed283426edf403a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 17374531, "upload_time": "2019-04-29T06:33:55", "url": "https://files.pythonhosted.org/packages/c7/7a/2fd81c270e2fba7ca4e497ccc862c7ec40d92795711d46e07c64872654b4/CatLearn-0.6.1.tar.gz" } ] }