├── .gitignore ├── Clortex-Snapshot-720.png ├── LICENSE ├── README.md ├── doc ├── CLA-Glossary.md ├── encoders.html ├── index.html ├── intro.md ├── maths.html ├── neuron.html ├── patch.html ├── rdse.html └── sensors.html ├── docs └── uberdoc.html ├── models ├── download.html ├── en-chunker.bin ├── en-ner-date.bin ├── en-ner-location.bin ├── en-ner-money.bin ├── en-ner-organization.bin ├── en-ner-percentage.bin ├── en-ner-person.bin ├── en-ner-time.bin ├── en-parser-chunking.bin ├── en-pos-maxent.bin ├── en-pos-perceptron.bin ├── en-sent.bin └── en-token.bin ├── project.clj ├── resources ├── bash.md ├── datomic │ └── schema.edn ├── hotgym.csv ├── hotgym.edn └── small-sample.csv ├── src └── clortex │ ├── core.clj │ ├── domain │ ├── cortex │ │ └── system.clj │ ├── encoders │ │ ├── compound.clj │ │ ├── core.clj │ │ ├── date_time.clj │ │ ├── hash.clj │ │ ├── rdse.clj │ │ └── scalar.clj │ ├── neuron.clj │ ├── neuron │ │ ├── persistent_neuron.clj │ │ └── pure_neuron.clj │ ├── patch │ │ ├── core.clj │ │ ├── persistent_patch.clj │ │ └── pure_patch.clj │ └── sensors │ │ ├── core.clj │ │ ├── date.clj │ │ └── datomic.clj │ ├── encoders.clj │ ├── homeless.clj │ ├── protocols.clj │ ├── scratch.clj │ ├── utils │ ├── datomic.clj │ ├── hash.clj │ ├── math.clj │ └── uuid.clj │ └── viz │ ├── core.clj │ └── temporal.clj ├── test └── clortex │ ├── core_test.clj │ ├── date_encoder_test.clj │ ├── domain │ ├── encoders │ │ └── encoder_test.clj │ ├── neuron_test.clj │ ├── patch │ │ └── patch_test.clj │ └── sensors │ │ ├── date_test.clj │ │ └── sensor_test.clj │ ├── geo_test.clj │ ├── hotgym_smoke_test.clj │ ├── rdse_test.clj │ ├── temporal_demo.clj │ └── viz_test.clj └── video-frame-720.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/.gitignore -------------------------------------------------------------------------------- /Clortex-Snapshot-720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/Clortex-Snapshot-720.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/README.md -------------------------------------------------------------------------------- /doc/CLA-Glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/doc/CLA-Glossary.md -------------------------------------------------------------------------------- /doc/encoders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/doc/encoders.html -------------------------------------------------------------------------------- /doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/doc/index.html -------------------------------------------------------------------------------- /doc/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/doc/intro.md -------------------------------------------------------------------------------- /doc/maths.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/doc/maths.html -------------------------------------------------------------------------------- /doc/neuron.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/doc/neuron.html -------------------------------------------------------------------------------- /doc/patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/doc/patch.html -------------------------------------------------------------------------------- /doc/rdse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/doc/rdse.html -------------------------------------------------------------------------------- /doc/sensors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/doc/sensors.html -------------------------------------------------------------------------------- /docs/uberdoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/docs/uberdoc.html -------------------------------------------------------------------------------- /models/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/models/download.html -------------------------------------------------------------------------------- /models/en-chunker.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/models/en-chunker.bin -------------------------------------------------------------------------------- /models/en-ner-date.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/models/en-ner-date.bin -------------------------------------------------------------------------------- /models/en-ner-location.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/models/en-ner-location.bin -------------------------------------------------------------------------------- /models/en-ner-money.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/models/en-ner-money.bin -------------------------------------------------------------------------------- /models/en-ner-organization.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/models/en-ner-organization.bin -------------------------------------------------------------------------------- /models/en-ner-percentage.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/models/en-ner-percentage.bin -------------------------------------------------------------------------------- /models/en-ner-person.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/models/en-ner-person.bin -------------------------------------------------------------------------------- /models/en-ner-time.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/models/en-ner-time.bin -------------------------------------------------------------------------------- /models/en-parser-chunking.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/models/en-parser-chunking.bin -------------------------------------------------------------------------------- /models/en-pos-maxent.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/models/en-pos-maxent.bin -------------------------------------------------------------------------------- /models/en-pos-perceptron.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/models/en-pos-perceptron.bin -------------------------------------------------------------------------------- /models/en-sent.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/models/en-sent.bin -------------------------------------------------------------------------------- /models/en-token.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/models/en-token.bin -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/project.clj -------------------------------------------------------------------------------- /resources/bash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/resources/bash.md -------------------------------------------------------------------------------- /resources/datomic/schema.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/resources/datomic/schema.edn -------------------------------------------------------------------------------- /resources/hotgym.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/resources/hotgym.csv -------------------------------------------------------------------------------- /resources/hotgym.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/resources/hotgym.edn -------------------------------------------------------------------------------- /resources/small-sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/resources/small-sample.csv -------------------------------------------------------------------------------- /src/clortex/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/src/clortex/core.clj -------------------------------------------------------------------------------- /src/clortex/domain/cortex/system.clj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/clortex/domain/encoders/compound.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/src/clortex/domain/encoders/compound.clj -------------------------------------------------------------------------------- /src/clortex/domain/encoders/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/src/clortex/domain/encoders/core.clj -------------------------------------------------------------------------------- /src/clortex/domain/encoders/date_time.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/src/clortex/domain/encoders/date_time.clj -------------------------------------------------------------------------------- /src/clortex/domain/encoders/hash.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/src/clortex/domain/encoders/hash.clj -------------------------------------------------------------------------------- /src/clortex/domain/encoders/rdse.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/src/clortex/domain/encoders/rdse.clj -------------------------------------------------------------------------------- /src/clortex/domain/encoders/scalar.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/src/clortex/domain/encoders/scalar.clj -------------------------------------------------------------------------------- /src/clortex/domain/neuron.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/src/clortex/domain/neuron.clj -------------------------------------------------------------------------------- /src/clortex/domain/neuron/persistent_neuron.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/src/clortex/domain/neuron/persistent_neuron.clj -------------------------------------------------------------------------------- /src/clortex/domain/neuron/pure_neuron.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/src/clortex/domain/neuron/pure_neuron.clj -------------------------------------------------------------------------------- /src/clortex/domain/patch/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/src/clortex/domain/patch/core.clj -------------------------------------------------------------------------------- /src/clortex/domain/patch/persistent_patch.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/src/clortex/domain/patch/persistent_patch.clj -------------------------------------------------------------------------------- /src/clortex/domain/patch/pure_patch.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/src/clortex/domain/patch/pure_patch.clj -------------------------------------------------------------------------------- /src/clortex/domain/sensors/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/src/clortex/domain/sensors/core.clj -------------------------------------------------------------------------------- /src/clortex/domain/sensors/date.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/src/clortex/domain/sensors/date.clj -------------------------------------------------------------------------------- /src/clortex/domain/sensors/datomic.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/src/clortex/domain/sensors/datomic.clj -------------------------------------------------------------------------------- /src/clortex/encoders.clj: -------------------------------------------------------------------------------- 1 | (ns clortex.encoders) 2 | 3 | -------------------------------------------------------------------------------- /src/clortex/homeless.clj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/clortex/protocols.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/src/clortex/protocols.clj -------------------------------------------------------------------------------- /src/clortex/scratch.clj: -------------------------------------------------------------------------------- 1 | (ns clortex.scratch 2 | ) 3 | 4 | -------------------------------------------------------------------------------- /src/clortex/utils/datomic.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/src/clortex/utils/datomic.clj -------------------------------------------------------------------------------- /src/clortex/utils/hash.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/src/clortex/utils/hash.clj -------------------------------------------------------------------------------- /src/clortex/utils/math.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/src/clortex/utils/math.clj -------------------------------------------------------------------------------- /src/clortex/utils/uuid.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/src/clortex/utils/uuid.clj -------------------------------------------------------------------------------- /src/clortex/viz/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/src/clortex/viz/core.clj -------------------------------------------------------------------------------- /src/clortex/viz/temporal.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/src/clortex/viz/temporal.clj -------------------------------------------------------------------------------- /test/clortex/core_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/test/clortex/core_test.clj -------------------------------------------------------------------------------- /test/clortex/date_encoder_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/test/clortex/date_encoder_test.clj -------------------------------------------------------------------------------- /test/clortex/domain/encoders/encoder_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/test/clortex/domain/encoders/encoder_test.clj -------------------------------------------------------------------------------- /test/clortex/domain/neuron_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/test/clortex/domain/neuron_test.clj -------------------------------------------------------------------------------- /test/clortex/domain/patch/patch_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/test/clortex/domain/patch/patch_test.clj -------------------------------------------------------------------------------- /test/clortex/domain/sensors/date_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/test/clortex/domain/sensors/date_test.clj -------------------------------------------------------------------------------- /test/clortex/domain/sensors/sensor_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/test/clortex/domain/sensors/sensor_test.clj -------------------------------------------------------------------------------- /test/clortex/geo_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/test/clortex/geo_test.clj -------------------------------------------------------------------------------- /test/clortex/hotgym_smoke_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/test/clortex/hotgym_smoke_test.clj -------------------------------------------------------------------------------- /test/clortex/rdse_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/test/clortex/rdse_test.clj -------------------------------------------------------------------------------- /test/clortex/temporal_demo.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/test/clortex/temporal_demo.clj -------------------------------------------------------------------------------- /test/clortex/viz_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/test/clortex/viz_test.clj -------------------------------------------------------------------------------- /video-frame-720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htm-community/clortex/HEAD/video-frame-720.png --------------------------------------------------------------------------------