{ "info": { "author": "dominiczijlstra", "author_email": "dominiczijlstra@gmail.com", "bugtrack_url": null, "classifiers": [], "description": "# fasttrees\nA fast-and-frugal-tree classifier based on Python's scikit learn.\n\nFast-and-frugal trees are classification trees that are especially useful for making decisions under uncertainty. \nDue their simplicity and transparency they are very robust against noise and errors in data.\nThey are one of the heuristics proposed by Gerd Gigerenzer in [Fast and Frugal Heuristics in Medical Decision](library.mpib-berlin.mpg.de/ft/gg/GG_Fast_2005.pdf). This particular implementation is based on on the R package [FFTrees](https://cran.r-project.org/web/packages/FFTrees/index.html), developed by Phillips, Neth, Woike and Grassmaier.\n\n## Install\nYou can install fasttrees using\n```\npip install fasttrees\n```\n\n## Usage\nInstantiate a fast-and-frugal tree classifier:\n```python\nfrom fasttrees.fasttrees import FastFrugalTreeClassifier\nfc = FastFrugalTreeClassifier()\n```\n\nFit on your data:\n```python\nfc.fit(X_train, y_train)\n```\n\nView the fitted tree (this is especially useful if the 'predictions' will be carried out by humans in practice):\n```python\nfc.get_tree()\n```\n\nPredict:\n```python\npreds = fc.predict(X_test)\n```\n\nScore:\n```python\nfc.score(X_test, y_test)\n```", "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/dominiczy/fasttrees", "keywords": "", "license": "MIT License", "maintainer": "", "maintainer_email": "", "name": "fasttrees", "package_url": "https://pypi.org/project/fasttrees/", "platform": "", "project_url": "https://pypi.org/project/fasttrees/", "project_urls": { "Homepage": "https://github.com/dominiczy/fasttrees" }, "release_url": "https://pypi.org/project/fasttrees/1.2.5/", "requires_dist": null, "requires_python": "", "summary": "A fast and frugal tree classifier for sklearn", "version": "1.2.5" }, "last_serial": 5783285, "releases": { "0.9.0": [ { "comment_text": "", "digests": { "md5": "ea9048262d2c4cd7c9230ada79ef6ba2", "sha256": "d62e8d2d1f3886106a080355e7b3058a90070807a0ba548b9958a753e0621cf2" }, "downloads": -1, "filename": "fasttrees-0.9.0.tar.gz", "has_sig": false, "md5_digest": "ea9048262d2c4cd7c9230ada79ef6ba2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2877, "upload_time": "2019-01-23T16:46:28", "url": "https://files.pythonhosted.org/packages/ba/2c/46a061cde6dd2d26dff709e5f0d187a09804d960b92c602277451d07d666/fasttrees-0.9.0.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "554986c95e804462113b3d5201aaa38e", "sha256": "1210ce995247031ea76139de57a96f6dc1c28879b10f5d8e65af721edff7b82d" }, "downloads": -1, "filename": "fasttrees-1.0.0.tar.gz", "has_sig": false, "md5_digest": "554986c95e804462113b3d5201aaa38e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3575, "upload_time": "2019-01-24T12:42:17", "url": "https://files.pythonhosted.org/packages/fa/06/48bb85fb935466a9454226aa62e2da4e56a125df31d864335aacadb6f8a5/fasttrees-1.0.0.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "3f99a4d4e37b47addaec16623fab8bcb", "sha256": "6c73012c2b52c436a89b3a30db695a7dca5f9f36e346177d353d99abb2ba422a" }, "downloads": -1, "filename": "fasttrees-1.1.0.tar.gz", "has_sig": false, "md5_digest": "3f99a4d4e37b47addaec16623fab8bcb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3710, "upload_time": "2019-01-24T15:26:05", "url": "https://files.pythonhosted.org/packages/c5/83/d7737beb21a16b1c1bcea1a838df679ff02121856b059547ddae2c25356f/fasttrees-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "fdeeb535754f60c4fcfe1c0d58f3f08d", "sha256": "ae757c28ff0339f1dbba16d720822c347907c3b484a0eb32a665e7845fdddfa5" }, "downloads": -1, "filename": "fasttrees-1.1.1.tar.gz", "has_sig": false, "md5_digest": "fdeeb535754f60c4fcfe1c0d58f3f08d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3658, "upload_time": "2019-01-24T16:37:14", "url": "https://files.pythonhosted.org/packages/02/1b/42296f2b5e93df529a317add0afab63bc3d07a0ef354d08fd737601e4653/fasttrees-1.1.1.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "77b788f852dbff630b1ebe412169bb4b", "sha256": "8752b8ef48626f478cfcd68a943c62426f54f34879e687804d1e3aac297391a4" }, "downloads": -1, "filename": "fasttrees-1.2.0.tar.gz", "has_sig": false, "md5_digest": "77b788f852dbff630b1ebe412169bb4b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4485, "upload_time": "2019-01-29T22:26:11", "url": "https://files.pythonhosted.org/packages/16/38/1645e19753004f5e474a5c2d1922cf76b54d0d6d2b6375906925d081f2cb/fasttrees-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "71b80c3fbf3863391a45c9771962867c", "sha256": "4e5edb639cb9057bd40a4f9d6d914fd45e3d30f2fcf1108e2bb8b1f7b3b8520d" }, "downloads": -1, "filename": "fasttrees-1.2.1.tar.gz", "has_sig": false, "md5_digest": "71b80c3fbf3863391a45c9771962867c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4753, "upload_time": "2019-01-30T11:43:46", "url": "https://files.pythonhosted.org/packages/d0/d8/d51f6d1d0862abcc099a9857a39a65ddfc7626cc673d0775ada0f691bed4/fasttrees-1.2.1.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "8f07ba0cd2a0e55779f434c1e7d9ac07", "sha256": "80bb032742b153f03fb03d4f349f2cdd55addf45ab52a2d3b84a232906273ff7" }, "downloads": -1, "filename": "fasttrees-1.2.2.tar.gz", "has_sig": false, "md5_digest": "8f07ba0cd2a0e55779f434c1e7d9ac07", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4990, "upload_time": "2019-02-22T17:49:10", "url": "https://files.pythonhosted.org/packages/9b/af/a529b4644017058f9a8e1c72e13a4f579e0fd00b0436c8d24f16432c2436/fasttrees-1.2.2.tar.gz" } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "0d0cbfc478279f0880a3e4ac56709eff", "sha256": "64fd9a313537926e458966d6efc88770410569664af4200741e66e62d6a18216" }, "downloads": -1, "filename": "fasttrees-1.2.3.tar.gz", "has_sig": false, "md5_digest": "0d0cbfc478279f0880a3e4ac56709eff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4992, "upload_time": "2019-09-04T19:48:23", "url": "https://files.pythonhosted.org/packages/17/72/f9888c1bb8807693e75c276b40c7203d7f1d00d65607acdec1cdbe2ef8d6/fasttrees-1.2.3.tar.gz" } ], "1.2.4": [ { "comment_text": "", "digests": { "md5": "4910c70e5ae57cd6ef855cf90bfdb053", "sha256": "40cf41e6745619833c198ee0b646e31b869b97e2b2f04760df7c20e5ef406cb1" }, "downloads": -1, "filename": "fasttrees-1.2.4.tar.gz", "has_sig": false, "md5_digest": "4910c70e5ae57cd6ef855cf90bfdb053", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4989, "upload_time": "2019-09-04T19:51:47", "url": "https://files.pythonhosted.org/packages/27/dc/c02c7cdffbf33fb9e2f2f995134873dcda470d4ace89171bc97df74b55cc/fasttrees-1.2.4.tar.gz" } ], "1.2.5": [ { "comment_text": "", "digests": { "md5": "82150ce3638400a16539fe3cba482d6c", "sha256": "e9d872de35d743347b59e57017f7c1710f3067cac7a53f73df3175e2b9da23ee" }, "downloads": -1, "filename": "fasttrees-1.2.5.tar.gz", "has_sig": false, "md5_digest": "82150ce3638400a16539fe3cba482d6c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4975, "upload_time": "2019-09-04T20:14:53", "url": "https://files.pythonhosted.org/packages/9f/92/c4935450dc3feae213563d861a4df3150b594221a6e52e9e296ceb6f7335/fasttrees-1.2.5.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "82150ce3638400a16539fe3cba482d6c", "sha256": "e9d872de35d743347b59e57017f7c1710f3067cac7a53f73df3175e2b9da23ee" }, "downloads": -1, "filename": "fasttrees-1.2.5.tar.gz", "has_sig": false, "md5_digest": "82150ce3638400a16539fe3cba482d6c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4975, "upload_time": "2019-09-04T20:14:53", "url": "https://files.pythonhosted.org/packages/9f/92/c4935450dc3feae213563d861a4df3150b594221a6e52e9e296ceb6f7335/fasttrees-1.2.5.tar.gz" } ] }