/
A simple dialogue pipeline with ASR + NLU

A simple dialogue pipeline with ASR + NLU

This tutorial shows you how to run a simple pipeline (ASR + NLU) where Whisper transcribes your speech and feeds it into the NLU component to run an inference.

Steps:

Since the NLU component is not yet available on PyPI, for now, we will need to clone the repository and install it locally.

  1. Clone the SIC repo

    1. git clone https://github.com/Social-AI-VU/social-interaction-cloud.git

  2. Switch to the nlu_component branch:

cd social-interaction-cloud git checkout nlu_component
  1. Create and activate a virtual environment:

    1. If you are using pure Python environment

      python -m venv venv_sic source venv_sic/bin/activate
    2. If you are using Anaconda environment

      conda create -n venv_sic python=3.12 conda activate venv_sic
  2. Install SIC, nlu and whisper dependencies from local repo: once changing the local code, you need this to compile all again.

    pip install ."[whisper-speech-to-text,nlu]"
  3. Start the Redis server + SIC components, correspondingly. (Don’t forget to run a redis server. See the details here Getting started | Step 1: starting Redis on your laptop ):

    source activate venv_sic # Start the Redis server, followed by NLU and Whisper components redis-server conf/redis/redis.conf & run-whisper & run-nlu &

You can use the following command to manually stop the backend servers, correspondingly:

pkill -f "run-nlu" pkill -f "run-whisper" pkill -f "redis-server"
  1. Open a new terminal and activate the same virtual environment you created earlier

  2. Clone the sic_applications repo

    1. git clone https://github.com/Social-AI-VU/sic_applications.git

  3. Add (trained) nlu model and ontology to the configuration folder sic_applications/conf/nlu. The default names are “model_checkpoint.pt" and "ontology.json".

    image-20241217-142723.png

  4. Run the demo

    cd sic_applications/demos/desktop source activate venv_sic python demo_desktop_asr_nlu.py

 

Related content