Update README.md
Browse files
README.md
CHANGED
@@ -52,4 +52,21 @@ print(time_reduced_hidden_states.shape) # [13, 768]
|
|
52 |
aggregator = nn.Conv1d(in_channels=13, out_channels=1, kernel_size=1)
|
53 |
weighted_avg_hidden_states = aggregator(time_reduced_hidden_states.unsqueeze(0)).squeeze()
|
54 |
print(weighted_avg_hidden_states.shape) # [768]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
```
|
|
|
52 |
aggregator = nn.Conv1d(in_channels=13, out_channels=1, kernel_size=1)
|
53 |
weighted_avg_hidden_states = aggregator(time_reduced_hidden_states.unsqueeze(0)).squeeze()
|
54 |
print(weighted_avg_hidden_states.shape) # [768]
|
55 |
+
```
|
56 |
+
|
57 |
+
# Citation
|
58 |
+
```shell
|
59 |
+
@article{li2022large,
|
60 |
+
title={Large-Scale Pretrained Model for Self-Supervised Music Audio Representation Learning},
|
61 |
+
author={Li, Yizhi and Yuan, Ruibin and Zhang, Ge and Ma, Yinghao and Lin, Chenghua and Chen, Xingran and Ragni, Anton and Yin, Hanzhi and Hu, Zhijie and He, Haoyu and others},
|
62 |
+
year={2022}
|
63 |
+
}
|
64 |
+
|
65 |
+
@article{li2022map,
|
66 |
+
title={MAP-Music2Vec: A Simple and Effective Baseline for Self-Supervised Music Audio Representation Learning},
|
67 |
+
author={Li, Yizhi and Yuan, Ruibin and Zhang, Ge and Ma, Yinghao and Lin, Chenghua and Chen, Xingran and Ragni, Anton and Yin, Hanzhi and Hu, Zhijie and He, Haoyu and others},
|
68 |
+
journal={arXiv preprint arXiv:2212.02508},
|
69 |
+
year={2022}
|
70 |
+
}
|
71 |
+
|
72 |
```
|