All Projects → ramon-oliveira → Aorun

ramon-oliveira / Aorun

Licence: mit
Deep Learning over PyTorch

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Aorun

Speechbrain.github.io
The SpeechBrain project aims to build a novel speech toolkit fully based on PyTorch. With SpeechBrain users can easily create speech processing systems, ranging from speech recognition (both HMM/DNN and end-to-end), speaker recognition, speech enhancement, speech separation, multi-microphone speech processing, and many others.
Stars: ✭ 242 (+296.72%)
Mutual labels:  neural-networks, deeplearning
Bayesian Analysis Recipes
A collection of Bayesian data analysis recipes using PyMC3
Stars: ✭ 479 (+685.25%)
Mutual labels:  neural-networks, bayesian-inference
Deeplearning.ai Assignments
Stars: ✭ 268 (+339.34%)
Mutual labels:  neural-networks, deeplearning
Fixy
Amacımız Türkçe NLP literatüründeki birçok farklı sorunu bir arada çözebilen, eşsiz yaklaşımlar öne süren ve literatürdeki çalışmaların eksiklerini gideren open source bir yazım destekleyicisi/denetleyicisi oluşturmak. Kullanıcıların yazdıkları metinlerdeki yazım yanlışlarını derin öğrenme yaklaşımıyla çözüp aynı zamanda metinlerde anlamsal analizi de gerçekleştirerek bu bağlamda ortaya çıkan yanlışları da fark edip düzeltebilmek.
Stars: ✭ 165 (+170.49%)
Mutual labels:  neural-networks, deeplearning
Basic reinforcement learning
An introductory series to Reinforcement Learning (RL) with comprehensive step-by-step tutorials.
Stars: ✭ 826 (+1254.1%)
Mutual labels:  neural-networks, deeplearning
Awesome Deep Learning Music
List of articles related to deep learning applied to music
Stars: ✭ 2,195 (+3498.36%)
Mutual labels:  neural-networks, deeplearning
Introtodeeplearning
Lab Materials for MIT 6.S191: Introduction to Deep Learning
Stars: ✭ 4,955 (+8022.95%)
Mutual labels:  neural-networks, deeplearning
Paddlex
PaddlePaddle End-to-End Development Toolkit(『飞桨』深度学习全流程开发工具)
Stars: ✭ 3,399 (+5472.13%)
Mutual labels:  neural-networks, deeplearning
Quickdraw
Implementation of Quickdraw - an online game developed by Google
Stars: ✭ 805 (+1219.67%)
Mutual labels:  neural-networks, deeplearning
Deepfacelab
DeepFaceLab is the leading software for creating deepfakes.
Stars: ✭ 30,308 (+49585.25%)
Mutual labels:  neural-networks, deeplearning
Libra
Ergonomic machine learning for everyone.
Stars: ✭ 1,925 (+3055.74%)
Mutual labels:  neural-networks, deeplearning
Bidaf Keras
Bidirectional Attention Flow for Machine Comprehension implemented in Keras 2
Stars: ✭ 60 (-1.64%)
Mutual labels:  neural-networks, deeplearning
Ensemble Pytorch
A unified ensemble framework for Pytorch to improve the performance and robustness of your deep learning model
Stars: ✭ 153 (+150.82%)
Mutual labels:  neural-networks, deeplearning
Kerasdeepspeech
A Keras CTC implementation of Baidu's DeepSpeech for model experimentation
Stars: ✭ 245 (+301.64%)
Mutual labels:  neural-networks, deeplearning
Machine Learning Tutorials
machine learning and deep learning tutorials, articles and other resources
Stars: ✭ 11,692 (+19067.21%)
Mutual labels:  neural-networks, deeplearning
Deep Learning Resources
由淺入深的深度學習資源 Collection of deep learning materials for everyone
Stars: ✭ 422 (+591.8%)
Mutual labels:  neural-networks, deeplearning
A Nice Mc
Code for "A-NICE-MC: Adversarial Training for MCMC"
Stars: ✭ 115 (+88.52%)
Mutual labels:  neural-networks, bayesian-inference
Fasttext.js
FastText for Node.js
Stars: ✭ 127 (+108.2%)
Mutual labels:  neural-networks, deeplearning
Learn Data Science For Free
This repositary is a combination of different resources lying scattered all over the internet. The reason for making such an repositary is to combine all the valuable resources in a sequential manner, so that it helps every beginners who are in a search of free and structured learning resource for Data Science. For Constant Updates Follow me in …
Stars: ✭ 4,757 (+7698.36%)
Mutual labels:  neural-networks, deeplearning
Artificialintelligenceengines
Computer code collated for use with Artificial Intelligence Engines book by JV Stone
Stars: ✭ 35 (-42.62%)
Mutual labels:  neural-networks, deeplearning

Aorun: Deep Learning over PyTorch

build coverage Code Climate python license

Aorun intend to implement an API similar to Keras with PyTorch as backend.

Getting started

Here is a simple regression example:

from aorun.models import Model
from aorun.layers import Dense, Activation

model = Model()
model.add(Dense(10, input_dim=3))
model.add(Activation('relu'))
model.add(Dense(1))

model.fit(X_train, y_train, loss='mse', optimizer='adam')

y_pred = model.predict(X_test)

Install

First of all, it's import to mention that this project is develop with Python 3.5+ in mind. I do not recommend using Aorun with older versions.

As prerequisite, you have to install the latest stable version of PyTorch

Then you can install aorun as any other python package, with pip:

$ pip install aorun

Why Aorun?

Aorun is a Dinosaur. Dinosaurs are cool.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].