Skip to content

Commit 5c23014

Browse files
committed
fix docs
1 parent a772f46 commit 5c23014

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,10 @@ https://github.com/DIDONEproject/music_symbolic_features
3535

3636
## Changelog
3737

38-
#### v1.1.6
39-
* fix bug on previoous release and add jsimbollic remove repetitions
38+
#### v1.2
39+
* Remove musif's native support on jsymbollic features. Add notebook to extract them independently
40+
* Improve documentation
41+
* fix bug on previous release
4042

4143
#### v1.1.5
4244
* fix minor bug that caused very unnecesary large memory usage

docs/source/Custom_Configuration.md

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Here we present an example of using ExtracConfiguration class by subclassing it
44
In DIDONE project's case, It was needed to load many *.csv files contatining metadata information and include this inofrmation into the DataFrame that musif extracts. This metadata information loaded in our Custom conf, was later used by our custom modules to include it in the final DataFrame. Check how we inherit parent class 'ExtractConfiguration' and add some customized methods:
55

66
## Code
7+
```
78
from glob import glob
89
from os import path
910
@@ -28,3 +29,4 @@ class CustomConf(ExtractConfiguration):
2829
self.characters_gender = read_dicts_from_csv(
2930
path.join(self.internal_data_dir, "characters_gender.csv")
3031
)
32+
```

docs/source/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ repo](https://github.com/DIDONEproject/musif/).
4444
1. A. Llorens, F. Simonetta, M. Serrano, and Á. Torrente, “musif: a Python package for symbolic music feature extraction,” in Proceedings of the Sound and Music Computing Conference, Stockholm, Sweden, 2023.
4545
2. F. Simonetta, A. Llorens, M. Serrano, E. García-Portugués, and Á. Torrente, “Optimizing Feature Extraction for Symbolic Music,” in Proceedings of the 24th International Society for Music Information Retrieval Conference, Milan, Nov. 2023.
4646

47+
<link rel="shortcut icon" href="./_static/imgs/logo.png"/>
4748
<p style="text-align:center;margin:100px 0;">
4849
<a href="https://www.ucm.es" target="_blank"><img src="./_static/imgs/ucm.jpg" alt="Logo UCM" align="middle"></a>
4950
<a href="https://iccmu.es/" target="_blank"> <img src="./_static/imgs/iccmu.png" alt="Logo ICCMU" align="middle"></a>
5051
<a href="https://www.uc3m.es" target="_blank"><img src="./_static/imgs/uc3m.png" alt="Logo UC3M" align="middle"></a>
5152
<a href="https://erc.europa.eu/" target="_blank"><img src="./_static/imgs/erc.jpg" alt="Logo DIDONE ERC" align="middle"></a>
52-
</p>
53-
<link rel="icon" type="image/png" href="./_static/imgs/logo.png" alt="Logo DIDONE"/>
53+
</p>

0 commit comments

Comments
 (0)