{ "info": { "author": "Mehmet Basbug", "author_email": "mbasbug@princeton.edu", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Console", "Framework :: Buildout", "Intended Audience :: Information Technology", "License :: Free for non-commercial use", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Scientific/Engineering :: Artificial Intelligence" ], "description": "*******************************************************************************\nPBOOST : Hybrid Parallel Implementation of Boosted Trees\n\nMehmet Basbug\nPhD Candidate\nPrinceton University\n\nFebruary 2013\n*******************************************************************************\n\nA.QUICK INSTALL\n-------------------------------------------------------------------------------\nFirst make sure that you have OpenMPI and HDF5 installed. Then run the following command to install pboost with all the dependencies:\n\npip install pboost\n\nOR\n\neasy_install pboost\n\nThis will also create a directory named 'pboost' in your home folder.\n\nThis should work fine for many users; however, you may be missing some required libraries. On Debian/Ubuntu run the following command first (add sudo if necessary)\n\napt-get install build-essential python-dev python-setuptools python-pip python-numpy python-scipy python-matplotlib openmpi-bin openmpi-doc libopenmpi-dev libhdf5-serial-dev\n\n\nB.RUNNING DEMO\n-------------------------------------------------------------------------------\nTo run the demo, execute the following command\n\nmpirun -np 2 python ~/pboost/run.py 0\n\nYou should see something similar to the following output\n\nInfo : Confusion matrix for combined validation error with zero threshold :\n{'FP': 108, 'TN': 392, 'FN': 115, 'TP': 153}\nInfo : Training Error of the final classifier : 0.0\nInfo : Validation Error of the final classifier : 0.29296875\n2015-10-22 12:25:46.468247 Rank 0 Info : Reporter finished running.\n2015-10-22 12:25:46.468293 Rank 0 Info : Total runtime : 25.71 seconds\n\nA quick note, if you installed pboost with sudo privileges, you may need to change the ownership of pboost folder and the files in it. In linux, run the following command\n\nsudo chown -R {USERNAME} ~/pboost\n\n\nC.CREATING YOUR CONFIGURATION FILE\n-------------------------------------------------------------------------------\nThe recommended way is appending your new configurations to configurations.cfg file in pboost folder. Alternatively you can create an empty text file with the extension of cfg. A shorter explanation of options can be found in configurations.cfg file. For the detailed explanations see below:\n\n# train_file = [HDF5 File]\n# Raw file of examples and their attributes for training\n# (Must be specified)\n#\n# test_file = [HDF5 File]\n# Raw file of examples and their attributes for testing\n# (Optional)\n\nData files (train_file and test_file) should be in HDF5 format and the raw data must be named 'data' and label must be named 'label'. Alternatively one can use the last column of 'data' dataset as the label.\n\nIf a separate 'label' dataset is not given, the program will assume the last column as labels. At this point only binary labeling is supported; therefore, all the labels should be zero or one.\n\nIf there is no separate test dataset, please leave test_data option blank.\n\n# factory_files = [.py File(s), separated by comma]\n# File(s) containing the concrete implementations of\n# the BaseFeatureFactory class\n# (Leaving blank will include default implementation)\n\nfactory_files option refers to the files containing user defined feature factories. See examples of Feature Factory classes in pima_feature_factory.py file in demo folder.\n\nIn order to use each column of your raw data as a feature, leave this option blank or use the keyword default.\n\nMore than one options can be specified, for instance the following is perfectly okay.\n\tfactory_files = pima_feature_factory.py,my_feature_factory.py\n\nEach user defined Feature Factory class should inherit from BaseFeatureFactory and override blueprint and make methods. The blueprint method refers to the functionality of features. The produce method is about giving arguments to actually create features. One should call make method for every single feature creation within that method. All Feature Factory Files should be in the working directory.\n\n# working_dir \t= [string]\n# Path to a shared disk location containing data files, factory files\n# (Leaving blank will set it to the same directory as this file)\n\nWorking directory should be on a shared disk space. Data files and feature factory files should be put in that directory.\n\n# algorithm \t= [string]\n# Boosting algorithm to use.\n# Current options are \"conf-rated\", \"adaboost\" and \"adaboost-fast\"\n# (Leaving blank will set this field to \"conf-rated\")\n\nCurrently only \"adaboost\", \"adaboost-fast\" and \"conf-rated\" are supported. The second one is recommended as it is likely to converge faster.\n\n# rounds \t\t= [integer]\n# Number of rounds that the boosting algorithm should iterate for\n# (Leaving blank will set this number to 100)\n\nThe runtime of the program is directly proportional to the number of rounds. It is recommended not give a very large number; training error of boosting usually converges with a moderate number of rounds and a large number might cause over fitting.\n\n# xval_no \t\t= [integer]\n# Number of cross-validation folds\n# (Leaving blank will set it to 1, that is disabling x validation)\n\nIn order to have k-fold cross validation, set this number to k. Cross validation is useful when you do not have a separate testing dataset. In this case, validation error might be a good estimate of testing error. A large number should be avoided, as it will increase the runtime. For k-fold cross validation pboost will train k+1 algorithms, meaning that it will take k times longer compared to not using cross validation.\n\n# max_memory \t= [integer/float]\n# Amount of available RAM to each core, in GigaBytes\n# (Leaving blank will set this number to 2, that is 2GB per core)\n\nSince MPI does not treat differently to cores on the same node, this option should be specified in per core basis.\n\n# show_plots = [y/n]\n# Enable to show the plots before the program terminates\n# (Leaving blank will set this field to y)\n\nIn both cases plots will be saved in the output directory\n\n# deduplication = [y/n]\n#\t\t\t\t Enable deduplication for extracted features\n#\t\t\t (Leaving blank will set this field to n)\n\n# omp_threads = [integer]\n#\t\t\t\t Number of OMP threads per MPI process. Only available for adaboost-fast\n#\t\t\t (Leaving blank will set this field to 1)\n\nThe recommended parallelization is to set omp_thread to the number of cores in each node and create mpi threads per node with -bynode flag of mpirun\n\n# tree_depth = [integer]\n#\t\t\t\t The height of the decision tree\n#\t\t\t (Leaving blank will set this field to 1)\n\nFixed height decision tree is used as weak learner. Height of 1 corresponds to Decision Stumps. The type of boosting algorithm determines which objection function is minimized when a node is created.\n\nAll the necessary output data is always stored in an output folder and plots can be generated later on.\n\nD. RUNNING YOUR PROGRAM\n-------------------------------------------------------------------------------\nrun.py takes two arguments cp and cn\n cn : Configuration numbers to process\n cp (optional) : Path to the configuration file\n\nA typical command to run pboost looks like\n\nmpirun -np NUMBER_OF_MPI_THREADS python run.py -cp CONF_PATH CONF_NUM_1 CONF_NUM2\n\nThe default setting for cp is '~/pboost/configurations.cfg'\n\nThe output of the program will be in the folder out_{CONF_NUM} in working directory. The output folder contains the following files in it:\n\nfeature factory files : All Feature Factory Files necessary to make necessary features\nfinal_classifier.py : A script to classify any given raw data\nhypotheses.npy : Data file containing hypotheses found by pboost\ndump.npz : Data file containing predictions and other information about the job\n\nOne can generate plots using plot.py and giving dump.npz as input to that script\n\nE. SUBMITTING A PBOOST JOB VIA PBS\n-------------------------------------------------------------------------------\nThe following script is an example of how to submit a pboost job using PBS scheduler. The script allocates 4 nodes and 16 cores per node for the job for 24 hours. Pboost will run experiments 1 to 100(included) as described in the configuration file experiments.cfg\n\n\t#!/bin/bash\n\t#PBS -l nodes=4:ppn=16,walltime=24:00:00\n\n\tmodule load openmpi\n\tmodule load hdf5\n\tcd /home/mbasbug/pboost\n\tmpirun -np 4 -bynode python2.7 run.py -cp ./experiments.cfg 1-100\n\nNotice that the number of omp threads is set in the configuration file", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/mbasbug/pboost", "keywords": null, "license": "UNKNOWN", "maintainer": null, "maintainer_email": null, "name": "pboost", "package_url": "https://pypi.org/project/pboost/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/pboost/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/mbasbug/pboost" }, "release_url": "https://pypi.org/project/pboost/0.5.4/", "requires_dist": null, "requires_python": null, "summary": "Parallel Implementation of Boosting Algorithms with MPI.", "version": "0.5.4" }, "last_serial": 1978273, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "061352624090bb257f8a08fdfa57112f", "sha256": "230b61008b30614832296161da631de8740238c8bf683077d7c422e88e390b72" }, "downloads": -1, "filename": "pboost-0.1-py2.7.egg", "has_sig": false, "md5_digest": "061352624090bb257f8a08fdfa57112f", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 985131, "upload_time": "2013-03-14T15:03:45", "url": "https://files.pythonhosted.org/packages/3e/9b/2471fad884314269d1921a2ed75e31e897e4d00e5cc859bc9c179a49f4a7/pboost-0.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "3def2102e2ce858c372b32255f06df0b", "sha256": "8ac2a4100cadfc24d43992e371c31fa444c6c194234a1d66ff194a851b8cb5bd" }, "downloads": -1, "filename": "pboost-0.1.tar.gz", "has_sig": false, "md5_digest": "3def2102e2ce858c372b32255f06df0b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 942582, "upload_time": "2013-03-14T15:03:58", "url": "https://files.pythonhosted.org/packages/00/3a/c392fb2eaa24a73201676a18f5b341ba155af001ff53aff96f87d6476b7c/pboost-0.1.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "d7c32ebb08e616c595fef507ff1e0d09", "sha256": "0b05e9a2b06bb68c9d7622f54e9c0cfe0f31161e351a75f0b224f500296a8905" }, "downloads": -1, "filename": "pboost-0.1.1-py2.7.egg", "has_sig": false, "md5_digest": "d7c32ebb08e616c595fef507ff1e0d09", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 985571, "upload_time": "2013-03-17T13:26:41", "url": "https://files.pythonhosted.org/packages/98/7e/e712739d4610435a7b58e3a9d064b38a1471db074a8502a76ef0fb90a295/pboost-0.1.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "95a4cd3c3f8b5c83d9dcfcd9c3000c3c", "sha256": "8905e46588968216f5c23f38926711e9482f9da5d1d00f8b5d05abf40c5ec80d" }, "downloads": -1, "filename": "pboost-0.1.1.tar.gz", "has_sig": false, "md5_digest": "95a4cd3c3f8b5c83d9dcfcd9c3000c3c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 942743, "upload_time": "2013-03-17T13:26:47", "url": "https://files.pythonhosted.org/packages/ac/b3/f1c405dd5851624dc57c9018d0a5e1616569e46caff7e4a5fdbafc1e09d9/pboost-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "0b9825f6ac7d8d188ea02cb57865e1b1", "sha256": "42a10357e191620110988027c0b887f199525ea90e27fffe7dca5b4268832683" }, "downloads": -1, "filename": "pboost-0.1.2-py2.7.egg", "has_sig": false, "md5_digest": "0b9825f6ac7d8d188ea02cb57865e1b1", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 990235, "upload_time": "2013-03-27T20:02:13", "url": "https://files.pythonhosted.org/packages/b7/3f/d501ebdbd5ebb60d007ff3eaa466851c2ab9d43792ca98c2b92ae4475bf2/pboost-0.1.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "28759d3949562b4346ece69eb66b7689", "sha256": "593ab57891e6b163520b7abb3091fa0e75825283b89cfbacc2e75d208ee6c404" }, "downloads": -1, "filename": "pboost-0.1.2.tar.gz", "has_sig": false, "md5_digest": "28759d3949562b4346ece69eb66b7689", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 943767, "upload_time": "2013-03-27T20:02:27", "url": "https://files.pythonhosted.org/packages/0d/13/87f2d139fdd1a4311fb03d162a3cd9a3f6a85ce56ea6580ffc415892314c/pboost-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "886fdbae26ef9d3ea558cbc554bd0de9", "sha256": "77ab913d6b5c529eee9d198297a2c65a185cc5849bc65e3cccbda5eb730a605a" }, "downloads": -1, "filename": "pboost-0.1.3-py2.7.egg", "has_sig": false, "md5_digest": "886fdbae26ef9d3ea558cbc554bd0de9", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 990240, "upload_time": "2013-04-02T18:40:19", "url": "https://files.pythonhosted.org/packages/c7/21/5823a6bd12fe29ed43ff0e0b7a7fe8bec01c279c7e8ebeab6118cd9cf677/pboost-0.1.3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "c6776583b05c07a1f21ed32a48113b85", "sha256": "2d9c8294bff46882c46ad8cc24953550355b6bcbc1f72b56eac4318f99f1c8dd" }, "downloads": -1, "filename": "pboost-0.1.3.tar.gz", "has_sig": false, "md5_digest": "c6776583b05c07a1f21ed32a48113b85", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 943878, "upload_time": "2013-04-02T18:40:08", "url": "https://files.pythonhosted.org/packages/be/eb/5c3d52c074211a571e2adae0703d6715d6e6199874b97486124f07046128/pboost-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "03436be9b695c4a96809e8e4b975aaf0", "sha256": "3a1de31978bc25f57f88fd70d7212aac71de11dc9d94eda692c533b5b49048d0" }, "downloads": -1, "filename": "pboost-0.1.4-py2.7.egg", "has_sig": false, "md5_digest": "03436be9b695c4a96809e8e4b975aaf0", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 990632, "upload_time": "2013-04-05T03:05:27", "url": "https://files.pythonhosted.org/packages/35/68/7b02757761601a4d3a26d1ebcf8df75512bf8ea12da5d0321bb7f73852e1/pboost-0.1.4-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "688844e61a80f321215889f5c6f6292d", "sha256": "bdac78c98269f8118c604d8962cdde46a032c44438a1f84b0063d448b4334bab" }, "downloads": -1, "filename": "pboost-0.1.4.tar.gz", "has_sig": false, "md5_digest": "688844e61a80f321215889f5c6f6292d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 944059, "upload_time": "2013-04-05T03:05:40", "url": "https://files.pythonhosted.org/packages/5e/07/ac107370610d8163d5f050c6d080b621f1e42e6544810775546cfb7e9e04/pboost-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "7e2a1bc76e5650036f7e64c185195d68", "sha256": "0570f7d0c2180521fe6add5af3e480394c46e02bd62769e1d1c03647aafd56a7" }, "downloads": -1, "filename": "pboost-0.1.5-py2.7.egg", "has_sig": false, "md5_digest": "7e2a1bc76e5650036f7e64c185195d68", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 991144, "upload_time": "2013-04-08T23:09:28", "url": "https://files.pythonhosted.org/packages/0f/2f/fd6d4822d9a7edc1ac1e38f7f0b92967483380135a33f855e0e1f75d3b56/pboost-0.1.5-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "e7c10009e0b8f365d156945997dd15c3", "sha256": "e876016db76790183849d4ec92e36ea24f0b6671d2990faba303aaded760078d" }, "downloads": -1, "filename": "pboost-0.1.5.tar.gz", "has_sig": false, "md5_digest": "e7c10009e0b8f365d156945997dd15c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 944250, "upload_time": "2013-04-08T23:09:36", "url": "https://files.pythonhosted.org/packages/2a/ce/9043fbbbd6e48c512c5ccb92232a00b1c5215275e2d3db35b60445f2608d/pboost-0.1.5.tar.gz" } ], "0.1.6": [ { "comment_text": "", "digests": { "md5": "5ee964643161297b2779615c9ff13138", "sha256": "599c94268209e976f6fb677edf7f3d10e0c401860e2ede2488b1a0625f0f9b30" }, "downloads": -1, "filename": "pboost-0.1.6-py2.7.egg", "has_sig": false, "md5_digest": "5ee964643161297b2779615c9ff13138", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 999279, "upload_time": "2013-04-16T01:35:46", "url": "https://files.pythonhosted.org/packages/31/a4/e2e26d99838ca6ce1b1f84367b6c41baf01b89f40bb43f7437fa8626ae7e/pboost-0.1.6-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "272d0fc644bc87abfb6147444afe8af6", "sha256": "6bcafa6ef001f5d435387650d094286c5d2aa6d65c2b8ad1e647fcbea83c5aa8" }, "downloads": -1, "filename": "pboost-0.1.6.tar.gz", "has_sig": false, "md5_digest": "272d0fc644bc87abfb6147444afe8af6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 946006, "upload_time": "2013-04-16T01:36:04", "url": "https://files.pythonhosted.org/packages/5c/a8/7cfabf7211f8b35082c991248a9c704f0cc4d67f21fa7c80095e967adf29/pboost-0.1.6.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "efa29f44e187012f991b464cdb962608", "sha256": "0022b62f68231e6c5e9839d9cc9c78b519f3540b5fb77bd18ad692410d53fe0d" }, "downloads": -1, "filename": "pboost-0.1.7-py2.7.egg", "has_sig": false, "md5_digest": "efa29f44e187012f991b464cdb962608", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 1000439, "upload_time": "2013-04-17T05:17:26", "url": "https://files.pythonhosted.org/packages/a0/4a/6b5598d1e6db0d539907752fafa60415a3b9ebbe886f9dca89472d6818b1/pboost-0.1.7-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "34cd3d01c1c4c4adb076b6ae95d56360", "sha256": "755be9ee70d490eafa60f600677232237c01d80887ba671d340ece4964d4351b" }, "downloads": -1, "filename": "pboost-0.1.7.tar.gz", "has_sig": false, "md5_digest": "34cd3d01c1c4c4adb076b6ae95d56360", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 946692, "upload_time": "2013-04-17T05:17:45", "url": "https://files.pythonhosted.org/packages/75/b4/4605e62a8e8702e75dce8a4d5a940ba1d944ed3321d8e3645a1c92b08a89/pboost-0.1.7.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "45c536f85daa02898c4ebfa450b170bf", "sha256": "dd0bea19b7b29f3934c3b5e60b9abff40e2669523acaed4d16751602c1abd32e" }, "downloads": -1, "filename": "pboost-0.1.8.tar.gz", "has_sig": false, "md5_digest": "45c536f85daa02898c4ebfa450b170bf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 946703, "upload_time": "2013-04-20T00:21:21", "url": "https://files.pythonhosted.org/packages/c4/b3/5de686a7cdb6a2d6087c283cf369ab64fae3ce5671238b8e7ed33eb20ad0/pboost-0.1.8.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "59db8c1e0fdebbd7d59ac004ba90bd68", "sha256": "b4344b62e279db2ef689b2d97661b62517928a3a64d7cf7515c14e3f81e21417" }, "downloads": -1, "filename": "pboost-0.2.0.tar.gz", "has_sig": false, "md5_digest": "59db8c1e0fdebbd7d59ac004ba90bd68", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 947494, "upload_time": "2013-04-20T03:22:15", "url": "https://files.pythonhosted.org/packages/3c/dc/0fff6f81b4bb2a8f56a20c4ff36c4ce186caa721434b2afdb306eb5ba5a3/pboost-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "3100ab8b3eabbccc3378faed4227f9c3", "sha256": "7f7eb7d1fa14111085257cd90c105db24d8fc2108194a972e359dec99f20ca5a" }, "downloads": -1, "filename": "pboost-0.2.1.tar.gz", "has_sig": false, "md5_digest": "3100ab8b3eabbccc3378faed4227f9c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 947563, "upload_time": "2013-04-20T19:28:18", "url": "https://files.pythonhosted.org/packages/69/24/c4a6dcc7e6c0ff7beea5649681876998f3abe3f247f7283bdb670e681f12/pboost-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "68dc7c23a831231038ac288a7930278f", "sha256": "2b5cd3385b91eaf2d3d8ff6df6c40581cb23944eac869c838f6a3980e3f031a6" }, "downloads": -1, "filename": "pboost-0.2.2.tar.gz", "has_sig": false, "md5_digest": "68dc7c23a831231038ac288a7930278f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 947563, "upload_time": "2013-04-25T18:14:54", "url": "https://files.pythonhosted.org/packages/d4/ba/30bcdaad6a92d70a2a9cbe402843d8cf0c86ec4f5a00858021ad8d64a55a/pboost-0.2.2.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "ffc82e7776ba91bfe09ef75dde2a3009", "sha256": "c5235ca41a4d72871bb6a6b133bf943ca7431eebe4eba7f6ba5fec66f5a5f880" }, "downloads": -1, "filename": "pboost-0.3.1.tar.gz", "has_sig": false, "md5_digest": "ffc82e7776ba91bfe09ef75dde2a3009", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 950508, "upload_time": "2013-05-03T18:22:34", "url": "https://files.pythonhosted.org/packages/79/7d/605a7cbc9d860165f6941ccac732c4cf82ec05299f76ceb5ec4796fe5ecb/pboost-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "71dd5f987fbcb41e3e5c9215a91d345f", "sha256": "27624bd72a5b89eb458905879646e3ee03e9d2ac094a748d32c846ef985e0c37" }, "downloads": -1, "filename": "pboost-0.3.2.tar.gz", "has_sig": false, "md5_digest": "71dd5f987fbcb41e3e5c9215a91d345f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 950597, "upload_time": "2013-05-11T20:51:40", "url": "https://files.pythonhosted.org/packages/57/83/00a907c0fe48a43fa1236ee1740ef82fd2887e8f4f2dd900bf98be77e97b/pboost-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "cb9659a928b143878c320fb296db2928", "sha256": "d6da6b0a8d92d788dcf4ec4ab459ab606a6008e763730df83d00089b1f82c829" }, "downloads": -1, "filename": "pboost-0.3.3.tar.gz", "has_sig": false, "md5_digest": "cb9659a928b143878c320fb296db2928", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 951506, "upload_time": "2013-05-13T20:41:56", "url": "https://files.pythonhosted.org/packages/34/5e/a7a3158b9f6c6ad868e5d2fe830f5ed410558df280b20417821fc00ce90b/pboost-0.3.3.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "425d615f609274883a0436295f1787f9", "sha256": "a9e76cc4cf7f346afdf4bcc3babc6b4e19875287b0edb515c0a50c8dfbff1a09" }, "downloads": -1, "filename": "pboost-0.4.0-py2.7.egg", "has_sig": false, "md5_digest": "425d615f609274883a0436295f1787f9", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 1022705, "upload_time": "2013-06-28T00:02:22", "url": "https://files.pythonhosted.org/packages/19/d5/f1236ca1d9b1837f75fa8b9659f6b3e1b40821f9cd154da04a71e638fbe3/pboost-0.4.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "52b65787a798bd05b313d7c1fca27b1c", "sha256": "35cd437df892977183767b04f716603acbffa191e87483b91a2bb112b8a05fae" }, "downloads": -1, "filename": "pboost-0.4.0.tar.gz", "has_sig": false, "md5_digest": "52b65787a798bd05b313d7c1fca27b1c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 953383, "upload_time": "2013-06-28T00:02:14", "url": "https://files.pythonhosted.org/packages/42/ca/84ad7341f9240ee322ed49e4ab563c86a6a6ab70326ae771ea62dd1a0d8f/pboost-0.4.0.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "0b963dcce65ae10d381760828338de0a", "sha256": "240641c86fc7eac151fa3425c17b9f1a58bc6e4f4e2eecf0c493a1100229376d" }, "downloads": -1, "filename": "pboost-0.4.2-py2.7.egg", "has_sig": false, "md5_digest": "0b963dcce65ae10d381760828338de0a", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 1022661, "upload_time": "2013-07-06T17:12:18", "url": "https://files.pythonhosted.org/packages/69/73/5f0ebb56590356edaf4d820697e397262fe0c5e09fd1c3ade64c5568e9a1/pboost-0.4.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "c2f0e1496487db5cf35f99ff491ae29a", "sha256": "fc839b35dd015c4775c2ff8ce0619b4e0b7f77e98d22f31091e085d7d44e1f4d" }, "downloads": -1, "filename": "pboost-0.4.2.tar.gz", "has_sig": false, "md5_digest": "c2f0e1496487db5cf35f99ff491ae29a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 953546, "upload_time": "2013-07-06T17:12:37", "url": "https://files.pythonhosted.org/packages/07/82/57cae9739ae7b3d6d14c02bdfe8b1e881d21d6ca8307631a6b6935aa16ec/pboost-0.4.2.tar.gz" } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "7b77ccb653d15d26a732b41f9765f47c", "sha256": "21bd04b56d1b0d0f239b5b2e4f1c286bb2f09e5ccd9d57a12118aecd9e1f4323" }, "downloads": -1, "filename": "pboost-0.4.3-py2.7.egg", "has_sig": false, "md5_digest": "7b77ccb653d15d26a732b41f9765f47c", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 1022920, "upload_time": "2013-07-26T17:21:09", "url": "https://files.pythonhosted.org/packages/0b/b7/7d8f539d20e8148977bb5eeaa336f9bcfb3424d2db60582acb3d78b35cfe/pboost-0.4.3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "16bc345e4183fda40130f31f231e4bc5", "sha256": "8b0f4dd194d9bcf26f161f480c8d94811cc8599da06232ef8725893f35a093fc" }, "downloads": -1, "filename": "pboost-0.4.3.tar.gz", "has_sig": false, "md5_digest": "16bc345e4183fda40130f31f231e4bc5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 953722, "upload_time": "2013-07-26T17:20:48", "url": "https://files.pythonhosted.org/packages/e3/c5/66c8dd1fcaf456136bb3efe7f6b5c5d651176a4f90a0107c6d59606ea3c4/pboost-0.4.3.tar.gz" } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "19db81d14684fd7b810b32f2cbbf09fd", "sha256": "bf6667ece7b4cdb872313f53b858ebf19f31e0d43663c1381c3c901a3a2950ed" }, "downloads": -1, "filename": "pboost-0.4.4-py2.7.egg", "has_sig": false, "md5_digest": "19db81d14684fd7b810b32f2cbbf09fd", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 1023127, "upload_time": "2013-07-27T02:39:48", "url": "https://files.pythonhosted.org/packages/50/11/7123b67e3a6fdb3ec87e15a9bc867b6f718561b7a77c5f30844c9c29bc17/pboost-0.4.4-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "152b037882873e0174f12bebcaac4bf4", "sha256": "5cf3dd6b49a691be21519413dca2d43ce78df6b8165cc5036b8751aef3d02d0f" }, "downloads": -1, "filename": "pboost-0.4.4.tar.gz", "has_sig": false, "md5_digest": "152b037882873e0174f12bebcaac4bf4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 953748, "upload_time": "2013-07-27T02:39:38", "url": "https://files.pythonhosted.org/packages/04/69/eca165cf365dc95884469b3c0efbebc7748c23ae79a92abe29f205eaab70/pboost-0.4.4.tar.gz" } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "62ec8b37869632cd0f1607514b985af7", "sha256": "54e0cbb963fb6852892dd00ab96287280e6f2fddf19c3c475c7224595a0f0f40" }, "downloads": -1, "filename": "pboost-0.4.5-py2.7.egg", "has_sig": false, "md5_digest": "62ec8b37869632cd0f1607514b985af7", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 1024186, "upload_time": "2014-03-11T04:54:54", "url": "https://files.pythonhosted.org/packages/00/c4/fbcfa6d6aea419f9a0d638d81dbff2779a2f631ecde50f207bea82d74de6/pboost-0.4.5-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "728ca1a5d7fe4815a5e167c04e8c56bf", "sha256": "f32e3fb53f4925db0ee6eaedb9d26fb338403c2d70d778c098ba5f6b50512e78" }, "downloads": -1, "filename": "pboost-0.4.5.tar.gz", "has_sig": false, "md5_digest": "728ca1a5d7fe4815a5e167c04e8c56bf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 954555, "upload_time": "2014-03-11T04:45:37", "url": "https://files.pythonhosted.org/packages/d9/af/032328e8713b5e01fca762b5fc2e17c9875869909113a008b99a28524b6a/pboost-0.4.5.tar.gz" } ], "0.4.6": [ { "comment_text": "", "digests": { "md5": "d43709bf1569e97495eedd710903462f", "sha256": "625f6a16544a3c1ebb55fb8a35dbbcf2cda7a56c73d66f06a9999b9b9bc77e3e" }, "downloads": -1, "filename": "pboost-0.4.6.tar.gz", "has_sig": false, "md5_digest": "d43709bf1569e97495eedd710903462f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36260, "upload_time": "2015-07-26T15:53:51", "url": "https://files.pythonhosted.org/packages/92/42/a6d0b60f4c2bbb6a08fd0db2cd0a354557b9f17adf349d3b13e1ad7e561b/pboost-0.4.6.tar.gz" } ], "0.5.1": [], "0.5.2": [ { "comment_text": "", "digests": { "md5": "dd18659cb540a08dcbbbb0593499b1c9", "sha256": "b7e1fb493f13b4b7038a247c805a1928591ea7fda1b0b8d0bc402c6b5b8f3be7" }, "downloads": -1, "filename": "pboost-0.5.2.tar.gz", "has_sig": false, "md5_digest": "dd18659cb540a08dcbbbb0593499b1c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50584, "upload_time": "2015-10-22T17:45:23", "url": "https://files.pythonhosted.org/packages/ca/ca/15e4cb1abec31780a6f7c3d809d930ec4d0f90fd40271fe2267f6496a8a9/pboost-0.5.2.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "86b073cb8eebe2594e21b61ef513a8db", "sha256": "f7524d4738d03d581c21f15b591c32a0c783e948509bd33b7e76f61e3ebf46bc" }, "downloads": -1, "filename": "pboost-0.5.3.tar.gz", "has_sig": false, "md5_digest": "86b073cb8eebe2594e21b61ef513a8db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50974, "upload_time": "2015-10-22T18:28:17", "url": "https://files.pythonhosted.org/packages/f0/92/14b4555dca3a03db1ee3ddaba85bc050aa317d970fbc179bc1a06072f522/pboost-0.5.3.tar.gz" } ], "0.5.4": [ { "comment_text": "", "digests": { "md5": "49eb528722af06cfd3036e3978216c8c", "sha256": "817f8fd7316d850413c55c5e078ed4ebfd4cb592f7837c0b45c84f89f27e6b98" }, "downloads": -1, "filename": "pboost-0.5.4.tar.gz", "has_sig": false, "md5_digest": "49eb528722af06cfd3036e3978216c8c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39321, "upload_time": "2016-02-26T16:04:36", "url": "https://files.pythonhosted.org/packages/f5/91/cd8515925774ee39651c6f70b45f090fd65c4034e14ef6cebce4f65b8f8b/pboost-0.5.4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "49eb528722af06cfd3036e3978216c8c", "sha256": "817f8fd7316d850413c55c5e078ed4ebfd4cb592f7837c0b45c84f89f27e6b98" }, "downloads": -1, "filename": "pboost-0.5.4.tar.gz", "has_sig": false, "md5_digest": "49eb528722af06cfd3036e3978216c8c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39321, "upload_time": "2016-02-26T16:04:36", "url": "https://files.pythonhosted.org/packages/f5/91/cd8515925774ee39651c6f70b45f090fd65c4034e14ef6cebce4f65b8f8b/pboost-0.5.4.tar.gz" } ] }