Articles About Machine Learning

PHOTONAI – A high level python API for designing and optimizing machine learning pipelines

PHOTONAI is a high level python API for designing and optimizing machine learning pipelines. We’ve created a system in which you can easily select and combine both pre-processing and learning algorithms fromstate-of-the-art machine learning toolboxes,and arrange them in simple or parallel pipeline data streams. In addition, you can parametrize your training and testingworkflow choosing cross-validation schemes, performance metrics and hyperparameteroptimization metrics from a list of pre-registered options. Importantly, you can integrate custom solutions into your data processing pipeline,but also for […]

Read more

Meta Learning Backpropagation And Improving It (VSML)

This is research code for the NeurIPS 2021 publication Kirsch & Schmidhuber 2021. Many concepts have been proposed for meta learning with neural networks (NNs), e.g., NNs that learn to reprogram fast weights, Hebbian plasticity, learned learning rules, and meta recurrent NNs. Our Variable Shared Meta Learning (VSML) unifies the above and demonstrates that simple weight-sharing and sparsity in an NN is sufficient to express powerful learning algorithms (LAs) in a reusable fashion. A simple implementation of VSML where the […]

Read more

Invariant Causal Imitation Learning for Generalizable Policies

Ioana Bica, Daniel Jarrett, Mihaela van der Schaar Neural Information Processing Systems (NeurIPS) 2021 Dependencies The code was implemented in Python 3.6 and the following packages are needed for running it: gym==0.17.2 numpy==1.18.2 pandas==1.0.4 tensorflow==1.15.0 torch==1.6.0 tqdm==4.32.1 scipy==1.1.0 scikit-learn==0.22.2 stable-baselines==2.10.1 Running and evaluating the model: The control tasks used for experiments are from OpenAI gym [1]. Each control task is associated with a true rewardfunction (unknown to the imitation algorithm). In each case, the “expert” demonstrator can be obtained by […]

Read more

Predictive maintenance study for Complex case study

This project was part of my Master’s degree Thesis at Sharif university of Technology A risk assessment study and repair time proposal has been performed for a very sensitive and complex process unit. I put parts of the project here. Predictive maintenance study for Complex case study. we’ve obtained failure causes was basically an operation fault and more basically plant conceptual design Error. Obviously, the use of code and content needs to cite the source. For more you can check […]

Read more

Putting a Machine Learning Model into Production with Flask and Heroku

La creación de un proyecto de aprendizaje automático en un jupyter notebook ejecutaándose en local para unos datos de entrada controlados es una cosa, pero implementar el modelo como una aplicación web y su posterior puesta en producción como servicio para usuarios en la red es otra cosa muy distinta. Para que un producto basado en el aprendizaje automático tenga éxito, es necesario crear servicios que otros equipos puedan usar o un producto donde los usuarios puedan interactuar. Para ello, […]

Read more

The reference baseline of final exam for XMU machine learning course

The baseline is a reference method for the final exam of machine learning course. Requirements Installation we use /python3.7 /torch 1.4.0+cpu /torchvision 0.5.0+cpu for training and evaluation. You can install the pytorch1.4.0 by using this. conda install pytorch==1.4.0 torchvision==0.5.0 cpuonly -c pytorch By the way, you can also use the pytorch with cuda to train this baseline. Prepare Datasets You need to create the ./data/ folder and put the ./mini_nico/train and ./mini_nico/test in Mini-NICO dataset to the ./data/ directory like

Read more

ONNX Runtime: cross-platform, high performance ML inferencing and training accelerator

ONNX Runtime is a cross-platform inference and training machine-learning accelerator. ONNX Runtime inference can enable faster customer experiences and lower costs, supporting models from deep learning frameworks such as PyTorch and TensorFlow/Keras as well as classical machine learning libraries such as scikit-learn, LightGBM, XGBoost, etc. ONNX Runtime is compatible with different hardware, drivers, and operating systems, and provides optimal performance by leveraging hardware accelerators where applicable alongside graph optimizations and transforms. Learn more → ONNX Runtime training can accelerate the […]

Read more

Learning from Guided Play: A Scheduled Hierarchical Approach for Improving Exploration in Adversarial Imitation Learning

Trevor Ablett*, Bryan Chan*, Jonathan Kelly (*equal contribution) Poster at Neurips 2021 Deep Reinforcement Learning Workshop Adversarial Imitation Learning (AIL) is a technique for learning from demonstrations that helps remedy the distribution shift problem that occurs with Behavioural Cloning. Empirically, we found that for manipulation tasks, off-policy AIL can suffer from inefficient or stagnated learning. In this work, we resolve this by enforcing exploration of a set of easy-to-define auxiliary tasks, in addition to a main task. This repository contains […]

Read more

Robbing the FED: Directly Obtaining Private Data in Federated Learning with Modified Models

This repo contains a barebones implementation for the attack detailed in the paper: Fowl L, Geiping J, Czaja W, Goldblum M, Goldstein T. Robbing the Fed: Directly Obtaining Private Data in Federated Learning with Modified Models. arXiv preprint arXiv:2110.13057. 2021 Oct 25. Left: batch of 64 ImageNet images. Right: Images reconstructed with imprint module containing 128 bins placed in front of a ResNet-18. Average PSNR: 70.94. Abstract: Federated learning has quickly gained popularity with its promises of increaseduser privacy   […]

Read more
1 41 42 43 44 45 226