Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
anupsingh15 authored Jan 14, 2024
1 parent 59c893d commit e44b854
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,28 +55,27 @@
```python
├── config
│ ├── create_refdbase.yaml # Used for parameters defined in /src/index/create_refdbase.
│ ├── main.yaml # Contains all the important parameters of the system and is used for parameters defined in main.py.
│ ├── main.yaml # Used for parameters defined in main.py. It contains parameters for model training.
│ └── search.yaml # Used for parameters defined in /src/index/search.py.
├── src
│ ├── index
│ │ ├──create_refdbase.py
│ │ └──search.py
│ │ ├──create_refdbase.py # creates fingerprints database and builds an index.
│ │ └──search.py # performs search and also used for demonstration purposes.
│ ├── model
│ │ ├──custom_CNN.py # DL model used as fingerprinter
│ │ └──feedforward.py # projection layer (NN architecture)
│ │ ├──custom_CNN.py # model
│ │ └──feedforward.py # projection layer
│ ├── train
│ │ └──contrastive_learning.py # Pytorch Lightning module for training the model.
│ ├── utils
│ │ ├──audio.py #Reads and preprocess the audio files.
│ │ ├──audio.py # Reads and preprocess the audio files.
│ │ ├──callbacks.py # Used during training to track progress
│ │ ├──dataclass.py # Custom datatype to store reference database. Helps in fast appending to numpy array.
│ │ ├──dataset.py # Custom dataset class compatible with our model training.
│ │ ├──features.py # To transform raw audio into time-frequency representation.
│ │ ├──losses.py # Loss metric defined used for training.
│ │ └──similarity.py # Similarity metric used to find similarity between embeddings during training.
│ ├── main.py # Main module to start training.
│ └──tutorial.ipynb #For audio retrieval demo purposes.
```
│ └──tutorial.ipynb #For audio retrieval demo purposes
</div>


Expand Down

0 comments on commit e44b854

Please sign in to comment.