Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 2.2 #80

Merged
merged 30 commits into from
Jul 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
6634a7f
Version update
franberchez Jul 15, 2024
0e59f18
The module models have been renamed as wrappers
franberchez Jul 15, 2024
af470ba
Added inheritance to Adience class
franberchez Jul 16, 2024
d7b3faf
Added ranked probability score metric
RafaAyGar Jul 17, 2024
b9c256a
Added to array and probas to preds castings in metrics
RafaAyGar Jul 17, 2024
107e49b
Merge pull request #75 from ayrna/to_array_conversion_in_metrics
RafaAyGar Jul 17, 2024
a68aa54
Completed code examples in metrics doc
RafaAyGar Jul 17, 2024
6141c7f
Merge pull request #76 from ayrna/completed-examples-in-metrics-doc
RafaAyGar Jul 17, 2024
a9bc37b
Added references to metrics doc
RafaAyGar Jul 17, 2024
f0d5f35
FGNet improvement to work as a torchvision dataset
franberchez Jul 17, 2024
2440fc2
Removing process attribute from FGNet class
franberchez Jul 17, 2024
a523400
added cite for gmsec
victormvy Jul 18, 2024
9de0a7a
Formatted metrics docstrings to respect max line length
victormvy Jul 18, 2024
d78df8d
Improvement of documentation in FGNet class and clear distinction bet…
franberchez Jul 18, 2024
9e733a5
Merge pull request #77 from ayrna/adding-references-to-metrics
RafaAyGar Jul 19, 2024
db2e6cf
Updated adience classes to match VisionDataset interface
victormvy Jul 20, 2024
634e69e
Updated adience tests
victormvy Jul 20, 2024
2f00d04
Updated adience tutorials for the new interface
victormvy Jul 20, 2024
e808664
Tutorials update to match the new way to use FGNet dataset
franberchez Jul 22, 2024
99130cb
Improved adience tests coverage. Changed adience tutorial to separate…
victormvy Jul 23, 2024
3df975c
Excluded adience tutorial from binder execution
victormvy Jul 23, 2024
806c73c
Error fix in adience test_check_if_partitioned
victormvy Jul 23, 2024
d8fe4c6
__getitem__ of FGNet correction and test improvement
franberchez Jul 23, 2024
daceb52
Small fixes in FGNet class. Tests improvement
victormvy Jul 23, 2024
3ea3a50
Changed download default value to True in FGNet. Fixed targets proper…
victormvy Jul 23, 2024
514a4e3
minor change in FGNet getitem
victormvy Jul 23, 2024
21a8670
Fixed type annoations to make them compatible with older versions
victormvy Jul 23, 2024
e4198dc
Merge pull request #79 from ayrna/adience-changes
victormvy Jul 23, 2024
a7e7684
Merge branch 'development' into datasets
victormvy Jul 23, 2024
728e643
Merge pull request #78 from ayrna/datasets
franberchez Jul 23, 2024
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

## ⚙️ Installation

`dlordinal v2.1.1` is the last version supported by Python 3.8, Python 3.9 and Python 3.10.
`dlordinal v2.2.0` is the last version supported by Python 3.8, Python 3.9 and Python 3.10.

The easiest way to install `dlordinal` is via `pip`:

Expand Down
2 changes: 1 addition & 1 deletion build_tools/run_tutorials.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -euxo pipefail
CMD="jupyter nbconvert --to notebook --inplace --execute --ExecutePreprocessor.timeout=600"

excluded=(
"tutorials/datasets_tutorial.ipynb"
"tutorials/adience_tutorial.ipynb"
"tutorials/dlordinal_with_skorch_tutorial.ipynb"
)

Expand Down
Loading
Loading