Skip to content

Commit 01bc1b0

Browse files
Merge pull request #704 from BindsNET/hananel
Package maintenance update
2 parents 7b8516b + 5688eac commit 01bc1b0

File tree

138 files changed

+1187
-781
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

138 files changed

+1187
-781
lines changed

.gitignore

Lines changed: 25 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,25 @@
1-
bindsnet/__pycache__/*
2-
bindsnet/analysis/__pycache__/*
3-
bindsnet/conversion/__pycache__/*
4-
bindsnet/datasets/__pycache__/*
5-
bindsnet/environment/__pycache__/*
6-
bindsnet/evaluation/__pycache__/*
7-
bindsnet/learning/__pycache__/*
8-
bindsnet/encoding/__pycache__/*
9-
bindsnet/models/__pycache__/*
10-
bindsnet/network/__pycache__/*
11-
bindsnet/pipeline/__pycache__/*
12-
bindsnet/preprocessing/__pycache__/*
13-
test/analysis/__pycache__/*
14-
test/conversion/__pycache__/*
15-
test/encoding/__pycache__/*
16-
test/import/__pycache__/*
17-
test/models/__pycache__/*
18-
test/network/__pycache__/*
19-
test/analysis/__pycache__/*
20-
dist/*
21-
logs/*
22-
.pytest_cache/*
23-
.vscode/*
24-
data/*
1+
bindsnet/__pycache__/*
2+
bindsnet/analysis/__pycache__/*
3+
bindsnet/conversion/__pycache__/*
4+
bindsnet/datasets/__pycache__/*
5+
bindsnet/environment/__pycache__/*
6+
bindsnet/evaluation/__pycache__/*
7+
bindsnet/learning/__pycache__/*
8+
bindsnet/encoding/__pycache__/*
9+
bindsnet/models/__pycache__/*
10+
bindsnet/network/__pycache__/*
11+
bindsnet/pipeline/__pycache__/*
12+
bindsnet/preprocessing/__pycache__/*
13+
test/analysis/__pycache__/*
14+
test/conversion/__pycache__/*
15+
test/encoding/__pycache__/*
16+
test/import/__pycache__/*
17+
test/models/__pycache__/*
18+
test/network/__pycache__/*
19+
test/analysis/__pycache__/*
20+
*.pyc
21+
dist/*
22+
logs/*
23+
.pytest_cache/*
24+
.vscode/*
25+
data/*

.pytest_cache/CACHEDIR.TAG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Signature: 8a477f597d28d172789f06886806bc55
2+
# This file is a cache directory tag created by pytest.
3+
# For information about cache directory tags, see:
4+
# https://bford.info/cachedir/spec.html

.pytest_cache/README.md

Lines changed: 8 additions & 0 deletions

.pytest_cache/v/cache/lastfailed

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

.pytest_cache/v/cache/nodeids

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
[
2+
"test/analysis/test_analyzers.py::TestAnalyzer::test_init",
3+
"test/analysis/test_analyzers.py::TestAnalyzer::test_plot_runs",
4+
"test/conversion/test_conversion.py::test_conversion_1",
5+
"test/conversion/test_conversion.py::test_conversion_2",
6+
"test/encoding/test_encoding.py::TestEncodings::test_bernoulli",
7+
"test/encoding/test_encoding.py::TestEncodings::test_bernoulli_loader",
8+
"test/encoding/test_encoding.py::TestEncodings::test_multidim_bernoulli",
9+
"test/encoding/test_encoding.py::TestEncodings::test_poisson",
10+
"test/encoding/test_encoding.py::TestEncodings::test_poisson_loader",
11+
"test/models/test_models.py::TestDiehlAndCook2015::test_init",
12+
"test/models/test_models.py::TestTwoLayerNetwork::test_init",
13+
"test/network/test_learning.py::TestLearningRules::test_hebbian",
14+
"test/network/test_learning.py::TestLearningRules::test_mstdp",
15+
"test/network/test_learning.py::TestLearningRules::test_mstdpet",
16+
"test/network/test_learning.py::TestLearningRules::test_post_pre",
17+
"test/network/test_learning.py::TestLearningRules::test_rmax",
18+
"test/network/test_learning.py::TestLearningRules::test_weight_dependent_post_pre",
19+
"test/network/test_network.py::TestNetwork::test_add_objects",
20+
"test/network/test_network.py::TestNetwork::test_empty",
21+
"test/network/test_nodes.py::TestNodes::test_init",
22+
"test/network/test_nodes.py::TestNodes::test_transfer"
23+
]

.pytest_cache/v/cache/stepwise

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[]

.readthedocs.yaml

Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
1-
# .readthedocs.yaml
2-
# Read the Docs configuration file
3-
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4-
5-
# Required
6-
version: 2
7-
8-
# Set the version of Python and other tools you might need
9-
build:
10-
os: ubuntu-22.04
11-
tools:
12-
python: "3.11"
13-
14-
# Build documentation in the docs/ directory with Sphinx
15-
sphinx:
16-
builder: html
17-
configuration: docs/source/conf.py
18-
19-
formats:
20-
- epub
21-
- pdf
22-
23-
# We recommend specifying your dependencies to enable reproducible builds:
24-
# https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
25-
python:
26-
install:
27-
- requirements: docs/requirements.txt
28-
- method: pip
29-
path: docs/
30-
# extra_requirements:
31-
# - docs
32-
33-
# python:
34-
# version: 3.8
35-
# install:
36-
# - method: pip
37-
# path: .
38-
# - requirements: docs/requirements.txt
1+
# .readthedocs.yaml
2+
# Read the Docs configuration file
3+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4+
5+
# Required
6+
version: 2
7+
8+
# Set the version of Python and other tools you might need
9+
build:
10+
os: ubuntu-22.04
11+
tools:
12+
python: "3.11"
13+
14+
# Build documentation in the docs/ directory with Sphinx
15+
sphinx:
16+
builder: html
17+
configuration: docs/source/conf.py
18+
19+
formats:
20+
- epub
21+
- pdf
22+
23+
# We recommend specifying your dependencies to enable reproducible builds:
24+
# https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
25+
python:
26+
install:
27+
- requirements: docs/requirements.txt
28+
- method: pip
29+
path: docs/
30+
# extra_requirements:
31+
# - docs
32+
33+
# python:
34+
# version: 3.8
35+
# install:
36+
# - method: pip
37+
# path: .
38+
# - requirements: docs/requirements.txt
3939
# system_packages: False

.vscode/launch.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Python: Current File",
9+
"type": "python",
10+
"request": "launch",
11+
"program": "${file}",
12+
"console": "integratedTerminal",
13+
"justMyCode": false
14+
}
15+
]
16+
}
590 Bytes
Binary file not shown.
7.6 KB
Binary file not shown.

0 commit comments

Comments
 (0)