Blame view
README
807 Bytes
38179c31b Readme |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
Quaternion Convolutional Neural Network ===================== This repository contains code which reproduces experiments presented in the paper [link coming](link coming). Requirements ------------ Install requirements for computer vision experiments with pip: ``` pip install numpy Theano keras ``` or for the tensorflow backend (recommended) ``` pip install numpy tensorflow-gpu keras ``` Depending on your Python installation you might want to use anaconda or other tools. Experiments ----------- ### Computer vision 1. Run models: ``` python QCAE.py ``` Parameters can be modified directly in QCAE.py, such as: - Number of epochs - Batch Size - Size of the Training dataset - ... Citation -------- Please cite our work as ``` Incoming link ` |