Skip to content

Commit 5e85e37

Browse files
committed
Blog: upload the now-playing blog
1 parent 313dc91 commit 5e85e37

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

app/blog/posts/now-playing-implementation.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: now-playing-implementation
2+
title: Now-Playing Research Paper: Streamlined Implementation
33
publishedAt: '2024-05-26'
44
summary: 'Streamlined implementation of the now-playing research paper'
55
tags:

app/blog/posts/now-playing.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: now-playing
2+
title: Now-Playing Research Paper: Summarisation of the paper
33
publishedAt: '2025-05-26'
44
summary: 'Brief summarisation about the Now Playing research paper'
55
tags:
@@ -31,7 +31,7 @@ This paper presents the music recognizer build using combining **state-of-the-ar
3131
* The neural network fingerprinter (NNF) job is to analyze a few seconds of audio and emits a single embedding at a rate of one per second.
3232
* The neural network fingerprinter architecture consist of Convolutions and divide-and-encode layers (full connected layers).
3333
* The Architecture:
34-
![Pasted image 20250514220504.png](/posts/assets/now-playing-arch.png "Image Ref: Now Playing: Continuous low-power music recognition")
34+
![now-playing-arch](public/assets/now-playing-arch.png)
3535
*Image Ref: [Now Playing: Continuous low-power music recognition](https://arxiv.org/abs/1711.10958)*
3636
* All layers except for the final divide-and-encode layer use the ELU activation function and batch normalization.
3737
* The network is trained using the triplet loss function, which uses three audio segments anchor positive audio segment, negative audio segment, we tried to minimize the anchor and positive audio segment distance while increasing distance of anchor and negative audio segment.

next.config.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ import NextConfig from 'next';
33
const nextConfig = {
44
output: 'export',
55
basePath: process.env.PAGES_BASE_PATH,
6+
assetPrefix: process.env.PAGES_BASE_PATH,
7+
images: {
8+
unoptimized: true, // Allow images to be unoptimized when deploying on GitHub Pages
9+
},
610
};
711

812
export default nextConfig;
File renamed without changes.

0 commit comments

Comments
 (0)