Giter VIP home page Giter VIP logo

Comments (1)

mimbres avatar mimbres commented on May 29, 2024 1

@galarlo
Thanks for your interest in our work.

Yes, maybe it is possible. I would start with the default setup first and train the model on the train-set of this repo. Reducing the segment length or increasing the dimension can improve performance, but at the scale of your dataset it doesn't seem necessary. Default segment length of 1 sec can be used for 0.5 seconds input by simple zero-padding.

This repo performs a segment-level search, whereas your scenario is a file-level search. Modifications are needed on the post-processing side. Current search method outputs Top@K list of matching segments for each input first, and then within Top@C candidates it produces a list by match-ranking. Since it does not store 'segment ID'-to-'file ID' pairs info, you may need to construct the info to produce a file-match ranking.

W don't have any threshold parameters, which is directly related to FP and FN. However, the number of segment-search output K, and the number of candidates C are somewhat related to FP and FN.

@click.option('--k_probe', '-k', default=20, type=click.INT,

pred_ids = candidates[np.argsort(-_scores)[:10]]

K=20 and C=10 by default, and increasing K and C will get less FN. Another issue is that your scenario allows various input lengths while current method uses fixed-lengths for each search. You may need some ideas to summarize various input length results into the final estimate.

from neural-audio-fp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.