Skip to content

Commit

Permalink
Mod: Update imports and versioning for 0.4.6.
Browse files Browse the repository at this point in the history
  • Loading branch information
Labbeti committed Oct 10, 2023
1 parent 94db4c2 commit 7648c63
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All notable changes to this project will be documented in this file.

## [0.4.6] UNRELEASED
## [0.4.6] 2023-10-10
### Added
- Argument `clean_archives` for `SPICE` download.

Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ keywords:
- captioning
- audio-captioning
license: MIT
version: 0.4.5
date-released: '2023-09-12'
version: 0.4.6
date-released: '2023-10-10'
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -233,10 +233,10 @@ If you use this software, please consider cite it as below :
Labbe_aac-metrics_2023,
author = {Labbé, Etienne},
license = {MIT},
month = {9},
month = {10},
title = {{aac-metrics}},
url = {https://github.com/Labbeti/aac-metrics/},
version = {0.4.5},
version = {0.4.6},
year = {2023},
}
```
Expand Down
22 changes: 11 additions & 11 deletions src/aac_metrics/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

"""Metrics for evaluating Automated Audio Captioning systems, designed for PyTorch.
"""
"""Metrics for evaluating Automated Audio Captioning systems, designed for PyTorch. """


__author__ = "Etienne Labbé (Labbeti)"
__author_email__ = "[email protected]"
__license__ = "MIT"
__maintainer__ = "Etienne Labbé (Labbeti)"
__name__ = "aac-metrics"
__status__ = "Development"
__version__ = "0.4.6"


from .classes.base import AACMetric
Expand Down Expand Up @@ -56,18 +64,10 @@
"download",
"eval",
"info",
"load_metric",
]


__name__ = "aac-metrics"
__author__ = "Etienne Labbé (Labbeti)"
__author_email__ = "[email protected]"
__license__ = "MIT"
__maintainer__ = "Etienne Labbé (Labbeti)"
__status__ = "Development"
__version__ = "0.4.5"


def load_metric(name: str, **kwargs) -> AACMetric:
"""Load a metric class by name.
Expand Down

0 comments on commit 7648c63

Please sign in to comment.