├── LICENSE ├── demos └── introduction.ipynb ├── pyClarion ├── __init__.py ├── components │ ├── __init__.py │ ├── base.py │ ├── chunks.py │ ├── io.py │ ├── layers.py │ ├── learning.py │ ├── ops.py │ ├── optimizers.py │ ├── rules.py │ ├── sim.py │ └── stats.py ├── events │ ├── __init__.py │ ├── sites.py │ ├── system.py │ └── updates.py ├── knowledge │ ├── __init__.py │ ├── base.py │ ├── families.py │ ├── sorts.py │ └── terms.py └── numdicts │ ├── __init__.py │ ├── exc.py │ ├── indices.py │ ├── keys.py │ ├── keyspaces.py │ ├── numdicts.py │ └── ops │ ├── __init__.py │ ├── base.py │ ├── defs.py │ ├── funcs.py │ └── tape.py ├── readme.md ├── setup.py └── tests ├── __init__.py ├── components ├── __init__.py ├── test_memory.py └── test_top_level.py └── numdicts ├── __init__.py ├── test_key.py ├── test_keyspace.py └── test_numdict.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/LICENSE -------------------------------------------------------------------------------- /demos/introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/demos/introduction.ipynb -------------------------------------------------------------------------------- /pyClarion/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/pyClarion/__init__.py -------------------------------------------------------------------------------- /pyClarion/components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/pyClarion/components/__init__.py -------------------------------------------------------------------------------- /pyClarion/components/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/pyClarion/components/base.py -------------------------------------------------------------------------------- /pyClarion/components/chunks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/pyClarion/components/chunks.py -------------------------------------------------------------------------------- /pyClarion/components/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/pyClarion/components/io.py -------------------------------------------------------------------------------- /pyClarion/components/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/pyClarion/components/layers.py -------------------------------------------------------------------------------- /pyClarion/components/learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/pyClarion/components/learning.py -------------------------------------------------------------------------------- /pyClarion/components/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/pyClarion/components/ops.py -------------------------------------------------------------------------------- /pyClarion/components/optimizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/pyClarion/components/optimizers.py -------------------------------------------------------------------------------- /pyClarion/components/rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/pyClarion/components/rules.py -------------------------------------------------------------------------------- /pyClarion/components/sim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/pyClarion/components/sim.py -------------------------------------------------------------------------------- /pyClarion/components/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/pyClarion/components/stats.py -------------------------------------------------------------------------------- /pyClarion/events/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/pyClarion/events/__init__.py -------------------------------------------------------------------------------- /pyClarion/events/sites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/pyClarion/events/sites.py -------------------------------------------------------------------------------- /pyClarion/events/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/pyClarion/events/system.py -------------------------------------------------------------------------------- /pyClarion/events/updates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/pyClarion/events/updates.py -------------------------------------------------------------------------------- /pyClarion/knowledge/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/pyClarion/knowledge/__init__.py -------------------------------------------------------------------------------- /pyClarion/knowledge/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/pyClarion/knowledge/base.py -------------------------------------------------------------------------------- /pyClarion/knowledge/families.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/pyClarion/knowledge/families.py -------------------------------------------------------------------------------- /pyClarion/knowledge/sorts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/pyClarion/knowledge/sorts.py -------------------------------------------------------------------------------- /pyClarion/knowledge/terms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/pyClarion/knowledge/terms.py -------------------------------------------------------------------------------- /pyClarion/numdicts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/pyClarion/numdicts/__init__.py -------------------------------------------------------------------------------- /pyClarion/numdicts/exc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/pyClarion/numdicts/exc.py -------------------------------------------------------------------------------- /pyClarion/numdicts/indices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/pyClarion/numdicts/indices.py -------------------------------------------------------------------------------- /pyClarion/numdicts/keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/pyClarion/numdicts/keys.py -------------------------------------------------------------------------------- /pyClarion/numdicts/keyspaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/pyClarion/numdicts/keyspaces.py -------------------------------------------------------------------------------- /pyClarion/numdicts/numdicts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/pyClarion/numdicts/numdicts.py -------------------------------------------------------------------------------- /pyClarion/numdicts/ops/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyClarion/numdicts/ops/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/pyClarion/numdicts/ops/base.py -------------------------------------------------------------------------------- /pyClarion/numdicts/ops/defs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/pyClarion/numdicts/ops/defs.py -------------------------------------------------------------------------------- /pyClarion/numdicts/ops/funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/pyClarion/numdicts/ops/funcs.py -------------------------------------------------------------------------------- /pyClarion/numdicts/ops/tape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/pyClarion/numdicts/ops/tape.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/readme.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/components/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/components/test_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/tests/components/test_memory.py -------------------------------------------------------------------------------- /tests/components/test_top_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/tests/components/test_top_level.py -------------------------------------------------------------------------------- /tests/numdicts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/numdicts/test_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/tests/numdicts/test_key.py -------------------------------------------------------------------------------- /tests/numdicts/test_keyspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/tests/numdicts/test_keyspace.py -------------------------------------------------------------------------------- /tests/numdicts/test_numdict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmekik/pyClarion/HEAD/tests/numdicts/test_numdict.py --------------------------------------------------------------------------------