CPU Container
Transcription:Batch Real-Time Deployments:ContainerPrerequisites
Docker run
Once the Docker image has been pulled into a local environment, it can be started using the Docker run
command. More details about operating and managing the container are available in the Docker API documentation.
Batch Transcription
Input Methods
There are two different methods for passing an audio file into a container:
# Stream the audio through the container via standard input (STDIN)
cat ~/$AUDIO_FILE | docker run -i \
-e LICENSE_TOKEN=eyJhbGciOiJ... \
batch-asr-transcriber-en:10.1.0
# Pull an audio file from a mapped directory into the container
# NOTE: the audio file must be mapped into the container with `:/input.audio`
docker run -i -v ~/$AUDIO_FILE:/input.audio \
-e LICENSE_TOKEN=eyJhbGciOiJ... \
batch-asr-transcriber-en:10.1.0
The Docker run
options used are:
Name | Description |
---|---|
--env, -e | Set environment variables |
--interactive , -i | Keep STDIN open even if not attached |
--volume , -v | Bind mount a volume |
See Docker docs for a full list of the available options.
Both the methods will produce the same transcribed outcome and will write a JSON response to standard output (STDOUT).
The intermediate files created during the transcription are stored in /home/smuser/work
. This is the case whether running the container as a root or non-root user.
Here is an example output:
{
"format": "2.8",
"metadata": {
"created_at": "2020-06-30T15:43:50.871Z",
"type": "transcription",
"language_pack_info": {
"adapted": false,
"itn": true,
"language_description": "English",
"word_delimiter": " ",
"writing_direction": "left-to-right"
},
"transcription_config": {
"language": "en",
"diarization": "none"
}
},
"results": [
{
"alternatives": [
{
"confidence": 1.0,
"content": "Are",
"language": "en",
"speaker": "UU"
}
],
"end_time": 3.61,
"start_time": 3.49,
"type": "word"
},
{
"alternatives": [
{
"confidence": 1.0,
"content": "on",
"language": "en",
"speaker": "UU"
}
],
"end_time": 3.73,
"start_time": 3.61,
"type": "word"
}
]
}
Determining success
The exit code of the container will determine if the transcription was successful. There are two exit code possibilities:
- Exit Code == 0 : The transcript was a success; the output will contain a JSON output defining the transcript (more info below)
- Exit Code != 0 : the output will contain a stack trace and other useful information. This output should be used in any communication with Speechmatics support to aid understanding and resolution of any problems that may occur
Modifying the Image
Building an Image
Using STDIN to pass files in and obtain the transcription may not be sufficient for all use cases. It is possible to build a new Docker Image that will use the Speechmatics Image as a layer if required for your specific workflow. To include the Speechmatics Docker Image inside another image, ensure to add the pulled Docker image into the Dockerfile for the new application.
Requirements for a custom image
To ensure the Speechmatics Docker image works as expected inside the custom image, please consider the following:
- Any audio that needs to be transcribed must to be copied to a file called
/input.audio
inside the running container - To initiate transcription, call the application
pipeline
. Thepipeline
will start the transcription service and use/input.audio
as the audio source. - When running
pipeline
, the working directory must be set to/opt/orchestrator
, using either the DockerfileWORKDIR
directive, thecd
command or similar means. - Once
pipeline
finishes transcribing, ensure you move the transcription data outside the container
Dockerfile
To add a Speechmatics Docker image into a custom one, the Dockerfile must be modified to include the full image name of the locally available image.
Example: Adding Global English (en) with tag 10.1.0 to the Dockerfile
FROM batch-asr-transcriber-en:10.1.0
ADD download_audio.sh /usr/local/bin/download_audio.sh
RUN chmod +x /usr/local/bin/download_audio.sh
CMD ["/usr/local/bin/download_audio.sh"]
Once the above image is built, and a container instantiated from it, a script called download_audio.sh
will be executed (this could do something like pulling a file from a webserver and copying it to /input.audio
before starting the pipeline application). This is a very basic Dockerfile to demonstrate a way of orchestrating the Speechmatics Docker Image.
NOTE: For support purposes, it is assumed the Docker Image provided by Speechmatics has been unmodified. If you experience issues, Speechmatics support will require you to replicate the issues with the unmodified Docker image e.g. batch-asr-transcriber-en:10.1.0
Parallel processing guide
For customers who are looking to improve job turnaround time and who are able to assign sufficient resources, it is possible to pass a parallel transcription parameter to the container to take advantage of multiple CPUs. The parameter is called parallel and the following example shows how it can be used. In this case to use 4 cores to process the audio you would run the container like this:
docker run -i -rm -v ~/tmp/shipping-forecast.wav:/input.audio \
-v ~/tmp/config.json:/config.json \
batch-asr-transcriber-en:10.1.0 \
--parallel=4
Depending on your hardware, you may need to experiment to find the optimum performance. We've noticed significant improvement in turnaround time for jobs by using this approach.
If you limit or are limited on the number of CPUs you can use (for example your platform places restrictions on the number of cores you can use, or you use the --cpu flag in your docker run command), then you should ensure that you do not set the parallel value to be more than the number of available cores. If you attempt to use a setting in excess of your free resources, then the container will only use the available cores.
If you simply increase the parallel setting to a large number you will see diminishing returns. Moreover, because files are split into 5 minute chunks for parallel processing, if your files are shorter than 5 minutes then you will see no parallelization (in general the longer your audio files the more speedup you will see by using parallel processing).
If you are running the container on a shared resource you may experience different results depending on what other processes are running at the same time.
The optimum number of cores is N/5, where N is the length of the audio in minutes. Values higher than this will deliver little to no value, as there will be more cores than chunks of work. A typical approach will be to increment the parallel setting to a point where performance plateaus, and leave it at that (all else being equal).
For large files and large numbers of cores, the time taken by the first and last stages of processing (which cannot be parallelized) will start to dominate, with diminishing returns.
Real-Time transcription
Here's an example of how to start the container from the command-line:
docker run -p 9000:9000 -p 8001:8001 -e LICENSE_TOKEN='example' rt-asr-transcriber-en:10.1.0
The Docker run
options used are:
Name | Description |
---|---|
--port, -p | Expose ports on the container so that they are accessible from the host |
--env, -e | Set the value of an environment variable |
See Docker docs for a full list of the available options.
Input Modes
The supported method for passing audio to a real time container is to use a Websocket. A session is setup with configuration parameters passed in using a StartRecognition
message, and thereafter audio is sent to the container in binary chunks, with transcripts being returned in an AddTranscript
message.
In the AddTranscript
message individual result segments are returned, corresponding to audio segments defined by pauses (and other latency measurements).
Output
The results list in the V2 Output format are sorted by increasing start_time
, with a supplementary rule to sort by decreasing end_time
. See below for an example:
{
"message": "AddTranscript",
"format": "2.9",
"metadata": {
"transcript": "full tell radar",
"start_time": 0.11,
"end_time": 1.07
},
"results": [
{
"type": "word",
"start_time": 0.11,
"end_time": 0.4,
"alternatives": [{ "content": "full", "confidence": 0.7 }]
},
{
"type": "word",
"start_time": 0.41,
"end_time": 0.62,
"alternatives": [{ "content": "tell", "confidence": 0.6 }]
},
{
"type": "word",
"start_time": 0.65,
"end_time": 1.07,
"alternatives": [{ "content": "radar", "confidence": 1.0 }]
}
]
}
Transcription duration information
The container will output a log message after every transcription session to indicate the duration of speech transcribed during that session. This duration only includes speech, and not any silence or background noise which was present in the audio. It may be useful to parse these log messages if you are asked to report usage back to us, or simply for your own records.
The format of the log messages produced should match the following example:
2020-04-13 22:48:05.312 INFO sentryserver Transcribed 52 seconds of speech
Consider using the following regular expression to extract just the seconds part from the line if you are parsing it:
^.+ .+ INFO sentryserver Transcribed (\d+) seconds of speech$
Running a Container in Read-Only Mode
Users may wish to run the container in read-only mode. This may be necessary due to their regulatory environment, or a requirement not to write any media file to disk. An example of how to do this is below.
docker run -it --read-only \
-p 9000:9000 \
--tmpfs /tmp \
-e LICENSE_TOKEN=$TOKEN_VALUE \
rt-asr-transcriber-en:10.1.0
The container still requires a temporary directory with write permissions. Users can provide a directory (e.g /tmp
) by using the --tmpfs
Docker argument. A tmpfs mount is temporary, and only persisted in the host memory. When the container stops, the tmpfs mount is removed, and files written there won’t be persisted.
If customers want to use the shared custom dictionary cache feature, they must also specify the location of cache and mount it as a volume
docker run -it --read-only \
-p 9000:9000 \
--tmpfs /tmp \
-v /cachelocation:/cache \
-e LICENSE_TOKEN=$TOKEN_VALUE \
-e SM_CUSTOM_DICTIONARY_CACHE_TYPE=shared \
rt-asr-transcriber-en:10.1.0
Running a Container as a non-root user
A Real-Time container can be run as a non-root user with no impact to feature functionality. This may be required if a hosting environment or a company's internal regulations specify that a container must be run as a named user.
Users may specify the non-root command by the docker run –-user $USERNUMBER:$GROUPID
. User number and group ID are non-zero numerical values from a value of 1 up to a value of 65535
An example is below:
docker run -it --user 100:100 \
-p 9000:9000 \
-e LICENSE_TOKEN=$TOKEN_VALUE \
rt-asr-transcriber-en:10.1.0
How to use a Shared Custom Dictionary Cache
For more information on how the Custom Dictionary works, please see the Speech API Guide.
The Speechmatics Real-Time Container includes a cache mechanism for custom dictionaries to improve set-up performance for repeated use. By using this cache mechanism, transcription will start more quickly when repeatedly using the same custom dictionaries. You will see performance benefits on re-using the same custom dictionary from the second time onwards.
It is not a requirement to use the shared cache to use the Custom Dictionary.
The cache volume is safe to use from multiple containers concurrently if the operating system and its filesystem support file locking operations. The cache can store multiple custom dictionaries in any language used for transcription. It can support multiple custom dictionaries in the same language.
If a custom dictionary is small enough to be stored within the cache volume, this will take place automatically if the shared cache is specified.
For more information about how the shared cache storage management works, please see Maintaining the Shared Cache.
We highly recommend you ensure any location you use for the shared cache has enough space for the number of custom dictionaries you plan to allocate there. How to allocate custom dictionaries to the shared cache is documented below.
How to set up the Shared Cache
The shared cache is enabled by setting the following value when running transcription:
- Cache Location: You must volume map the directory location you plan to use as the shared cache to
/cache
when submitting a job SM_CUSTOM_DICTIONARY_CACHE_TYPE
: (mandatory if using the shared cache) This environment variable must be set toshared
SM_CUSTOM_DICTIONARY_CACHE_ENTRY_MAX_SIZE
: (optional if using the shared cache). This determines the maximum size of any single custom dictionary that can be stored within the shared cache in bytes- E.G. a
SM_CUSTOM_DICTIONARY_CACHE_ENTRY_MAX_SIZE
with a value of 10000000 would set a max storage size of any custom dictionary at 10MB - For reference a custom dictionary wordlist with 1000 words produces a cache entry of size around 200 kB, or 200000 bytes
- A value of
-1
will allow every custom dictionary to be stored within the shared cache. This is the default assumed value - A custom dictionary cache entry larger than the
SM_CUSTOM_DICTIONARY_CACHE_ENTRY_MAX_SIZE
will still be used in transcription, but will not be cached
- E.G. a
Maintaining the Shared Cache
If you specify the shared cache to be used and your custom dictionary is within the permitted size, Speechmatics Real-Time Container will always try to cache the custom dictionary. If a custom dictionary cannot occupy the shared cache due to other cached custom dictionaries within the allocated cache, then older custom dictionaries will be removed from the cache to free up as much space as necessary for the new custom dictionary. This is carried out in order of the least recent custom dictionary to be used.
Therefore, you must ensure your cache allocation large enough to handle the number of custom dictionaries you plan to store. We recommend a relatively large cache to avoid this situation if you are processing multiple custom dictionaries using the batch container (e.g 50 MB). If you don't allocate sufficient storage this could mean one or multiple custom dictionaries are deleted when you are trying to store a new custom dictionary.
It is recommended to use a docker volume with a dedicated filesystem with a limited size. If a user decides to use a volume that shares filesystem with the host, it is the user's responsibility to purge the cache if necessary.
Creating the Shared Cache
In the example below, transcription is run where an example local docker volume is created for the shared cache. It will allow a custom dictionary of up to 5MB to be cached.
docker volume create speechmatics-cache
docker run --rm -d \
-p 9000:9000 \
-e LICENSE_TOKEN='example' \
-e SM_CUSTOM_DICTIONARY_CACHE_TYPE=shared \
-e SM_CUSTOM_DICTIONARY_CACHE_ENTRY_MAX_SIZE=5000000 \
-v speechmatics-cache:/cache \
rt-asr-transcriber-en:10.1.0
speechmatics transcribe --additional-vocab gnocchi --url ws://localhost:9000/v2 --ssl-mode=none test.mp3
Viewing the Shared Cache
If all set correctly and the cache was used for the first time, a single entry in the cache should be present.
The following example shows how to check what Custom Dictionaries are stored within the cache. This will show the language, the sampling rate, and the checksum value of the cached dictionary entries.
ls $(docker inspect -f "{{.Mountpoint}}" speechmatics-cache)/custom_dictionary
en,16kHz,bef53e5bcca838a39c3707f1134bda6a09ff87aaa09203617528774734455edd
Reducing the Shared Cache Size
Cache size can be reduced by removing some or all cache entries.
rm -rf $(docker inspect -f "{{.Mountpoint}}" speechmatics-cache)/custom_dictionary/*
Before manually purging the cache, ensure that no containers have the volume mounted, otherwise an error during transcription might occur. Consider creating a new docker volume as a temporary cache while performing purging maintenance on the cache.
Linking to a GPU inference container
The GPU inference container allows multiple speech recognition containers to offload heavy inference tasks to a GPU, where they can be batched and parallelized more efficiently.
The CPU is run as normal, but with the additional environment variable SM_INFERENCE_ENDPOINT
which indicates the GRPC endpoint of the inference server.
Speech containers running in GPU mode use less local CPU and memory, so they can be packed more densely on a server.
docker run \
--rm \
-it \
-e SM_INFERENCE_ENDPOINT=<server>:<port> \
-v $PWD/license.json:/license.json \
-v $PWD/example.wav:/input.audio \
<speech_container_image_name>
When the inference server is not available
At start up, the container will make a TCP connection to the SM_INFERENCE_ENDPOINT
server to establish if it's accessible.
If this test fails, the transcription will terminate with an error.
Batch
In the event of a connection error during transcription, the transcriber will retry for up to 60 seconds using an exponential back off.
The length of this retry period can be configured with the SM_SPLIT_RETRY_TIMEOUT
environment variable, which is a whole number of seconds.
Real-time
In RT mode, the transcriber will retry connection to the server for a maximum of 250ms before giving up.
For more details see GPU inference container
System requirements
Speechmatics containerized deployments are built on the Docker platform. At present a separate Docker image is required for each language to be transcribed. Each docker image takes about 3GB of storage. Each running container will require the following resources:
- 1 vCPU
- 2-5GB RAM
- 100MB hard disk space If you are using the enhanced model, it is recommended to use the upper limit of the RAM recommendations
Please Note: When using the parallel processing functionality, of the batch container, this will require more resource due to the intensive memory required. When using parallel processing, we recommend using (NxRAM requirements) where N is the number of cores intended to be used for parallel processing. So if 2 cores were required for parallel processing, the RAM requirements would be up to 10GB
Host recommended specs
Standard operating point
- The host machine requires a processor with at least a Broadwell class microarchitecture or newer, with AVX2 instruction support
- If you are using a hypervisor, you should check it is configured to allow VM access to the AVX2 instructions
Enhanced operating point
- The host machine should have a processor with at least a Cascade Lake class microarchitecture or newer, with AVX512-VNNI instruction support. This will greatly improve transcription processing speed. Support for AVX2 instructions is required
- If you are using a hypervisor, you should check it is configured to allow VM access to the AVX2 and AVX512-VNNI instructions
Architecture
- Batch transcription
- Real-Time transcription
- Processes one input file and outputs a resulting transcript in a predefined language in a number of supported outputs
- These outputs and relevant metadata are described in more detail in the Speech API guide here
- Is licensed for languages and speech features which vary depending upon each individual contract
- Speech features are described after the Speech API guide
- Requires either a license file or license token before transcription starts
- Can run in a mode that parallelises processing across multiple cores
- Supports input file sizes up to 2 hours in length or 4GB in size
- Treats all data is transitory. Once a container completes its transcription it removes all record of the operation
- Provides the ability to transcribe speech data in a predefined language from a live stream or a recorded audio file.
- Speech features are described in the Speech API guide
- Multiple instances of the container can be run on the same Docker host. This enables scaling of a single language or multiple-languages as required.
- All data is transitory, once a container completes its transcription it removes all record of the operation, no data is persisted.
Health service
The container is able to expose an HTTP health service, which offers startup, liveness and readiness probes. This is accessible from Port 8001, and has 3 endpoints, started
, live
and ready
. These can be used to see whether all services in the container are running or active respectively. This may be especially helpful if you are deploying the container into a Kubernetes cluster. If you are using Kubernetes, we recommend that you also refer to the Kubernetes documentation around
liveness and readiness probes.
The health service is enabled by default and should run as a subprocess of the main entrypoint to the container.
Endpoints
The health service offers three endpoints:
/started
This endpoint provides a startup probe. It can be queried using an HTTP GET request. You must include the relevant port, 8001, in the request.
This probe indicates whether all services in the container have successfully started. Once it returns a successful response code, it should never return an unsuccessful response code later.
Possible responses:
200
if all of the services in the container have successfully started.503
otherwise.
A JSON object is also returned in the body of the response, indicating the status.
Example:
$ curl -i address.of.container:8001/started
HTTP/1.0 200 OK
Server: BaseHTTP/0.6 Python/3.8.5
Date: Mon, 08 Feb 2021 12:46:21 GMT
Content-Type: application/json
{
"started": true
}
/live
This endpoint provides a liveness probe. It can be queried using an HTTP GET request. You must include the relevant port, 8001, in the request.
This probe indicates whether all services in the container are active. The services in the container send regular updates to the health service, if they don't send an update for more than 10 seconds then they will be marked as 'dead' and this endpoint will return an unsuccessful response code. For example, if the WebSocket server in the container were to crash, this endpoint should indicate that.
Possible responses:
200
if all of the services in the container have successfully started, and have recently sent an update to the health service.503
otherwise.
A JSON object is also returned in the body of the response, indicating the status.
Example:
$ curl -i address.of.container:8001/live
HTTP/1.0 200 OK
Server: BaseHTTP/0.6 Python/3.8.5
Date: Mon, 08 Feb 2021 12:46:45 GMT
Content-Type: application/json
{
"alive": true
}
/ready
This endpoint provides a readiness probe. It can be queried using an HTTP GET request.
The container has been designed to process one audio stream at a time. This probe indicates whether the container is currently transcribing something. If the server is already transcribing an audio stream, it is considered not ready. This probe can be used as a scaling mechanism.
Note: The readiness check is accurate within a 2-second resolution. If you do use this probe for load balancing, be aware that bursts of traffic within that 2-second window could all be allocated to a single container since it's readiness state will not change.
Possible responses:
200
if the container is not currently transcribing audio.503
otherwise.
In the body of the response there is also a JSON object with the current status.
Example:
$ curl -i address.of.container:8001/ready
HTTP/1.0 200 OK
Server: BaseHTTP/0.6 Python/3.8.5
Date: Mon, 08 Feb 2021 12:47:05 GMT
Content-Type: application/json
{
"ready": true
}