-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.txt
42 lines (31 loc) · 1.06 KB
/
README.txt
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
# README
Some file and methods names:
TNNF - Tiny Neural Net Framework (All files and classes)
Online auto-generated docs: http://tnnf.readthedocs.org/en/latest/index.html
Features:
+ feedforward neural nets
+ lstm neural nets
+ maxout
+ softmax
+ sigmoid
+ dropout
+ unsupervised feature learning and deep learning
+ saving and loading models
+ rmsProp
+ rProp
+ minibatches
+ PCA whitening
+ convolution
Files:
fTheanoNNclassCORE.py - main theano neural net class
fSimpleTest.py - simple tests for framework methods and functions
fSimpleExperiments.py - file for different trash experiments with framework
fGraphBuilder.py - methods for building graphic, such as "train error" or "cv error"
fDataWorkerCORE.py - all data manipulation methods
fCutClassCORE.py - methods which could be usefuul for working with images (can cut them for squares etc.)
###
For using test or examples you may need MNIST dataset which not contained in repo.
U can download it here:
http://yann.lecun.com/exdb/mnist/ - original
http://www.pjreddie.com/projects/mnist-in-csv/ - in csv format
###