Skip to content

Latest commit

 

History

History
235 lines (190 loc) · 9.09 KB

File metadata and controls

235 lines (190 loc) · 9.09 KB

Introduction to the evaluation interface

The simultaneous translation models from the shared task participants are evaluated under a server-client protocol. The participants are required to plug in their own model API in the protocol, and submit a Docker file. The server provides information needed by the client and evaluates latency and quality, while the client sends the translation. We use the Fairseq toolkit as an example but the evaluation process can be applied in an arbitary framework.

Server

The server code is provided and can be set up locally for development purposes. The server sends source words or speech segments to the client, and records the delay when receiving predictions. Here are instructions on how to setup the server for development.

To run start a text server listening at port 12321, with $SRC_FILE and $TGT_FILE as raw source and target text and $result_dir a directory to store the results:

python $fairseq/example/simultaneous_translation/eval/server.py \
    --tokenizer 13a \
    --src-file $SRC_FILE \
    --tgt-file $TGT_FILE \
    --scorer-type text \
    --output $result_dir \
    --port 12321

For speech models, if you have gone through the Data Preparation in baseline experiment, you can use the json file in $DATA_ROOT/data-bin/mustc_en_de, for example, dev.json. So we can start the server:

python $fairseq/example/simultaneous_translation/eval/server.py \
    --tokenizer 13a \
    --tgt-file $DATA_ROOT/data-bin/mustc_en_de/dev.json \
    --tgt-file-type json \
    --scorer-type speech \
    --output $result_dir \
    --port 12321

If you don't want to go though Data Preparation, you need to prepare two files:

  • $TGT_FILE: the file with reference sentences
  • $WAV_LIST_FILE: the file with a list of paths to WAVs, line aligned to TGT_FILE

In this case we can start the server

python $fairseq/example/simultaneous_translation/eval/server.py \
    --tokenizer 13a \
    --src-file SRC_FILE \
    --tgt-file WAV_LIST_FILE \
    --tgt-file-type text \
    --scorer-type speech \
    --output $result_dir \
    --port 12321

The state sent to the client by the server has the following format

{
  'sent_id': Int,
  'segment_id': Int,
  'segment': String or speech utterance
}

For text, the segment is a detokenized word, while for speech, it is a list of numbers.

Client

The client will load the model, get source tokens or speech segments from the server and send translated tokens to server. We have an out-of-box implementation of the client which could save time from configuring the communication between the server and the client. The implementation is in the fairseq repository but it can be applied to an arbitary toolkit. If you plan to set up your client from scratch, please refer to Evaluation Server API

Agent

The core of the client module is the agent. One can build a customized agent from the abstract class of the agent, shown as follows.

class Agent(object):
    "an agent needs to follow this pattern"
    def __init__(self, *args, **kwargs):
        ...

    def init_states(self):
        # Initializing states
        ...

    def update_states(self, states, new_state):
        # Update states with given new state from server
        # format of the new_state
        # {
        #   'sent_id': Int,
        #   'segment_id': Int,
        #   'segment': String or speech utterance
        # }
        ...

    def finish_eval(self, states, new_state):
        # Check if evaluation is finished
        # Return True if finished False not
        ...
    
    def policy(self, states):
        # Provide a action given current states
        # The action can only be either
        # Speech {key: "GET", value: {"segment_size": segment_size}}
        # Text {key: "GET", value: None}
        # or
        # {key: "SEND", value: W}
        ...

    def reset(self):
        # Reset agent
        ...
        
 def _decode_one(self, session, sent_id):
        """
        The evaluation process for one sentence happens in the function, 
        you don't have to modify this function. 
        """
        action = {}
        self.reset()
        states = self.init_states()
        while action.get('value', None) != DEFAULT_EOS:
            # take an action
            action = self.policy(states)
            if action['key'] == GET:
                new_states = session.get_src(sent_id, action["value"])
                states = self.update_states(states, new_states)

            elif action['key'] == SEND:
                session.send_hypo(sent_id, action['value'])
                    states = self.init_states() 
                    self.reset()
            else:
                raise NotImplementedError

 

