资源算法aorun

aorun

2019-10-09 | |  97 |   0 |   0

Getting started

Here is a simple regression example:

from aorun.models import Modelfrom 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.


上一篇:torch-sampling

下一篇:mlogger

用户评价
全部评价

热门资源

  • Keras-ResNeXt

    Keras ResNeXt Implementation of ResNeXt models...

  • seetafaceJNI

    项目介绍 基于中科院seetaface2进行封装的JAVA...

  • spark-corenlp

    This package wraps Stanford CoreNLP annotators ...

  • capsnet-with-caps...

    CapsNet with capsule-wise convolution Project ...

  • inferno-boilerplate

    This is a very basic boilerplate example for pe...