Dareplane module for transforming an LSL stream into a stream of embedding vectors.
- Install poetry system-wide in an isolated environment (https://python-poetry.org/docs/)
- Create your environment (conda, venv...)
- Install dependencies with poetry:
poetry install
Testing the controller only :
python signal_embedding/main.pyBy default, it uses the jumping_means.yaml config. You can use another one using the --config argument (more details
in jsonargparse):
python signal_embedding/main.py --config=configs/skorch_nn_Lee2019_MI.yaml Alternatively, you can overwrite one specific parameter of the config (more details in jsonargparse):
python signal_embedding/main.py --signal_embedder.input_stream_name=MockupStreamTo start the server, you can use the following command:
python api/server.pyAgain, the config can be changed via the --config argument:
python api/server.py --config=configs/skorch_nn_Lee2019_MI.yaml Then, you can test the server using tellnet:
telnet 127.0.0.1 8080
RUN