├── .gitignore ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── README.rst ├── cerebrum ├── __init__.py ├── crossmodal │ ├── __init__.py │ ├── mapper.py │ └── utilities.py ├── emotion │ └── .gitkeep ├── hearing │ ├── __init__.py │ ├── developmentExamples │ │ ├── pyaudio-record.py │ │ ├── pyaudio-wire-callback.py │ │ └── pyaudio-wire.py │ ├── perception.py │ └── utilities.py ├── language │ ├── __init__.py │ ├── analysis.py │ ├── dictionaries │ │ └── en │ │ │ ├── cmudict-0.7b.phones.txt │ │ │ ├── cmudict-0.7b.symbols.txt │ │ │ └── cmudict-0.7b.txt │ └── utilities.py ├── multisensorial │ └── .gitkeep ├── neuralnet │ ├── ELM.jl │ ├── __init__.py │ ├── developmentExamples │ │ ├── neurolab-newelm.py │ │ ├── neurolab-newhem.py │ │ ├── neurolab-newhop.py │ │ └── pybrain-lstm.py │ ├── elements │ │ ├── __init__.py │ │ ├── neuron.jl │ │ ├── neuron.py │ │ └── rbm.py │ ├── utilities.py │ └── weaver.py ├── remove_database.py └── vision │ ├── __init__.py │ ├── developmentExamples │ ├── opencv-capture.py │ ├── opencv-meanshift.py │ ├── opencv-motion-detector.py │ ├── opencv-optical-flow.py │ └── opencv-record.py │ ├── perception.py │ └── utilities.py ├── docs └── img │ ├── areas-of-memory.jpg │ ├── boltzman-example.png │ ├── classification.jpg │ ├── connectedness-of-brain.png │ ├── elm.jpg │ ├── hebbian.jpg │ ├── hopfield-net.png │ ├── markov-random-field.png │ ├── regression.png │ ├── rethinkdb.png │ ├── screenshot.png │ └── webui.png ├── setup.cfg ├── setup.py └── trainingData ├── .gitkeep └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/README.rst -------------------------------------------------------------------------------- /cerebrum/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/cerebrum/__init__.py -------------------------------------------------------------------------------- /cerebrum/crossmodal/__init__.py: -------------------------------------------------------------------------------- 1 | from cerebrum.crossmodal.mapper import * 2 | -------------------------------------------------------------------------------- /cerebrum/crossmodal/mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/cerebrum/crossmodal/mapper.py -------------------------------------------------------------------------------- /cerebrum/crossmodal/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/cerebrum/crossmodal/utilities.py -------------------------------------------------------------------------------- /cerebrum/emotion/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cerebrum/hearing/__init__.py: -------------------------------------------------------------------------------- 1 | from cerebrum.hearing.perception import * 2 | -------------------------------------------------------------------------------- /cerebrum/hearing/developmentExamples/pyaudio-record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/cerebrum/hearing/developmentExamples/pyaudio-record.py -------------------------------------------------------------------------------- /cerebrum/hearing/developmentExamples/pyaudio-wire-callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/cerebrum/hearing/developmentExamples/pyaudio-wire-callback.py -------------------------------------------------------------------------------- /cerebrum/hearing/developmentExamples/pyaudio-wire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/cerebrum/hearing/developmentExamples/pyaudio-wire.py -------------------------------------------------------------------------------- /cerebrum/hearing/perception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/cerebrum/hearing/perception.py -------------------------------------------------------------------------------- /cerebrum/hearing/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/cerebrum/hearing/utilities.py -------------------------------------------------------------------------------- /cerebrum/language/__init__.py: -------------------------------------------------------------------------------- 1 | from cerebrum.language.analysis import * 2 | -------------------------------------------------------------------------------- /cerebrum/language/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/cerebrum/language/analysis.py -------------------------------------------------------------------------------- /cerebrum/language/dictionaries/en/cmudict-0.7b.phones.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/cerebrum/language/dictionaries/en/cmudict-0.7b.phones.txt -------------------------------------------------------------------------------- /cerebrum/language/dictionaries/en/cmudict-0.7b.symbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/cerebrum/language/dictionaries/en/cmudict-0.7b.symbols.txt -------------------------------------------------------------------------------- /cerebrum/language/dictionaries/en/cmudict-0.7b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/cerebrum/language/dictionaries/en/cmudict-0.7b.txt -------------------------------------------------------------------------------- /cerebrum/language/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/cerebrum/language/utilities.py -------------------------------------------------------------------------------- /cerebrum/multisensorial/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cerebrum/neuralnet/ELM.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/cerebrum/neuralnet/ELM.jl -------------------------------------------------------------------------------- /cerebrum/neuralnet/__init__.py: -------------------------------------------------------------------------------- 1 | from cerebrum.neuralnet.weaver import * 2 | -------------------------------------------------------------------------------- /cerebrum/neuralnet/developmentExamples/neurolab-newelm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/cerebrum/neuralnet/developmentExamples/neurolab-newelm.py -------------------------------------------------------------------------------- /cerebrum/neuralnet/developmentExamples/neurolab-newhem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/cerebrum/neuralnet/developmentExamples/neurolab-newhem.py -------------------------------------------------------------------------------- /cerebrum/neuralnet/developmentExamples/neurolab-newhop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/cerebrum/neuralnet/developmentExamples/neurolab-newhop.py -------------------------------------------------------------------------------- /cerebrum/neuralnet/developmentExamples/pybrain-lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/cerebrum/neuralnet/developmentExamples/pybrain-lstm.py -------------------------------------------------------------------------------- /cerebrum/neuralnet/elements/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cerebrum/neuralnet/elements/neuron.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/cerebrum/neuralnet/elements/neuron.jl -------------------------------------------------------------------------------- /cerebrum/neuralnet/elements/neuron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/cerebrum/neuralnet/elements/neuron.py -------------------------------------------------------------------------------- /cerebrum/neuralnet/elements/rbm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/cerebrum/neuralnet/elements/rbm.py -------------------------------------------------------------------------------- /cerebrum/neuralnet/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/cerebrum/neuralnet/utilities.py -------------------------------------------------------------------------------- /cerebrum/neuralnet/weaver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/cerebrum/neuralnet/weaver.py -------------------------------------------------------------------------------- /cerebrum/remove_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/cerebrum/remove_database.py -------------------------------------------------------------------------------- /cerebrum/vision/__init__.py: -------------------------------------------------------------------------------- 1 | from cerebrum.vision.perception import * 2 | -------------------------------------------------------------------------------- /cerebrum/vision/developmentExamples/opencv-capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/cerebrum/vision/developmentExamples/opencv-capture.py -------------------------------------------------------------------------------- /cerebrum/vision/developmentExamples/opencv-meanshift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/cerebrum/vision/developmentExamples/opencv-meanshift.py -------------------------------------------------------------------------------- /cerebrum/vision/developmentExamples/opencv-motion-detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/cerebrum/vision/developmentExamples/opencv-motion-detector.py -------------------------------------------------------------------------------- /cerebrum/vision/developmentExamples/opencv-optical-flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/cerebrum/vision/developmentExamples/opencv-optical-flow.py -------------------------------------------------------------------------------- /cerebrum/vision/developmentExamples/opencv-record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/cerebrum/vision/developmentExamples/opencv-record.py -------------------------------------------------------------------------------- /cerebrum/vision/perception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/cerebrum/vision/perception.py -------------------------------------------------------------------------------- /cerebrum/vision/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/cerebrum/vision/utilities.py -------------------------------------------------------------------------------- /docs/img/areas-of-memory.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/docs/img/areas-of-memory.jpg -------------------------------------------------------------------------------- /docs/img/boltzman-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/docs/img/boltzman-example.png -------------------------------------------------------------------------------- /docs/img/classification.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/docs/img/classification.jpg -------------------------------------------------------------------------------- /docs/img/connectedness-of-brain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/docs/img/connectedness-of-brain.png -------------------------------------------------------------------------------- /docs/img/elm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/docs/img/elm.jpg -------------------------------------------------------------------------------- /docs/img/hebbian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/docs/img/hebbian.jpg -------------------------------------------------------------------------------- /docs/img/hopfield-net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/docs/img/hopfield-net.png -------------------------------------------------------------------------------- /docs/img/markov-random-field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/docs/img/markov-random-field.png -------------------------------------------------------------------------------- /docs/img/regression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/docs/img/regression.png -------------------------------------------------------------------------------- /docs/img/rethinkdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/docs/img/rethinkdb.png -------------------------------------------------------------------------------- /docs/img/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/docs/img/screenshot.png -------------------------------------------------------------------------------- /docs/img/webui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/docs/img/webui.png -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/setup.py -------------------------------------------------------------------------------- /trainingData/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trainingData/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DragonComputer/Cerebrum/HEAD/trainingData/README.md --------------------------------------------------------------------------------