{ "info": { "author": "TFLearn contributors", "author_email": "aymeric.damien@gmail.com", "bugtrack_url": null, "classifiers": [ "Intended Audience :: Developers", "Intended Audience :: Science/Research", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Scientific/Engineering :: Artificial Intelligence" ], "description": "|Build Status| |PyPI version| |License| |Join the chat at\r\nhttps://gitter.im/einsteinsci/betterbeginnings|\r\n\r\nTFLearn: Deep learning library featuring a higher-level API for TensorFlow.\r\n===========================================================================\r\n\r\nTFlearn is a modular and transparent deep learning library built on top\r\nof Tensorflow. It was designed to provide a higher-level API to\r\nTensorFlow in order to facilitate and speed-up experimentations, while\r\nremaining fully transparent and compatible with it.\r\n\r\nTFLearn features include:\r\n\r\n- Easy-to-use and understand high-level API for implementing deep\r\n neural networks, with tutorial and examples.\r\n- Fast prototyping through highly modular built-in neural network\r\n layers, regularizers, optimizers, metrics\u2026\r\n- Full transparency over Tensorflow. All functions are built over\r\n tensors and can be used independently of TFLearn.\r\n- Powerful helper functions to train any TensorFlow graph, with support\r\n of multiple inputs, outputs and optimizers.\r\n- Easy and beautiful graph visualization, with details about weights,\r\n gradients, activations and more\u2026\r\n- Effortless device placement for using multiple CPU/GPU.\r\n\r\nThe high-level API currently supports most of recent deep learning\r\nmodels, such as Convolutions, LSTM, BiRNN, BatchNorm, PReLU, Residual\r\nnetworks, Generative networks\u2026 In the future, TFLearn is also intended\r\nto stay up-to-date with latest deep learning techniques.\r\n\r\nNote: Latest TFLearn (v0.3) is only compatible with TensorFlow v1.0 and\r\nover.\r\n\r\nOverview\r\n--------\r\n\r\n.. code:: python\r\n\r\n # Classification\r\n tflearn.init_graph(num_cores=8, gpu_memory_fraction=0.5)\r\n\r\n net = tflearn.input_data(shape=[None, 784])\r\n net = tflearn.fully_connected(net, 64)\r\n net = tflearn.dropout(net, 0.5)\r\n net = tflearn.fully_connected(net, 10, activation='softmax')\r\n net = tflearn.regression(net, optimizer='adam', loss='categorical_crossentropy')\r\n\r\n model = tflearn.DNN(net)\r\n model.fit(X, Y)\r\n\r\n.. code:: python\r\n\r\n # Sequence Generation\r\n net = tflearn.input_data(shape=[None, 100, 5000])\r\n net = tflearn.lstm(net, 64)\r\n net = tflearn.dropout(net, 0.5)\r\n net = tflearn.fully_connected(net, 5000, activation='softmax')\r\n net = tflearn.regression(net, optimizer='adam', loss='categorical_crossentropy')\r\n\r\n model = tflearn.SequenceGenerator(net, dictionary=idx, seq_maxlen=100)\r\n model.fit(X, Y)\r\n model.generate(50, temperature=1.0)\r\n\r\nThere are many more examples available *`here`_*.\r\n\r\nInstallation\r\n------------\r\n\r\n**TensorFlow Installation**\r\n\r\nTFLearn requires Tensorflow (version 1.0+) to be installed.\r\n\r\nTo install TensorFlow, simply run:\r\n\r\n::\r\n\r\n pip install tensorflow\r\n\r\nor, with GPU-support:\r\n\r\n::\r\n\r\n pip install tensorflow-gpu\r\n\r\nThere are many more examples available here:\r\nhttp://tflearn.org/examples.\r\n\r\nInstallation\r\n------------\r\n\r\n**TensorFlow Installation**\r\n\r\nTFLearn requires Tensorflow (version 1.0+) to be installed.\r\n\r\nTo install TensorFlow, simply run:\r\n\r\n::\r\n\r\n pip install tensorflow\r\n\r\nor, with GPU-support:\r\n\r\n::\r\n\r\n pip install tensorflow-gpu\r\n\r\nFor more details see:\r\nhttps://github.com/tensorflow/tensorflow/blob/master/tensorflow/g3doc/get\\_started/os\\_setup.md\r\n\r\n**TFLearn Installation**\r\n\r\nTo install TFLearn, the easiest way is to run\r\n\r\nFor the bleeding edge version (recommended):\r\n\r\n.. code:: python\r\n\r\n pip install git+https://github.com/tflearn/tflearn.git\r\n\r\nFor the latest stable version:\r\n\r\n.. code:: python\r\n\r\n pip install tflearn\r\n\r\nOtherwise, you can also install from source by running (from source\r\nfolder):\r\n\r\n.. code:: python\r\n\r\n python setup.py install\r\n\r\n- For more details, please see the `Installation Guide`_.\r\n\r\nGetting Started\r\n---------------\r\n\r\nSee `Getting Started with TFLearn`_ to learn about TFLearn basic\r\nfunctionalities or start browsing `TFLearn Tutorials`_.\r\n\r\nExamples\r\n--------\r\n\r\nThere are many neural network implementation available, see `Examples`_.\r\n\r\nDocumentation\r\n-------------\r\n\r\nhttp://tflearn.org/doc_index\r\n\r\nContributions\r\n-------------\r\n\r\nThis is the first release of TFLearn, if you find any bug, please report\r\nit in the GitHub issues section.\r\n\r\nImprovements and requests for new features are more than welcome! Do not\r\nhesitate to twist and tweak TFLearn, and send pull-requests.\r\n\r\nFor more info: `Contribute to TFLearn`_.\r\n\r\nLicense\r\n-------\r\n\r\nMIT License\r\n\r\n.. _here: http://tflearn.org/examples\r\n\r\n.. |Build Status| image:: https://travis-ci.org/tflearn/tflearn.svg?branch=master\r\n :target: https://travis-ci.org/tflearn/tflearn\r\n.. |PyPI version| image:: https://badge.fury.io/py/tflearn.svg\r\n :target: https://badge.fury.io/py/tflearn\r\n.. |License| image:: https://img.shields.io/badge/license-MIT-blue.svg\r\n :target: LICENSE\r\n.. |Join the chat at https://gitter.im/einsteinsci/betterbeginnings| image:: https://badges.gitter.im/tflearn/tflearn.svg\r\n :target: https://gitter.im/tflearn/tflearn?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge\r\n.. _Installation Guide: http://tflearn.org/installation\r\n.. _Getting Started with TFLearn: http://tflearn.org/getting_started\r\n.. _TFLearn Tutorials: http://tflearn.org/tutorials\r\n.. _Examples: http://tflearn.org/examples\r\n.. _Contribute to TFLearn: http://tflearn.org/contributions", "description_content_type": null, "docs_url": null, "download_url": "https://github.com/tflearn/tflearn/tarball/0.3.2", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/tflearn/tflearn", "keywords": "TFLearn,TensorFlow,Deep Learning,Machine Learning,Neural Networks,AI", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "tflearn", "package_url": "https://pypi.org/project/tflearn/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/tflearn/", "project_urls": { "Download": "https://github.com/tflearn/tflearn/tarball/0.3.2", "Homepage": "https://github.com/tflearn/tflearn" }, "release_url": "https://pypi.org/project/tflearn/0.3.2/", "requires_dist": null, "requires_python": "", "summary": "Deep Learning Library featuring a higher-level API for TensorFlow", "version": "0.3.2" }, "last_serial": 2957029, "releases": { "0.2.1": [ { "comment_text": "", "digests": { "md5": "3aec477c589831412dfdde041371336d", "sha256": "20c64981ded6fea0c1cedccc3b246ed7d5ba5d919ed9255a4c809421092308d9" }, "downloads": -1, "filename": "tflearn-0.2.1.tar.gz", "has_sig": false, "md5_digest": "3aec477c589831412dfdde041371336d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72978, "upload_time": "2016-06-14T10:42:10", "url": "https://files.pythonhosted.org/packages/dd/6f/b944433120299f53c49479f8ada792321da4db6bab85905d469c442ae20f/tflearn-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "276126179b02e88b0bfe4c677df7c63a", "sha256": "8b0ddb58359de6554bba28ac13d15b57cba61bd8ef19831d2c6be073692ca924" }, "downloads": -1, "filename": "tflearn0.2.2.tar.gz", "has_sig": false, "md5_digest": "276126179b02e88b0bfe4c677df7c63a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75703, "upload_time": "2016-09-19T20:04:19", "url": "https://files.pythonhosted.org/packages/a1/f3/01770ba6242f8e5e557247597843c2a6cb645d46ae430b99756cd580270c/tflearn0.2.2.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "fd84af1f1773ee1c550f1c29d3f31f22", "sha256": "9d53c2bf0334f7a5f54b170a21ceda37cbd1527805036cad9e69ee1b216e0906" }, "downloads": -1, "filename": "tflearn-0.3.tar.gz", "has_sig": false, "md5_digest": "fd84af1f1773ee1c550f1c29d3f31f22", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 91120, "upload_time": "2017-02-20T17:44:04", "url": "https://files.pythonhosted.org/packages/e1/a9/2afd0c5c5ea17602de799f9ddc839c2d998e4ea66632144e5aaa78a3c22f/tflearn-0.3.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "916240198d0f19806d41d4b68efccc67", "sha256": "40e853311d7fd4fcdfa7c4d1982aeef6fba00e7cbbf5c5fb005a208939f3859c" }, "downloads": -1, "filename": "tflearn-0.3.1.tar.gz", "has_sig": false, "md5_digest": "916240198d0f19806d41d4b68efccc67", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96991, "upload_time": "2017-05-18T18:03:31", "url": "https://files.pythonhosted.org/packages/7c/0e/fadf8e3bd9660eaa76853ad8b9176137ae07281eacfb7178ca3099e5b7c7/tflearn-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "18b273650decac770970350f25e50b8c", "sha256": "3f58016039817450a89a49cd6973edbe4e0652aedd709289917e4746f5da940c" }, "downloads": -1, "filename": "tflearn-0.3.2.tar.gz", "has_sig": false, "md5_digest": "18b273650decac770970350f25e50b8c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 98610, "upload_time": "2017-06-18T02:01:29", "url": "https://files.pythonhosted.org/packages/16/ec/e9ce1b52e71f6dff3bd944f020cef7140779e783ab27512ea7c7275ddee5/tflearn-0.3.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "18b273650decac770970350f25e50b8c", "sha256": "3f58016039817450a89a49cd6973edbe4e0652aedd709289917e4746f5da940c" }, "downloads": -1, "filename": "tflearn-0.3.2.tar.gz", "has_sig": false, "md5_digest": "18b273650decac770970350f25e50b8c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 98610, "upload_time": "2017-06-18T02:01:29", "url": "https://files.pythonhosted.org/packages/16/ec/e9ce1b52e71f6dff3bd944f020cef7140779e783ab27512ea7c7275ddee5/tflearn-0.3.2.tar.gz" } ] }