├── .gitignore ├── .gitmodules ├── CifarExperimentReadme.txt ├── Destin ├── .gitignore ├── Bindings │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Java │ │ ├── .gitignore │ │ ├── BUILDING_JavaDeSTIN.txt │ │ ├── CMakeLists.txt │ │ ├── build.xml │ │ ├── gen_src │ │ │ ├── .gitignore │ │ │ ├── README.txt │ │ │ └── javadestin │ │ │ │ └── .gitignore │ │ ├── java_build.sh │ │ ├── java_run.sh │ │ ├── lib │ │ │ ├── CopyLibs │ │ │ │ └── org-netbeans-modules-java-j2seproject-copylibstask.jar │ │ │ └── nblibraries.properties │ │ ├── manifest.mf │ │ ├── nbproject │ │ │ ├── .gitignore │ │ │ ├── build-impl.xml │ │ │ ├── genfiles.properties │ │ │ ├── project.properties │ │ │ └── project.xml │ │ ├── src │ │ │ ├── callbacks │ │ │ │ ├── BeliefGraphCallback.java │ │ │ │ └── FPSCallback.java │ │ │ └── javadestin │ │ │ │ ├── Dashboard.form │ │ │ │ ├── Dashboard.java │ │ │ │ ├── IExperiment.java │ │ │ │ ├── INetworkFactory.java │ │ │ │ ├── IPresentor.java │ │ │ │ ├── ISource.java │ │ │ │ ├── NetworkAlt.java │ │ │ │ ├── NetworkConfig.java │ │ │ │ ├── NetworkFactory.java │ │ │ │ ├── Util.java │ │ │ │ ├── VidSource.java │ │ │ │ ├── VideoExperiment.java │ │ │ │ └── VideoPresentor.java │ │ └── swig_destin_java.i │ ├── Python │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── SimpleMovingAverage.py │ │ ├── charting.py │ │ ├── cifar_experiment.py │ │ ├── cifar_experiment_config.py │ │ ├── cifar_experiment_runs │ │ │ └── .gitignore │ │ ├── color_4.avi │ │ ├── common.py │ │ ├── czt_mod.py │ │ ├── czt_test1.py │ │ ├── dostuff.py │ │ ├── hand.m4v │ │ ├── heirarchy_builder.py │ │ ├── letters_experiment.py │ │ ├── letters_experiment_run.sh │ │ ├── moving_square.avi │ │ ├── object_tracking.py │ │ ├── object_tracking_config.py │ │ ├── pylist.i │ │ ├── som.py │ │ ├── swig_destin_python.i │ │ ├── test.py │ │ ├── test.sh │ │ ├── tree_mining_experiment.py │ │ └── waffles_scripts │ │ │ ├── .gitignore │ │ │ ├── do_run.sh │ │ │ ├── setup_run.sh │ │ │ └── template │ │ │ ├── convert.sh │ │ │ ├── test.sh │ │ │ ├── train_baseline.sh │ │ │ └── train_test.sh │ └── swig_destin_common.i ├── CMakeLists.txt ├── Common │ ├── .gitignore │ ├── BeliefExporter.h │ ├── CMakeLists.txt │ ├── CifarSource.h │ ├── CztMod.h │ ├── DestinIterationFinishedCallback.h │ ├── DestinNetworkAlt.cpp │ ├── DestinNetworkAlt.h │ ├── DestinTreeManager.cpp │ ├── DestinTreeManager.h │ ├── INetwork.h │ ├── ImageSourceBase.h │ ├── ImageSourceImpl.h │ ├── TestCifar.cpp │ ├── TestDestinNetworkAlt.cpp │ ├── Transporter.h │ ├── VideoSource.cpp │ ├── VideoSource.h │ ├── VideoWriter.cpp │ ├── VideoWriter.h │ └── unit_test.h ├── Data │ └── .gitignore ├── DavisDestin │ ├── .gitignore │ ├── CMakeLists.txt │ ├── README │ ├── include │ │ ├── array.h │ │ ├── belief_transform.h │ │ ├── cent_image_gen.h │ │ ├── centroid.h │ │ ├── destin.h │ │ ├── destin_wrapper.h │ │ ├── learn_strats.h │ │ ├── macros.h │ │ └── node.h │ ├── mnist │ │ ├── .gitignore │ │ ├── CONFIG.txt │ │ ├── config_16 │ │ ├── config_32 │ │ ├── destin_mnist_16.sh │ │ ├── destin_mnist_32.sh │ │ ├── generate_mnist_set_16.m │ │ ├── generate_mnist_set_32.m │ │ ├── generate_mnist_sets.sh │ │ ├── loadMNISTImages.m │ │ └── loadMNISTLabels.m │ ├── run_test.sh │ ├── src │ │ ├── array.c │ │ ├── belief_transform.c │ │ ├── cent_image_gen.c │ │ ├── centroid.c │ │ ├── destin.c │ │ ├── destin_mnist.c │ │ ├── learn_strats.c │ │ ├── node.c │ │ ├── util.c │ │ └── visualize.c │ └── tests │ │ ├── .gitignore │ │ ├── test.c │ │ └── testconfig.conf ├── DrentheDestin │ ├── .gitignore │ ├── AdviceData.cu │ ├── AdviceData.h │ ├── CMakeLists.txt │ ├── CurandGeneratorWrapper.h │ ├── DestinCuda.cu │ ├── DestinCuda.h │ ├── DestinData.cu │ ├── DestinData.h │ ├── DestinKernel.cu │ ├── DestinKernel.h │ ├── INSTALL.txt │ ├── config.xml │ ├── debug_run.sh │ ├── log.txt │ ├── pugixml │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── pugiconfig.hpp │ │ ├── pugixml.cpp │ │ └── pugixml.hpp │ └── simpleRun.sh ├── Misc │ ├── .gitignore │ ├── ABCD.avi │ ├── CMakeLists.txt │ ├── TestVideo.cpp │ ├── Various.avi │ └── WebcamExperiment.cpp ├── SOM │ ├── .gitignore │ ├── CMakeLists.txt │ ├── ClusterSom.h │ ├── ISom.h │ ├── SomPresentor.h │ └── TestSom.cpp ├── TreeMining │ ├── .gitignore │ ├── CMOrderedTreeMiner │ │ ├── .gitignore │ │ ├── CMOrderedTreeMiner.cpp │ │ ├── CMRmisc.h │ │ ├── CMakeLists.txt │ │ ├── OccList.cpp │ │ ├── OccList.h │ │ ├── OccLongList.cpp │ │ ├── OccLongList.h │ │ ├── PatternTree.h │ │ ├── README │ │ ├── TextTree.cpp │ │ ├── TextTree.h │ │ └── example_rooted_ordered.txt │ ├── CMOrderedTreeMinerWrapper.cpp │ ├── CMOrderedTreeMinerWrapper.h │ ├── CMakeLists.txt │ └── TestTreeMiner.cpp ├── create_ctags.sh ├── czt_test │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Various.avi │ ├── WebcamExp1.cpp │ ├── calibration.dat │ ├── include │ │ ├── stereocamera.h │ │ └── stereovision.h │ └── src │ │ ├── stereocamera.cpp │ │ ├── stereovision.cpp │ │ └── test1.cpp ├── mingw_run_test.bat └── run_tests.sh ├── Diary.md ├── Dockerfile ├── LICENSE ├── README.md ├── WindowsBuild.md └── doc ├── DebuggingPython.txt └── NodeObservationFormat.txt /.gitignore: -------------------------------------------------------------------------------- 1 | Destin-build/ 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/.gitmodules -------------------------------------------------------------------------------- /CifarExperimentReadme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/CifarExperimentReadme.txt -------------------------------------------------------------------------------- /Destin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/.gitignore -------------------------------------------------------------------------------- /Destin/Bindings/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | dist/* 3 | -------------------------------------------------------------------------------- /Destin/Bindings/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/CMakeLists.txt -------------------------------------------------------------------------------- /Destin/Bindings/Java/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Java/.gitignore -------------------------------------------------------------------------------- /Destin/Bindings/Java/BUILDING_JavaDeSTIN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Java/BUILDING_JavaDeSTIN.txt -------------------------------------------------------------------------------- /Destin/Bindings/Java/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Java/CMakeLists.txt -------------------------------------------------------------------------------- /Destin/Bindings/Java/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Java/build.xml -------------------------------------------------------------------------------- /Destin/Bindings/Java/gen_src/.gitignore: -------------------------------------------------------------------------------- 1 | *.java 2 | -------------------------------------------------------------------------------- /Destin/Bindings/Java/gen_src/README.txt: -------------------------------------------------------------------------------- 1 | This directory contains SWIG generated source files. Do not edit. 2 | -------------------------------------------------------------------------------- /Destin/Bindings/Java/gen_src/javadestin/.gitignore: -------------------------------------------------------------------------------- 1 | *.java 2 | -------------------------------------------------------------------------------- /Destin/Bindings/Java/java_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Java/java_build.sh -------------------------------------------------------------------------------- /Destin/Bindings/Java/java_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Java/java_run.sh -------------------------------------------------------------------------------- /Destin/Bindings/Java/lib/CopyLibs/org-netbeans-modules-java-j2seproject-copylibstask.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Java/lib/CopyLibs/org-netbeans-modules-java-j2seproject-copylibstask.jar -------------------------------------------------------------------------------- /Destin/Bindings/Java/lib/nblibraries.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Java/lib/nblibraries.properties -------------------------------------------------------------------------------- /Destin/Bindings/Java/manifest.mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Java/manifest.mf -------------------------------------------------------------------------------- /Destin/Bindings/Java/nbproject/.gitignore: -------------------------------------------------------------------------------- 1 | private 2 | -------------------------------------------------------------------------------- /Destin/Bindings/Java/nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Java/nbproject/build-impl.xml -------------------------------------------------------------------------------- /Destin/Bindings/Java/nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Java/nbproject/genfiles.properties -------------------------------------------------------------------------------- /Destin/Bindings/Java/nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Java/nbproject/project.properties -------------------------------------------------------------------------------- /Destin/Bindings/Java/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Java/nbproject/project.xml -------------------------------------------------------------------------------- /Destin/Bindings/Java/src/callbacks/BeliefGraphCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Java/src/callbacks/BeliefGraphCallback.java -------------------------------------------------------------------------------- /Destin/Bindings/Java/src/callbacks/FPSCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Java/src/callbacks/FPSCallback.java -------------------------------------------------------------------------------- /Destin/Bindings/Java/src/javadestin/Dashboard.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Java/src/javadestin/Dashboard.form -------------------------------------------------------------------------------- /Destin/Bindings/Java/src/javadestin/Dashboard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Java/src/javadestin/Dashboard.java -------------------------------------------------------------------------------- /Destin/Bindings/Java/src/javadestin/IExperiment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Java/src/javadestin/IExperiment.java -------------------------------------------------------------------------------- /Destin/Bindings/Java/src/javadestin/INetworkFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Java/src/javadestin/INetworkFactory.java -------------------------------------------------------------------------------- /Destin/Bindings/Java/src/javadestin/IPresentor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Java/src/javadestin/IPresentor.java -------------------------------------------------------------------------------- /Destin/Bindings/Java/src/javadestin/ISource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Java/src/javadestin/ISource.java -------------------------------------------------------------------------------- /Destin/Bindings/Java/src/javadestin/NetworkAlt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Java/src/javadestin/NetworkAlt.java -------------------------------------------------------------------------------- /Destin/Bindings/Java/src/javadestin/NetworkConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Java/src/javadestin/NetworkConfig.java -------------------------------------------------------------------------------- /Destin/Bindings/Java/src/javadestin/NetworkFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Java/src/javadestin/NetworkFactory.java -------------------------------------------------------------------------------- /Destin/Bindings/Java/src/javadestin/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Java/src/javadestin/Util.java -------------------------------------------------------------------------------- /Destin/Bindings/Java/src/javadestin/VidSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Java/src/javadestin/VidSource.java -------------------------------------------------------------------------------- /Destin/Bindings/Java/src/javadestin/VideoExperiment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Java/src/javadestin/VideoExperiment.java -------------------------------------------------------------------------------- /Destin/Bindings/Java/src/javadestin/VideoPresentor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Java/src/javadestin/VideoPresentor.java -------------------------------------------------------------------------------- /Destin/Bindings/Java/swig_destin_java.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Java/swig_destin_java.i -------------------------------------------------------------------------------- /Destin/Bindings/Python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Python/.gitignore -------------------------------------------------------------------------------- /Destin/Bindings/Python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Python/CMakeLists.txt -------------------------------------------------------------------------------- /Destin/Bindings/Python/SimpleMovingAverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Python/SimpleMovingAverage.py -------------------------------------------------------------------------------- /Destin/Bindings/Python/charting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Python/charting.py -------------------------------------------------------------------------------- /Destin/Bindings/Python/cifar_experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Python/cifar_experiment.py -------------------------------------------------------------------------------- /Destin/Bindings/Python/cifar_experiment_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Python/cifar_experiment_config.py -------------------------------------------------------------------------------- /Destin/Bindings/Python/cifar_experiment_runs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /Destin/Bindings/Python/color_4.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Python/color_4.avi -------------------------------------------------------------------------------- /Destin/Bindings/Python/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Python/common.py -------------------------------------------------------------------------------- /Destin/Bindings/Python/czt_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Python/czt_mod.py -------------------------------------------------------------------------------- /Destin/Bindings/Python/czt_test1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Python/czt_test1.py -------------------------------------------------------------------------------- /Destin/Bindings/Python/dostuff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Python/dostuff.py -------------------------------------------------------------------------------- /Destin/Bindings/Python/hand.m4v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Python/hand.m4v -------------------------------------------------------------------------------- /Destin/Bindings/Python/heirarchy_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Python/heirarchy_builder.py -------------------------------------------------------------------------------- /Destin/Bindings/Python/letters_experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Python/letters_experiment.py -------------------------------------------------------------------------------- /Destin/Bindings/Python/letters_experiment_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Python/letters_experiment_run.sh -------------------------------------------------------------------------------- /Destin/Bindings/Python/moving_square.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Python/moving_square.avi -------------------------------------------------------------------------------- /Destin/Bindings/Python/object_tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Python/object_tracking.py -------------------------------------------------------------------------------- /Destin/Bindings/Python/object_tracking_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Python/object_tracking_config.py -------------------------------------------------------------------------------- /Destin/Bindings/Python/pylist.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Python/pylist.i -------------------------------------------------------------------------------- /Destin/Bindings/Python/som.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Python/som.py -------------------------------------------------------------------------------- /Destin/Bindings/Python/swig_destin_python.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Python/swig_destin_python.i -------------------------------------------------------------------------------- /Destin/Bindings/Python/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Python/test.py -------------------------------------------------------------------------------- /Destin/Bindings/Python/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Python/test.sh -------------------------------------------------------------------------------- /Destin/Bindings/Python/tree_mining_experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Python/tree_mining_experiment.py -------------------------------------------------------------------------------- /Destin/Bindings/Python/waffles_scripts/.gitignore: -------------------------------------------------------------------------------- 1 | *.model 2 | *.arff 3 | run_* 4 | quickruns/ 5 | -------------------------------------------------------------------------------- /Destin/Bindings/Python/waffles_scripts/do_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Python/waffles_scripts/do_run.sh -------------------------------------------------------------------------------- /Destin/Bindings/Python/waffles_scripts/setup_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Python/waffles_scripts/setup_run.sh -------------------------------------------------------------------------------- /Destin/Bindings/Python/waffles_scripts/template/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Python/waffles_scripts/template/convert.sh -------------------------------------------------------------------------------- /Destin/Bindings/Python/waffles_scripts/template/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Python/waffles_scripts/template/test.sh -------------------------------------------------------------------------------- /Destin/Bindings/Python/waffles_scripts/template/train_baseline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Python/waffles_scripts/template/train_baseline.sh -------------------------------------------------------------------------------- /Destin/Bindings/Python/waffles_scripts/template/train_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/Python/waffles_scripts/template/train_test.sh -------------------------------------------------------------------------------- /Destin/Bindings/swig_destin_common.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Bindings/swig_destin_common.i -------------------------------------------------------------------------------- /Destin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/CMakeLists.txt -------------------------------------------------------------------------------- /Destin/Common/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Common/.gitignore -------------------------------------------------------------------------------- /Destin/Common/BeliefExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Common/BeliefExporter.h -------------------------------------------------------------------------------- /Destin/Common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Common/CMakeLists.txt -------------------------------------------------------------------------------- /Destin/Common/CifarSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Common/CifarSource.h -------------------------------------------------------------------------------- /Destin/Common/CztMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Common/CztMod.h -------------------------------------------------------------------------------- /Destin/Common/DestinIterationFinishedCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Common/DestinIterationFinishedCallback.h -------------------------------------------------------------------------------- /Destin/Common/DestinNetworkAlt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Common/DestinNetworkAlt.cpp -------------------------------------------------------------------------------- /Destin/Common/DestinNetworkAlt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Common/DestinNetworkAlt.h -------------------------------------------------------------------------------- /Destin/Common/DestinTreeManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Common/DestinTreeManager.cpp -------------------------------------------------------------------------------- /Destin/Common/DestinTreeManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Common/DestinTreeManager.h -------------------------------------------------------------------------------- /Destin/Common/INetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Common/INetwork.h -------------------------------------------------------------------------------- /Destin/Common/ImageSourceBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Common/ImageSourceBase.h -------------------------------------------------------------------------------- /Destin/Common/ImageSourceImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Common/ImageSourceImpl.h -------------------------------------------------------------------------------- /Destin/Common/TestCifar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Common/TestCifar.cpp -------------------------------------------------------------------------------- /Destin/Common/TestDestinNetworkAlt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Common/TestDestinNetworkAlt.cpp -------------------------------------------------------------------------------- /Destin/Common/Transporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Common/Transporter.h -------------------------------------------------------------------------------- /Destin/Common/VideoSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Common/VideoSource.cpp -------------------------------------------------------------------------------- /Destin/Common/VideoSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Common/VideoSource.h -------------------------------------------------------------------------------- /Destin/Common/VideoWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Common/VideoWriter.cpp -------------------------------------------------------------------------------- /Destin/Common/VideoWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Common/VideoWriter.h -------------------------------------------------------------------------------- /Destin/Common/unit_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Common/unit_test.h -------------------------------------------------------------------------------- /Destin/Data/.gitignore: -------------------------------------------------------------------------------- 1 | cifar-10-batches-bin/ 2 | -------------------------------------------------------------------------------- /Destin/DavisDestin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/.gitignore -------------------------------------------------------------------------------- /Destin/DavisDestin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/CMakeLists.txt -------------------------------------------------------------------------------- /Destin/DavisDestin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/README -------------------------------------------------------------------------------- /Destin/DavisDestin/include/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/include/array.h -------------------------------------------------------------------------------- /Destin/DavisDestin/include/belief_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/include/belief_transform.h -------------------------------------------------------------------------------- /Destin/DavisDestin/include/cent_image_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/include/cent_image_gen.h -------------------------------------------------------------------------------- /Destin/DavisDestin/include/centroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/include/centroid.h -------------------------------------------------------------------------------- /Destin/DavisDestin/include/destin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/include/destin.h -------------------------------------------------------------------------------- /Destin/DavisDestin/include/destin_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/include/destin_wrapper.h -------------------------------------------------------------------------------- /Destin/DavisDestin/include/learn_strats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/include/learn_strats.h -------------------------------------------------------------------------------- /Destin/DavisDestin/include/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/include/macros.h -------------------------------------------------------------------------------- /Destin/DavisDestin/include/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/include/node.h -------------------------------------------------------------------------------- /Destin/DavisDestin/mnist/.gitignore: -------------------------------------------------------------------------------- 1 | data/ 2 | -------------------------------------------------------------------------------- /Destin/DavisDestin/mnist/CONFIG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/mnist/CONFIG.txt -------------------------------------------------------------------------------- /Destin/DavisDestin/mnist/config_16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/mnist/config_16 -------------------------------------------------------------------------------- /Destin/DavisDestin/mnist/config_32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/mnist/config_32 -------------------------------------------------------------------------------- /Destin/DavisDestin/mnist/destin_mnist_16.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/mnist/destin_mnist_16.sh -------------------------------------------------------------------------------- /Destin/DavisDestin/mnist/destin_mnist_32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/mnist/destin_mnist_32.sh -------------------------------------------------------------------------------- /Destin/DavisDestin/mnist/generate_mnist_set_16.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/mnist/generate_mnist_set_16.m -------------------------------------------------------------------------------- /Destin/DavisDestin/mnist/generate_mnist_set_32.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/mnist/generate_mnist_set_32.m -------------------------------------------------------------------------------- /Destin/DavisDestin/mnist/generate_mnist_sets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/mnist/generate_mnist_sets.sh -------------------------------------------------------------------------------- /Destin/DavisDestin/mnist/loadMNISTImages.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/mnist/loadMNISTImages.m -------------------------------------------------------------------------------- /Destin/DavisDestin/mnist/loadMNISTLabels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/mnist/loadMNISTLabels.m -------------------------------------------------------------------------------- /Destin/DavisDestin/run_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/run_test.sh -------------------------------------------------------------------------------- /Destin/DavisDestin/src/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/src/array.c -------------------------------------------------------------------------------- /Destin/DavisDestin/src/belief_transform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/src/belief_transform.c -------------------------------------------------------------------------------- /Destin/DavisDestin/src/cent_image_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/src/cent_image_gen.c -------------------------------------------------------------------------------- /Destin/DavisDestin/src/centroid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/src/centroid.c -------------------------------------------------------------------------------- /Destin/DavisDestin/src/destin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/src/destin.c -------------------------------------------------------------------------------- /Destin/DavisDestin/src/destin_mnist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/src/destin_mnist.c -------------------------------------------------------------------------------- /Destin/DavisDestin/src/learn_strats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/src/learn_strats.c -------------------------------------------------------------------------------- /Destin/DavisDestin/src/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/src/node.c -------------------------------------------------------------------------------- /Destin/DavisDestin/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/src/util.c -------------------------------------------------------------------------------- /Destin/DavisDestin/src/visualize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/src/visualize.c -------------------------------------------------------------------------------- /Destin/DavisDestin/tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/tests/.gitignore -------------------------------------------------------------------------------- /Destin/DavisDestin/tests/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/tests/test.c -------------------------------------------------------------------------------- /Destin/DavisDestin/tests/testconfig.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DavisDestin/tests/testconfig.conf -------------------------------------------------------------------------------- /Destin/DrentheDestin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DrentheDestin/.gitignore -------------------------------------------------------------------------------- /Destin/DrentheDestin/AdviceData.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DrentheDestin/AdviceData.cu -------------------------------------------------------------------------------- /Destin/DrentheDestin/AdviceData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DrentheDestin/AdviceData.h -------------------------------------------------------------------------------- /Destin/DrentheDestin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DrentheDestin/CMakeLists.txt -------------------------------------------------------------------------------- /Destin/DrentheDestin/CurandGeneratorWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DrentheDestin/CurandGeneratorWrapper.h -------------------------------------------------------------------------------- /Destin/DrentheDestin/DestinCuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DrentheDestin/DestinCuda.cu -------------------------------------------------------------------------------- /Destin/DrentheDestin/DestinCuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DrentheDestin/DestinCuda.h -------------------------------------------------------------------------------- /Destin/DrentheDestin/DestinData.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DrentheDestin/DestinData.cu -------------------------------------------------------------------------------- /Destin/DrentheDestin/DestinData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DrentheDestin/DestinData.h -------------------------------------------------------------------------------- /Destin/DrentheDestin/DestinKernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DrentheDestin/DestinKernel.cu -------------------------------------------------------------------------------- /Destin/DrentheDestin/DestinKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DrentheDestin/DestinKernel.h -------------------------------------------------------------------------------- /Destin/DrentheDestin/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DrentheDestin/INSTALL.txt -------------------------------------------------------------------------------- /Destin/DrentheDestin/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DrentheDestin/config.xml -------------------------------------------------------------------------------- /Destin/DrentheDestin/debug_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DrentheDestin/debug_run.sh -------------------------------------------------------------------------------- /Destin/DrentheDestin/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DrentheDestin/log.txt -------------------------------------------------------------------------------- /Destin/DrentheDestin/pugixml/.gitignore: -------------------------------------------------------------------------------- 1 | /libpugixml.* 2 | -------------------------------------------------------------------------------- /Destin/DrentheDestin/pugixml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DrentheDestin/pugixml/CMakeLists.txt -------------------------------------------------------------------------------- /Destin/DrentheDestin/pugixml/pugiconfig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DrentheDestin/pugixml/pugiconfig.hpp -------------------------------------------------------------------------------- /Destin/DrentheDestin/pugixml/pugixml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DrentheDestin/pugixml/pugixml.cpp -------------------------------------------------------------------------------- /Destin/DrentheDestin/pugixml/pugixml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DrentheDestin/pugixml/pugixml.hpp -------------------------------------------------------------------------------- /Destin/DrentheDestin/simpleRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/DrentheDestin/simpleRun.sh -------------------------------------------------------------------------------- /Destin/Misc/.gitignore: -------------------------------------------------------------------------------- 1 | testVideo 2 | -------------------------------------------------------------------------------- /Destin/Misc/ABCD.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Misc/ABCD.avi -------------------------------------------------------------------------------- /Destin/Misc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Misc/CMakeLists.txt -------------------------------------------------------------------------------- /Destin/Misc/TestVideo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Misc/TestVideo.cpp -------------------------------------------------------------------------------- /Destin/Misc/Various.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Misc/Various.avi -------------------------------------------------------------------------------- /Destin/Misc/WebcamExperiment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/Misc/WebcamExperiment.cpp -------------------------------------------------------------------------------- /Destin/SOM/.gitignore: -------------------------------------------------------------------------------- 1 | testSOM 2 | SOM.cbp 3 | -------------------------------------------------------------------------------- /Destin/SOM/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/SOM/CMakeLists.txt -------------------------------------------------------------------------------- /Destin/SOM/ClusterSom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/SOM/ClusterSom.h -------------------------------------------------------------------------------- /Destin/SOM/ISom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/SOM/ISom.h -------------------------------------------------------------------------------- /Destin/SOM/SomPresentor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/SOM/SomPresentor.h -------------------------------------------------------------------------------- /Destin/SOM/TestSom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/SOM/TestSom.cpp -------------------------------------------------------------------------------- /Destin/TreeMining/.gitignore: -------------------------------------------------------------------------------- 1 | testTreeMiner 2 | -------------------------------------------------------------------------------- /Destin/TreeMining/CMOrderedTreeMiner/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/TreeMining/CMOrderedTreeMiner/.gitignore -------------------------------------------------------------------------------- /Destin/TreeMining/CMOrderedTreeMiner/CMOrderedTreeMiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/TreeMining/CMOrderedTreeMiner/CMOrderedTreeMiner.cpp -------------------------------------------------------------------------------- /Destin/TreeMining/CMOrderedTreeMiner/CMRmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/TreeMining/CMOrderedTreeMiner/CMRmisc.h -------------------------------------------------------------------------------- /Destin/TreeMining/CMOrderedTreeMiner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/TreeMining/CMOrderedTreeMiner/CMakeLists.txt -------------------------------------------------------------------------------- /Destin/TreeMining/CMOrderedTreeMiner/OccList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/TreeMining/CMOrderedTreeMiner/OccList.cpp -------------------------------------------------------------------------------- /Destin/TreeMining/CMOrderedTreeMiner/OccList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/TreeMining/CMOrderedTreeMiner/OccList.h -------------------------------------------------------------------------------- /Destin/TreeMining/CMOrderedTreeMiner/OccLongList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/TreeMining/CMOrderedTreeMiner/OccLongList.cpp -------------------------------------------------------------------------------- /Destin/TreeMining/CMOrderedTreeMiner/OccLongList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/TreeMining/CMOrderedTreeMiner/OccLongList.h -------------------------------------------------------------------------------- /Destin/TreeMining/CMOrderedTreeMiner/PatternTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/TreeMining/CMOrderedTreeMiner/PatternTree.h -------------------------------------------------------------------------------- /Destin/TreeMining/CMOrderedTreeMiner/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/TreeMining/CMOrderedTreeMiner/README -------------------------------------------------------------------------------- /Destin/TreeMining/CMOrderedTreeMiner/TextTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/TreeMining/CMOrderedTreeMiner/TextTree.cpp -------------------------------------------------------------------------------- /Destin/TreeMining/CMOrderedTreeMiner/TextTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/TreeMining/CMOrderedTreeMiner/TextTree.h -------------------------------------------------------------------------------- /Destin/TreeMining/CMOrderedTreeMiner/example_rooted_ordered.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/TreeMining/CMOrderedTreeMiner/example_rooted_ordered.txt -------------------------------------------------------------------------------- /Destin/TreeMining/CMOrderedTreeMinerWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/TreeMining/CMOrderedTreeMinerWrapper.cpp -------------------------------------------------------------------------------- /Destin/TreeMining/CMOrderedTreeMinerWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/TreeMining/CMOrderedTreeMinerWrapper.h -------------------------------------------------------------------------------- /Destin/TreeMining/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/TreeMining/CMakeLists.txt -------------------------------------------------------------------------------- /Destin/TreeMining/TestTreeMiner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/TreeMining/TestTreeMiner.cpp -------------------------------------------------------------------------------- /Destin/create_ctags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/create_ctags.sh -------------------------------------------------------------------------------- /Destin/czt_test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/czt_test/.gitignore -------------------------------------------------------------------------------- /Destin/czt_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/czt_test/CMakeLists.txt -------------------------------------------------------------------------------- /Destin/czt_test/Various.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/czt_test/Various.avi -------------------------------------------------------------------------------- /Destin/czt_test/WebcamExp1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/czt_test/WebcamExp1.cpp -------------------------------------------------------------------------------- /Destin/czt_test/calibration.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/czt_test/calibration.dat -------------------------------------------------------------------------------- /Destin/czt_test/include/stereocamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/czt_test/include/stereocamera.h -------------------------------------------------------------------------------- /Destin/czt_test/include/stereovision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/czt_test/include/stereovision.h -------------------------------------------------------------------------------- /Destin/czt_test/src/stereocamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/czt_test/src/stereocamera.cpp -------------------------------------------------------------------------------- /Destin/czt_test/src/stereovision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/czt_test/src/stereovision.cpp -------------------------------------------------------------------------------- /Destin/czt_test/src/test1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/czt_test/src/test1.cpp -------------------------------------------------------------------------------- /Destin/mingw_run_test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/mingw_run_test.bat -------------------------------------------------------------------------------- /Destin/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Destin/run_tests.sh -------------------------------------------------------------------------------- /Diary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Diary.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/README.md -------------------------------------------------------------------------------- /WindowsBuild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/WindowsBuild.md -------------------------------------------------------------------------------- /doc/DebuggingPython.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/doc/DebuggingPython.txt -------------------------------------------------------------------------------- /doc/NodeObservationFormat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencog/destin/HEAD/doc/NodeObservationFormat.txt --------------------------------------------------------------------------------