Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 25 additions & 24 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,24 +1,25 @@
bindsnet/__pycache__/*
bindsnet/analysis/__pycache__/*
bindsnet/conversion/__pycache__/*
bindsnet/datasets/__pycache__/*
bindsnet/environment/__pycache__/*
bindsnet/evaluation/__pycache__/*
bindsnet/learning/__pycache__/*
bindsnet/encoding/__pycache__/*
bindsnet/models/__pycache__/*
bindsnet/network/__pycache__/*
bindsnet/pipeline/__pycache__/*
bindsnet/preprocessing/__pycache__/*
test/analysis/__pycache__/*
test/conversion/__pycache__/*
test/encoding/__pycache__/*
test/import/__pycache__/*
test/models/__pycache__/*
test/network/__pycache__/*
test/analysis/__pycache__/*
dist/*
logs/*
.pytest_cache/*
.vscode/*
data/*
bindsnet/__pycache__/*
bindsnet/analysis/__pycache__/*
bindsnet/conversion/__pycache__/*
bindsnet/datasets/__pycache__/*
bindsnet/environment/__pycache__/*
bindsnet/evaluation/__pycache__/*
bindsnet/learning/__pycache__/*
bindsnet/encoding/__pycache__/*
bindsnet/models/__pycache__/*
bindsnet/network/__pycache__/*
bindsnet/pipeline/__pycache__/*
bindsnet/preprocessing/__pycache__/*
test/analysis/__pycache__/*
test/conversion/__pycache__/*
test/encoding/__pycache__/*
test/import/__pycache__/*
test/models/__pycache__/*
test/network/__pycache__/*
test/analysis/__pycache__/*
*.pyc
dist/*
logs/*
.pytest_cache/*
.vscode/*
data/*
4 changes: 4 additions & 0 deletions .pytest_cache/CACHEDIR.TAG
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Signature: 8a477f597d28d172789f06886806bc55
# This file is a cache directory tag created by pytest.
# For information about cache directory tags, see:
# https://bford.info/cachedir/spec.html
8 changes: 8 additions & 0 deletions .pytest_cache/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# pytest cache directory #

This directory contains data from the pytest's cache plugin,
which provides the `--lf` and `--ff` options, as well as the `cache` fixture.

**Do not** commit this to version control.

See [the docs](https://docs.pytest.org/en/stable/how-to/cache.html) for more information.
1 change: 1 addition & 0 deletions .pytest_cache/v/cache/lastfailed
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
23 changes: 23 additions & 0 deletions .pytest_cache/v/cache/nodeids
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[
"test/analysis/test_analyzers.py::TestAnalyzer::test_init",
"test/analysis/test_analyzers.py::TestAnalyzer::test_plot_runs",
"test/conversion/test_conversion.py::test_conversion_1",
"test/conversion/test_conversion.py::test_conversion_2",
"test/encoding/test_encoding.py::TestEncodings::test_bernoulli",
"test/encoding/test_encoding.py::TestEncodings::test_bernoulli_loader",
"test/encoding/test_encoding.py::TestEncodings::test_multidim_bernoulli",
"test/encoding/test_encoding.py::TestEncodings::test_poisson",
"test/encoding/test_encoding.py::TestEncodings::test_poisson_loader",
"test/models/test_models.py::TestDiehlAndCook2015::test_init",
"test/models/test_models.py::TestTwoLayerNetwork::test_init",
"test/network/test_learning.py::TestLearningRules::test_hebbian",
"test/network/test_learning.py::TestLearningRules::test_mstdp",
"test/network/test_learning.py::TestLearningRules::test_mstdpet",
"test/network/test_learning.py::TestLearningRules::test_post_pre",
"test/network/test_learning.py::TestLearningRules::test_rmax",
"test/network/test_learning.py::TestLearningRules::test_weight_dependent_post_pre",
"test/network/test_network.py::TestNetwork::test_add_objects",
"test/network/test_network.py::TestNetwork::test_empty",
"test/network/test_nodes.py::TestNodes::test_init",
"test/network/test_nodes.py::TestNodes::test_transfer"
]
1 change: 1 addition & 0 deletions .pytest_cache/v/cache/stepwise
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[]
76 changes: 38 additions & 38 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
# .readthedocs.yaml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
# Required
version: 2
# Set the version of Python and other tools you might need
build:
os: ubuntu-22.04
tools:
python: "3.11"
# Build documentation in the docs/ directory with Sphinx
sphinx:
builder: html
configuration: docs/source/conf.py
formats:
- epub
- pdf
# We recommend specifying your dependencies to enable reproducible builds:
# https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
python:
install:
- requirements: docs/requirements.txt
- method: pip
path: docs/
# extra_requirements:
# - docs
# python:
# version: 3.8
# install:
# - method: pip
# path: .
# - requirements: docs/requirements.txt
# .readthedocs.yaml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

# Set the version of Python and other tools you might need
build:
os: ubuntu-22.04
tools:
python: "3.11"

# Build documentation in the docs/ directory with Sphinx
sphinx:
builder: html
configuration: docs/source/conf.py

formats:
- epub
- pdf

# We recommend specifying your dependencies to enable reproducible builds:
# https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
python:
install:
- requirements: docs/requirements.txt
- method: pip
path: docs/
# extra_requirements:
# - docs

# python:
# version: 3.8
# install:
# - method: pip
# path: .
# - requirements: docs/requirements.txt
# system_packages: False
16 changes: 16 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": false
}
]
}
Binary file added bindsnet/__pycache__/__init__.cpython-310.pyc
Binary file not shown.
Binary file added bindsnet/__pycache__/utils.cpython-310.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added bindsnet/models/__pycache__/__init__.cpython-310.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added logs/init/events.out.tfevents.1656543178.TempWin
Binary file not shown.
Binary file added logs/init/events.out.tfevents.1656548905.TempWin
Binary file not shown.
Binary file added logs/init/events.out.tfevents.1673646087.Spike
Binary file not shown.
Binary file added logs/init/events.out.tfevents.1673648326.Spike
Binary file not shown.
Binary file added logs/init/events.out.tfevents.1678117372.Spike
Binary file not shown.
Binary file added logs/init/events.out.tfevents.1682712186.Spike
Binary file not shown.
Binary file added logs/init/events.out.tfevents.1687464074.Spike
Binary file not shown.
Binary file added logs/init/events.out.tfevents.1687464505.Spike
Binary file not shown.
Binary file added logs/init/events.out.tfevents.1687736499.Spike
Binary file not shown.
Binary file added logs/init/events.out.tfevents.1694374827.Spike
Binary file not shown.
Binary file added logs/init/events.out.tfevents.1694374969.Spike
Binary file not shown.
Binary file added logs/init/events.out.tfevents.1694375010.Spike
Binary file not shown.
Binary file added logs/init/events.out.tfevents.1700165624.Spike
Binary file not shown.
Binary file added logs/init/events.out.tfevents.1703700212.Spike
Binary file not shown.
Binary file added logs/init/events.out.tfevents.1711672057.Spike
Binary file not shown.
Binary file added logs/init/events.out.tfevents.1711672140.Spike
Binary file not shown.
Binary file added logs/init/events.out.tfevents.1711673241.Spike
Binary file not shown.
Binary file added logs/init/events.out.tfevents.1711673760.Spike
Binary file not shown.
Binary file added logs/init/events.out.tfevents.1711674764.Spike
Binary file not shown.
Binary file added logs/init/events.out.tfevents.1711675116.Spike
Binary file not shown.
Binary file added logs/init/events.out.tfevents.1711675170.Spike
Binary file not shown.
Binary file added logs/init/events.out.tfevents.1711675181.Spike
Binary file not shown.
Binary file added logs/init/events.out.tfevents.1711675321.Spike
Binary file not shown.
Binary file added logs/init/events.out.tfevents.1711675865.Spike
Binary file not shown.
Binary file added logs/init/events.out.tfevents.1711721119.Spike
Binary file not shown.
Binary file added logs/init/events.out.tfevents.1711723694.Spike
Binary file not shown.
Binary file added logs/init/events.out.tfevents.1720719086.Spike
Binary file not shown.
Binary file added logs/init/events.out.tfevents.1720719342.Spike
Binary file not shown.
Binary file added logs/runs/events.out.tfevents.1656543178.TempWin
Binary file not shown.
Binary file added logs/runs/events.out.tfevents.1656548905.TempWin
Binary file not shown.
Binary file added logs/runs/events.out.tfevents.1673646087.Spike
Binary file not shown.
Binary file added logs/runs/events.out.tfevents.1673648326.Spike
Binary file not shown.
Binary file added logs/runs/events.out.tfevents.1678117372.Spike
Binary file not shown.
Binary file added logs/runs/events.out.tfevents.1682712186.Spike
Binary file not shown.
Binary file added logs/runs/events.out.tfevents.1687464074.Spike
Binary file not shown.
Binary file added logs/runs/events.out.tfevents.1687464505.Spike
Binary file not shown.
Binary file added logs/runs/events.out.tfevents.1687736499.Spike
Binary file not shown.
Binary file added logs/runs/events.out.tfevents.1694374827.Spike
Binary file not shown.
Binary file added logs/runs/events.out.tfevents.1694374969.Spike
Binary file not shown.
Binary file added logs/runs/events.out.tfevents.1694375010.Spike
Binary file not shown.
Binary file added logs/runs/events.out.tfevents.1700165624.Spike
Binary file not shown.
Binary file added logs/runs/events.out.tfevents.1703700212.Spike
Binary file not shown.
Binary file added logs/runs/events.out.tfevents.1711672057.Spike
Binary file not shown.
Binary file added logs/runs/events.out.tfevents.1711672140.Spike
Binary file not shown.
Binary file added logs/runs/events.out.tfevents.1711673241.Spike
Binary file not shown.
Binary file added logs/runs/events.out.tfevents.1711673760.Spike
Binary file not shown.
Binary file added logs/runs/events.out.tfevents.1711674764.Spike
Binary file not shown.
Binary file added logs/runs/events.out.tfevents.1711675116.Spike
Binary file not shown.
Binary file added logs/runs/events.out.tfevents.1711675170.Spike
Binary file not shown.
Binary file added logs/runs/events.out.tfevents.1711675181.Spike
Binary file not shown.
Binary file added logs/runs/events.out.tfevents.1711675321.Spike
Binary file not shown.
Binary file added logs/runs/events.out.tfevents.1711675865.Spike
Binary file not shown.
Binary file added logs/runs/events.out.tfevents.1711721119.Spike
Binary file not shown.
Binary file added logs/runs/events.out.tfevents.1711723694.Spike
Binary file not shown.
Binary file added logs/runs/events.out.tfevents.1720719086.Spike
Binary file not shown.
Binary file added logs/runs/events.out.tfevents.1720719342.Spike
Binary file not shown.
Loading