Skip to main content

Command Line Interface for Behavioral Signals Emotion and Behavior Recognition Engine in the Cloud

Project description

# Behavioral Signals CLI

Command Line Interface for Behavioral Signals' Emotion and Behavior Recognition in the Cloud


* Free software: MIT license
* Requires Python 2 version 2.7

Features
--------
The CLI allows you to easily:

- Submit multiple audio files to the API,
- Get behavior and emotion recognition results, call-level overview and frame-level details,
- Get speech recognition results


## Installation

* Install from PyPI
```
pip install behavioral-signals-cli
```

* Install the most up-to-date version by cloning this repository and run

```
python setup.py install
```


## Getting Started

* First request your account id and token for the Behavioral Signals Web API by sending an email to nassos@behavioralsignals.com

* To test the service, you will need to download and extract the following set of audio and corresponding json files: [https://bitbucket.org/behavioralsignals/api-cli/downloads/data.zip]

* Change working directory to data/audio.

* Create the following configuration file, bsi-cli.conf:
```
sections:
default:
# The url of the web API
apiurl: http://<WEB_API_IP_ADDRESS>:8080
# -- this token will not work -- replace it by your own token and id
apitoken: "xxxxx"
# -- this id will not work -- replace it by your own token and id
apiid: "yyyy"
```

* Run the CLI to submit the test files to the API:
```
behavioral_signals_cli --config bsi-cli.conf send_audio regression_test.csv pids.log
```
The .csv file just contains a list of the test audio files, plus a number indicating the number of channels in the files. The pids.log file is an empty file where the process ids of the created jobs will be written.

* You can then start collecting the results:
```
behavioral_signals_cli get_results pids.log results_dir
behavioral_signals_cli get_results_frames pids.log results
```
This may take some time since the CLI will keep polling for results till processing is finished. Inside the results folder you will get one .json file for each test audio file. The name of the json file will be the same as that of the corresponding audio file with the addition of a process id.

* Compare the generated json files with the ones you will find inside the results/ref folder. There could potentially be minor numerical differences but otherwise the new files should be very close to the reference ones.


Configuring the CLI
--------
The CLI requires to be properly configured in order to interact with the Behavioral Signals API.
The main variables needed to be configured are: the application id (apiid) a unique id provided by Behavioral Signals, application token (apitoken) also provided by Behavioral Signals and the current address (apiurl) of the callER service.

It allows a flexible configuration scheme by accepting with increasing priority:

- internal defaults, apiurl: https://api.behavioralsignals.com specified in the source code of the cli
- environment variables
- external configuration file
- command line opions


##### Environment variables
The CLI may be used by exporting the following as environmental variables and provide the apiurl as a command line optional parameter (see Getting Help section on how to provide the apiurl value):

- BSI_API_ID: the apiid provided by BSI
- BSI_API_TOKEN: the apitoken provided by BSI

##### Configuration file
The CLI may be used by configuring all the required variables in a configuration file with sections,
see the configuration file of the [demo](https://bitbucket.org/behavioralsignals/api-cli/src/master/demo/).

If not specified, it will look for bsi-cli.conf in the current directory or in the home directory for the .bsi-cli.conf.

##### Command line
If the required variables are provided as command line params, see the Getting Help section how this is done, all the other configurations will be ignored.

#### Display current configuration values
```
behavioral_signals_cli config or bsi-cli config
```

The output would be of the form:
```
*** bsi-cli configuration
apiid : yyyy
apitoken : xxxxx
apiurl : http://api.bsis.me:8080
configLocation : bsi-cli.conf
configfile : None
log : WARNING
stag : default
***
```


Using the Behavioral Signals CLI
--------

#### Submit audio files to the Behavioral Signals API
* Create a .csv file whose each row contains metadata for each of the audio files wish to send to the callER service. The .csv file must have the following form (order matters):

```
path/to/audio/file, number of channels, call direction, agent Id, agentTeam, campaign Id, calltype, calltime, timezone, ANI, meta.
```

The calltime in order to be parsed correctly should have one of the following formats:
mm/dd/YYYY, mm-dd-YYYY, YYYY-mm-dd, dd-mm(letters)-YYYY, mm(letters)-dd-YYYY, dd/mm(letters)/YYYY, also it should be noted that timezone for the time being is ignored.

* Create the bsi-cli.conf file as described in configuration section.

* Run the CLI to submit the audio files:

```
behavioral_signals_cli --config [configuration_file] send_audio [csv_file] [pids_log]
```

The [pids_log] file is created automatically and stores the unique ids of the successfully created jobs, which are necessary in order to get the results.


#### Get results from the Behavioral Signals API

* Run the CLI to get the emotion/behavior recognition call-level overview, diarization and other results:
```
behavioral_signals_cli --config [configuration_file] get_results [pids_log] [results_dir]
```

The results will be written as .json files inside [results_dir] (polling may be performed if results
are not readily available).

* Run the CLI to get frame-level results:
```
behavioral_signals_cli --config [configuration_file] get_results_frames [pids_log] [results_dir]
```

The results will be written as "[filename]_[pid].json" files inside [results_dir] (polling may be performed if results are not readily available).

* Run the CLI to get ASR results:
```
behavioral_signals_cli --config [configuration_file] get_results_asr [pids_log] [results_dir]
```

The results will be written as "[filename]_[pid]_words.json" files inside [results_dir] (polling may be performed if results are not readily available).

#### You may use bsi-cli as an alias to behaviorals_signals_cli

#### Getting Help
```
behavioral_signals_cli --help or bsi-cli --help
```



Credits
---------

This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage


=======
History
=======

0.1.0 (2017-11-17)
------------------

* First release on PyPI.


Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

behavioral_signals_cli-1.3.0.tar.gz (24.4 kB view hashes)

Uploaded Source

Built Distribution

behavioral_signals_cli-1.3.0-py2-none-any.whl (16.2 kB view hashes)

Uploaded Python 2

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page