Regularized Greedy Forest: A tree ensemble machine learning method described

Regularized Greedy Forest Regularized Greedy Forest (RGF) is a tree ensemble machine learning method described in this paper. RGF can deliver better results than gradient boosted decision trees (GBDT) on a number of datasets and it has been used to win a few Kaggle competitions. Unlike the traditional boosted decision tree approach, RGF works directly with the underlying forest structure. RGF integrates two ideas: one is to include tree-structured regularization into the learning formulation; and the other is to employ […]

Read more

Python package for Bayesian Machine Learning with scikit-learn API

Python package for Bayesian Machine Learning with scikit-learn API Installing & Upgrading package pip install https://github.com/AmazaspShumik/sklearn_bayes/archive/master.zip pip install –upgrade https://github.com/AmazaspShumik/sklearn_bayes/archive/master.zip Algorithms ARD Models Relevance Vector Regression (version 2.0) code, tutorial Relevance Vector Classifier (version 2.0) code, tutorial Type II Maximum Likelihood ARD Linear Regression code Type II Maximum Likelihood ARD Logistic Regression code, tutorial Variational Relevance Vector Regression

Read more

Simple machine learning library In Python

Simple machine learning library / 簡單易用的機器學習套件 Installation Tutorial Algorithm Perceptron Perceptron Binary Classification Learning Algorithm Perceptron Multi Classification Learning Algorithm Pocket Perceptron Binary Classification Learning Algorithm Pocket Perceptron Multi Classification Learning Algorithm Regression Linear Regression Learning Algorithm Linear Regression Binary Classification Learning Algorithm Linear Regression Multi Classification Learning Algorithm Ridge Regression Learning Algorithm Ridge Regression Binary Classification Learning Algorithm Ridge Regression Multi Classification Learning Algorithm Kernel Ridge Regression Learning Algorithm Kernel Ridge Regression Binary Classification    

Read more

A web-based application for quick, scalable, and automated hyperparameter tuning in Python

Xcessiv is a tool to help you create the biggest, craziest, and most excessive stacked ensembles you can think of. Stacked ensembles are simple in theory. You combine the predictions of smaller models and feed those into another model. However, in practice, implementing them can be a major headache. Xcessiv holds your hand through all the implementation details of creating and optimizing stacked ensembles so you’re free to fully define only the things you care about. The Xcessiv process Define […]

Read more

A python framework for interaction with time series data

Machine Learning and Data Analytics Graphical User Interface The current version is not stable and might crash unexpectedly! What is it? The MaD GUI is a framework for processing time series data. Its use-cases include visualization, annotation (manual or automated), and algorithmic processing of visualized data and annotations. How do I use it? By clicking on the images below, you will be redirected to YouTube. In case you want to follow along on your own machine, check out the section […]

Read more

An open source platform that facilitates the creation, sharing, and collaborative use of geospatial data

GeoNode GeoNode is a geospatial content management system, a platform for the management and publication of geospatial data. It brings together mature and stable open-source software projects under a consistent and easy-to-use interface allowing non-specialized users to share data and create interactive maps. Data management tools built into GeoNode allow for integrated creation of data, metadata, and map visualization. Each dataset in the system can be shared publicly or restricted to allow access to only specific users. Social features like […]

Read more

Python’s missing debug print command and other development tools

Python’s missing debug print command and other development tools. For more information, see documentation. Install Just pip install devtools[pygments] pygments is not required but if it’s installed, output will be highlighted and easier to read. devtools has no other required dependencies except python 3.6, 3.7, or 3.8.If you’ve got python 3.6+ and pip installed, you’re good to go. Usage from devtools import debug whatever = [1, 2, 3] debug(whatever) Outputs: test.py:4 : whatever: [1, 2, 3] (list) That’s only the […]

Read more

Python library for the iM282A LoRa radio module based on Semtech SX1280 transceiver

This library allows to communicate with iM282A Radio (LoRa/FLRC/FSK) modules using vendor specific HCI messages and the WiMOD LR BASE+ proprietary firmware. Currently only TCP serial socket communication is supported. SensorApp endpoint is not supported (in firmware embedded sensor example application)! Feel free to open an issue if it’s needed. Most length limitations are not enforced or validated – make sure to read the corresponding vendor documentation of the firmware and module. Install python -m pip install im282a Usage Example […]

Read more

Real-time analysis of intracranial neurophysiology recordings

py_neuromodulation The py_neuromodulation toolbox allows for real time capable processing of multimodal electrophysiological data. The primary use is movement prediction for adaptive deep brain stimulation. Find the documentation here https://neuromodulation.github.io/py_neuromodulation/ for example usage and parametrization. Setup For running this toolbox first create a new virtual conda environment: conda env create –file=env.yml –user The main modules include running real time enabled feature preprocessing based on iEEG BIDS data. Different features can be enabled/disabled and parametrized in the `https://github.com/neuromodulation/py_neuromodulation/blob/main/pyneuromodulation/nm_settings.json>`_. The current implementation […]

Read more
1 483 484 485 486 487 928