-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add tests for datasets and coverage report (#130)
* Update readme * Add test for uci benchmark metadata * Add test for all dataset downloads * [github-action] formatting fixes * Add test for report and score * [github-action] formatting fixes * Remove main * [github-action] formatting fixes * Remove parenthesis * Remove try block * Exclude UCIHAR * Add escape characters * Add quotes * Exclude UCIHAR * Excelude CCPP * Excliude collection * [github-action] formatting fixes * Debug dataset downloads * Debug dataset downloads * Debug dataset downloads * [github-action] formatting fixes * Debug dataset downloads * [github-action] formatting fixes * Debug dataset downloads * Debug dataset downloads * [github-action] formatting fixes * Add openpyxl dependency * Fix error in UCIHAR dataset * [github-action] formatting fixes * Add coverage to the dev requirements * Update readme * Fix command in readme * Split dataset download test * Add tests for base class * [github-action] formatting fixes * Add test for resonator * [github-action] formatting fixes * Delete data dir only ones --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Mike Heddes <[email protected]>
- Loading branch information
1 parent
d5c9c5f
commit c604323
Showing
12 changed files
with
429 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,7 @@ requirements: | |
- scipy | ||
- pandas | ||
- requests | ||
- openpyxl | ||
- tqdm | ||
|
||
test: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,6 @@ numpy | |
flake8 | ||
pytest | ||
black | ||
tqdm | ||
tqdm | ||
openpyxl | ||
coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,5 +5,6 @@ scipy | |
requests | ||
tqdm | ||
numpy | ||
openpyxl | ||
sphinx | ||
sphinx-rtd-theme |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
# | ||
# MIT License | ||
# | ||
# Copyright (c) 2023 Mike Heddes, Igor Nunes, Pere Vergés, Denis Kleyko, and Danny Abraham | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
# of this software and associated documentation files (the "Software"), to deal | ||
# in the Software without restriction, including without limitation the rights | ||
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
# copies of the Software, and to permit persons to whom the Software is | ||
# furnished to do so, subject to the following conditions: | ||
# | ||
# The above copyright notice and this permission notice shall be included in all | ||
# copies or substantial portions of the Software. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
# SOFTWARE. | ||
# | ||
import pytest | ||
import torch | ||
|
||
from torchhd import VSATensor | ||
|
||
|
||
class TestVSATensor: | ||
def test_empty(self): | ||
with pytest.raises(NotImplementedError): | ||
VSATensor.empty(4, 525) | ||
|
||
def test_identity(self): | ||
with pytest.raises(NotImplementedError): | ||
VSATensor.identity(4, 525) | ||
|
||
def test_random(self): | ||
with pytest.raises(NotImplementedError): | ||
VSATensor.random(4, 525) | ||
|
||
def test_bundle(self): | ||
a = torch.randn(100).as_subclass(VSATensor) | ||
b = torch.randn(100).as_subclass(VSATensor) | ||
|
||
with pytest.raises(NotImplementedError): | ||
a.bundle(b) | ||
|
||
def test_multibundle(self): | ||
a = torch.randn(10, 100).as_subclass(VSATensor) | ||
|
||
with pytest.raises(NotImplementedError): | ||
a.multibundle() | ||
|
||
def test_bind(self): | ||
a = torch.randn(100).as_subclass(VSATensor) | ||
b = torch.randn(100).as_subclass(VSATensor) | ||
|
||
with pytest.raises(NotImplementedError): | ||
a.bind(b) | ||
|
||
def test_multibind(self): | ||
a = torch.randn(10, 100).as_subclass(VSATensor) | ||
|
||
with pytest.raises(NotImplementedError): | ||
a.multibind() | ||
|
||
def test_inverse(self): | ||
a = torch.randn(100).as_subclass(VSATensor) | ||
|
||
with pytest.raises(NotImplementedError): | ||
a.inverse() | ||
|
||
def test_negative(self): | ||
a = torch.randn(100).as_subclass(VSATensor) | ||
|
||
with pytest.raises(NotImplementedError): | ||
a.negative() | ||
|
||
def test_permute(self): | ||
a = torch.randn(100).as_subclass(VSATensor) | ||
|
||
with pytest.raises(NotImplementedError): | ||
a.permute() | ||
|
||
def test_dot_similarity(self): | ||
a = torch.randn(100).as_subclass(VSATensor) | ||
b = torch.randn(100).as_subclass(VSATensor) | ||
|
||
with pytest.raises(NotImplementedError): | ||
a.dot_similarity(b) | ||
|
||
def test_cosine_similarity(self): | ||
a = torch.randn(100).as_subclass(VSATensor) | ||
b = torch.randn(100).as_subclass(VSATensor) | ||
|
||
with pytest.raises(NotImplementedError): | ||
a.cosine_similarity(b) |
Oops, something went wrong.