Skip to content

Commit

Permalink
Merge pull request #85 from Polochon-street/add-training-triplets-db
Browse files Browse the repository at this point in the history
Add training triplets db
  • Loading branch information
Polochon-street authored Sep 16, 2024
2 parents 93e7523 + fb6043d commit c867708
Show file tree
Hide file tree
Showing 6 changed files with 512 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog

## bliss 0.9.1
* Expose the Mahalanobis distance in the library feature, reading the
learned matrix in metric learning.
* Add training triplets to the database, used in conjunction with
https://github.com/Polochon-street/bliss-metric-learning to do metric learning.
* Add Mahalanobis distance.

## bliss 0.9.0
Expand Down
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ bench = []
library = [
"serde", "dep:rusqlite", "dep:dirs", "dep:tempdir",
"dep:anyhow", "dep:serde_ini", "dep:serde_json",
"dep:indicatif",
"dep:indicatif", "ndarray/serde"
]
serde = ["dep:serde", "extended-isolation-forest/serde"]

Expand Down
7 changes: 7 additions & 0 deletions data/old_config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"config_path": "/tmp/bliss-rs/config.json",
"database_path": "/tmp/bliss-rs/songs.db",
"features_version": 1,
"number_cores": 8,
"mpd_base_path": "/tmp/MPD/"
}
Loading

0 comments on commit c867708

Please sign in to comment.