forked from AlexUserForVA/AudioTagger
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e116008
commit a726891
Showing
119 changed files
with
2,692 additions
and
11,725 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Minimal makefile for Sphinx documentation | ||
# | ||
|
||
# You can set these variables from the command line. | ||
SPHINXOPTS = | ||
SPHINXBUILD = sphinx-build | ||
SOURCEDIR = . | ||
BUILDDIR = _build | ||
|
||
# Put it first so that "make" without argument is like "make help". | ||
help: | ||
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) | ||
|
||
.PHONY: help Makefile | ||
|
||
# Catch-all target: route all unknown targets to Sphinx using the new | ||
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). | ||
%: Makefile | ||
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Sphinx build info version 1 | ||
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. | ||
config: 0e0ba0e032550f0328d7183ad5e743b8 | ||
config: bc98726097488efc54704977655c58bd | ||
tags: 645f666f9bcd5a90fca523b33c5a78b7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Backend | ||
======= | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
consumer | ||
webserver |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
Consumer | ||
======== | ||
|
||
.. automodule:: server.consumer | ||
|
||
Example Predictor | ||
----------------- | ||
|
||
.. automodule:: server.consumer.predictors.example_predictor.dummy_predictor | ||
:members: | ||
|
||
DCASE Predictor | ||
--------------- | ||
|
||
.. automodule:: server.consumer.predictors.dcase_predictor_provider.dcase_predictor_provider | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
Audio-Tagger | ||
============ | ||
|
||
The Audio-Tagger is designed as a general-purpose tool to make predictions | ||
along with visualizations on live-audio input. | ||
For example, we provide a DNN-based audio scene classification predictor | ||
based on 2018's DCASE-challenge. | ||
|
||
The system is designed as a server-client architecture. | ||
The server is responsible for all audio IO and for performing predictions. | ||
The audio input can either come from a WAV-file or from live microphone input. | ||
The client can control the server and receive the predictions | ||
through a simple REST-API. | ||
We provide an exemplary GUI written in Kivy along with this project. | ||
Please follow the README to setup the required Python environments. | ||
|
||
Modules | ||
======= | ||
|
||
.. toctree:: | ||
:maxdepth: 3 | ||
|
||
backend | ||
|
||
Indices and tables | ||
================== | ||
|
||
* :ref:`genindex` | ||
* :ref:`modindex` | ||
* :ref:`search` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Webserver | ||
========= | ||
.. _webserver: | ||
|
||
.. automodule:: server.webserver | ||
:members: |
Oops, something went wrong.