The variable states is the context for the model to make a decision. You could customize your states init_states will be called at beginning of translating every sentnece. update_states will be called every time a new segment or token was requested from server

The policy function returns the action you make given the current states. The actions can be one of the following:

Action Content
Request new word (Text) {key: "GET", value: None}
Request new utterence (Speech) {key: "GET", value: {"segment_size": segment_size}}
Predict word "W" {key: "SEND", value: "W"}

Here is an example of how to develop a customized agent. First of all, a name needs to be registered, for example "my_agent". Next, override the agent functions according to the translation model. The functions that need to be overriden are listed in the MyAgent class as follow. The implementation should be done in this directory in the local fairseq repository.

from . import register_agent
from . agent import Agent
@register_agent("my_agent")
class MyAgent(Agent):
    @staticmethod
    def add_args(parser):
        # add customized arguments here

    def __init__(self, *args, **kwargs):
        ...

    def init_states(self):
        ...

    def update_states(self, states, new_state):    
        ...

    def finish_eval(self, states, new_state):
        ...
    
    def policy(self, states):
        ...

    def reset(self):
        ...

Here are the implementations of agents for text wait-k model and speech wait-k model. You can start your agent from these implementation. For example, for a text agent with your own, you can just override the following functions

  • SimulTransTextAgent.load_model(): to load a customized model.
  • SimulTransTextAgent.model.decision_from_states(): to make read or write decision from states.
  • SimulTransTextAgent.model.predict_from_states() to predition a target token from states.

But you might also need to change other places for tokenization.

Once the agent is implemented, assuming there is already a server listening at port 12321, to start the evaluation,

python $fairseq_dir/examples/simultanesous_translation/eval/evaluate.py \
    --port 12321 \
    --agent-type my_agent_name \
    --reset-server \
    --num-threads 4 \
    --scores \
    --model-args ... # defined in MyAgent.add_args, such as model path, tokenizer etc.

It can be very slow to evaluate the speech model utterance by utterance. See here for a faster implementation, which split the evaluation set into chunks.

Quality

The quality is measured by detokenized BLEU. So make sure that the predicted words sent to server are detokenized.

Latency

The latency metrics are

  • Average Proportion
  • Average Lagging
  • Differentiable Average Lagging

For text, the unit is detokenized token. For speech, the unit is millisecond.

Final Evaluation with Docker

Our final evaluation will be run inside Docker. To run an evaluation with Docker, first build a Docker image from the Dockerfile. Here is an example

docker build -t iwslt2020_simulast:latest .

When submitting your final models, define a client command that would run inside the docker in a Dockerfile. For example, to evaluate the text translation in baseline experiment, the model can be evaluated as follow.

CLIENT_COMMAND="./examples/simultaneous_translation/scripts/start-client.sh ./examples/simultaneous_translation/scripts/configs/must-c-en_de-text-test.sh experiments/checkpoints/checkpoint_text_waitk3.pt"
SRC_FILE=experiments/data/must_c_1_0/en-de/bi-text/tst-COMMON.en
TGT_FILE=experiments/data/must_c_1_0/en-de/bi-text/tst-COMMON.de
PORT=12321

docker run -e CLIENT_COMMAND="$CLIENT_COMMAND" -e SRC_FILE="$SRC_FILE" -e TGT_FILE="$TGT_FILE" -e PORT="$PORT" -v "$(pwd)"/experiments:/fairseq/experiments -it iwslt2020_simulast

CLIENT_COMMAND can be the client command for a customized client.

When submitting you Docker file, please keep the server settings in example and make sure it works for the MuST-C dev and test set. During the official evaluation, we will run the Docker file with different environment variables corresponding to the blind test set.