├── .gitignore ├── README.md ├── chapter10 ├── Thumbs.db ├── articles.txt ├── clusters.py ├── docclass.py ├── features.txt ├── newsfeatures.py ├── nnmf.py ├── stockfeatures.txt └── stockvolume.py ├── chapter11 └── gp.py ├── chapter2 ├── deliciousrec.py ├── pydelicious.py └── recommendations.py ├── chapter3 ├── blogdata.txt ├── clusters.py ├── downloadzebodata.py ├── feedlist.txt ├── generatefeedvector.py └── zebo.txt ├── chapter4 ├── nn.py └── searchengine.py ├── chapter5 ├── dorm.py ├── kayak.py ├── optimization.py ├── schedule.txt └── socialnetwork.py ├── chapter6 ├── docclass.py ├── feedfilter.py ├── python_search.xml ├── test.db └── test1.db ├── chapter7 ├── Thumbs.db ├── addresslist.txt ├── hotornot.py ├── treepredict.py └── zillow.py ├── chapter8 ├── ebaypredict.py ├── numpredict.py └── optimization.py └── chapter9 ├── advancedclassify.py ├── agesonly.csv ├── facebook.py ├── matchmaker.csv └── svm.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.py[cd] 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/README.md -------------------------------------------------------------------------------- /chapter10/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter10/Thumbs.db -------------------------------------------------------------------------------- /chapter10/articles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter10/articles.txt -------------------------------------------------------------------------------- /chapter10/clusters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter10/clusters.py -------------------------------------------------------------------------------- /chapter10/docclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter10/docclass.py -------------------------------------------------------------------------------- /chapter10/features.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter10/features.txt -------------------------------------------------------------------------------- /chapter10/newsfeatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter10/newsfeatures.py -------------------------------------------------------------------------------- /chapter10/nnmf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter10/nnmf.py -------------------------------------------------------------------------------- /chapter10/stockfeatures.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter10/stockfeatures.txt -------------------------------------------------------------------------------- /chapter10/stockvolume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter10/stockvolume.py -------------------------------------------------------------------------------- /chapter11/gp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter11/gp.py -------------------------------------------------------------------------------- /chapter2/deliciousrec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter2/deliciousrec.py -------------------------------------------------------------------------------- /chapter2/pydelicious.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter2/pydelicious.py -------------------------------------------------------------------------------- /chapter2/recommendations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter2/recommendations.py -------------------------------------------------------------------------------- /chapter3/blogdata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter3/blogdata.txt -------------------------------------------------------------------------------- /chapter3/clusters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter3/clusters.py -------------------------------------------------------------------------------- /chapter3/downloadzebodata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter3/downloadzebodata.py -------------------------------------------------------------------------------- /chapter3/feedlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter3/feedlist.txt -------------------------------------------------------------------------------- /chapter3/generatefeedvector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter3/generatefeedvector.py -------------------------------------------------------------------------------- /chapter3/zebo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter3/zebo.txt -------------------------------------------------------------------------------- /chapter4/nn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter4/nn.py -------------------------------------------------------------------------------- /chapter4/searchengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter4/searchengine.py -------------------------------------------------------------------------------- /chapter5/dorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter5/dorm.py -------------------------------------------------------------------------------- /chapter5/kayak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter5/kayak.py -------------------------------------------------------------------------------- /chapter5/optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter5/optimization.py -------------------------------------------------------------------------------- /chapter5/schedule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter5/schedule.txt -------------------------------------------------------------------------------- /chapter5/socialnetwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter5/socialnetwork.py -------------------------------------------------------------------------------- /chapter6/docclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter6/docclass.py -------------------------------------------------------------------------------- /chapter6/feedfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter6/feedfilter.py -------------------------------------------------------------------------------- /chapter6/python_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter6/python_search.xml -------------------------------------------------------------------------------- /chapter6/test.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter6/test.db -------------------------------------------------------------------------------- /chapter6/test1.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter6/test1.db -------------------------------------------------------------------------------- /chapter7/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter7/Thumbs.db -------------------------------------------------------------------------------- /chapter7/addresslist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter7/addresslist.txt -------------------------------------------------------------------------------- /chapter7/hotornot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter7/hotornot.py -------------------------------------------------------------------------------- /chapter7/treepredict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter7/treepredict.py -------------------------------------------------------------------------------- /chapter7/zillow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter7/zillow.py -------------------------------------------------------------------------------- /chapter8/ebaypredict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter8/ebaypredict.py -------------------------------------------------------------------------------- /chapter8/numpredict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter8/numpredict.py -------------------------------------------------------------------------------- /chapter8/optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter8/optimization.py -------------------------------------------------------------------------------- /chapter9/advancedclassify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter9/advancedclassify.py -------------------------------------------------------------------------------- /chapter9/agesonly.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter9/agesonly.csv -------------------------------------------------------------------------------- /chapter9/facebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter9/facebook.py -------------------------------------------------------------------------------- /chapter9/matchmaker.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter9/matchmaker.csv -------------------------------------------------------------------------------- /chapter9/svm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthur-e/Programming-Collective-Intelligence/HEAD/chapter9/svm.py --------------------------------------------------------------------------------