Skip to content

Commit

Permalink
Add documentation for NLU training
Browse files Browse the repository at this point in the history
Fixes #241
  • Loading branch information
IKostric committed Apr 23, 2024
1 parent e5c698e commit 6184175
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 5 deletions.
36 changes: 35 additions & 1 deletion docs/source/architecture.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,41 @@ The system architecture is shown in the figure below, illustrating the core proc
Natural Language Understanding
------------------------------

The :py:class:`NLU <moviebot.nlu.nlu>` component converts the natural language :py:class:`UserUtterance <moviebot.core.utterance.utterance.UserUtterance>` into a :py:class:`DialogueAct <moviebot.dialogue_manager.dialogue_act>`. This process, comprising of *intent detection* and *slot filling*, is performed based on the current dialogue state.
The :py:class:`NLU <moviebot.nlu.nlu>` component converts the natural language :py:class:`UserUtterance <moviebot.core.utterance.utterance.UserUtterance>` into a :py:class:`DialogueAct <moviebot.dialogue_manager.dialogue_act>`. This process, comprising of *intent detection* and *slot filling*, is performed based on the current dialogue state. The component offers two distinct modules: Rule-Based and Neural using JointBERT.

Rule-Based NLU
^^^^^^^^^^^^^^

The rule-based NLU module utilizes a combination of keyword extraction and heuristics to determine the user's intent and extract slot-value pairs from their utterances. This approach relies on predefined rules and patterns to interpret user input.

Neural NLU with JointBERT
^^^^^^^^^^^^^^^^^^^^^^^^^^

The Neural NLU module employs JointBERT, a neural model trained specifically for intent detection and slot filling tasks. JointBERT predicts both the intent of the user's utterance and the corresponding slot-value pairs using a trained model.

Training the JointBERT Model
^^^^^^^^^^^^^^^^^^^^^^^^^^^^

To train the JointBERT model, the provided training script (`/Users/2920807/Repos/moviebot/moviebot/nlu/annotation/joint_bert/joint_bert_train.py`) can be utilized. This script fine-tunes the pre-trained BERT model on a dataset annotated with intents and slot-value pairs. Below is an overview of the training process:

1. **Data Preparation**: Ensure the dataset is properly formatted with annotations for intents and slot-value pairs. The data path should be specified using the `--data_path` argument in the training script.

Example dataset format:
```yaml
REVEAL:
- text: "[I absolutely adore](modifier) movies focusing on [martial arts](keywords)."
- text: "Films about [space exploration](keywords) [fascinate me](modifier)."
- text: "[I can't stand](modifier) movies that emphasize on [corporate politics](keywords)."
- text: "[Space adventures](keywords) [always intrigue me](modifier)."
```

2. **Model Initialization**: The model is initialized with the number of intent labels and slot labels based on the dataset. Additionally, you can configure hyperparameters such as learning rate, weight decay, and maximum epochs.

3. **Training**: The training script supports logging with Wandb for easy monitoring of training progress.

4. **Model Saving**: After training, the trained model weights are saved to the specified output path (`--model_output_path`). Additionally, metadata including intent and slot names is saved in a JSON file for reference.

6. **Usage**: Once trained, the JointBERT model can be integrated into the conversational system for natural language understanding tasks, by specifying the model path.


Dialogue Manager
Expand Down
9 changes: 5 additions & 4 deletions moviebot/nlu/annotation/joint_bert/joint_bert_train.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,12 +178,13 @@ def save_pretrained(self, path: str) -> None:
def parse_arguments():
"""Parses the command line arguments."""
parser = argparse.ArgumentParser()
parser.add_argument("--max_epochs", type=int, default=5)
parser.add_argument("--learning_rate", type=float, default=5e-5)
parser.add_argument("--weight_decay", type=float, default=0.0)
parser.add_argument(
"--model_output_path", type=str, default=_MODEL_OUTPUT_PATH
)
parser.add_argument("--data_path", type=str, default=_DATA_PATH)
parser.add_argument("--max_epochs", type=int, default=5)
parser.add_argument("--learning_rate", type=float, default=5e-5)
parser.add_argument("--weight_decay", type=float, default=0.0)
args = parser.parse_args()
return args

Expand All @@ -192,7 +193,7 @@ def parse_arguments():
args = parse_arguments()
wandb_logger = WandbLogger(project="JointBERT")

dataset = JointBERTDataset(_DATA_PATH)
dataset = JointBERTDataset(args.data_path)
dataloader = DataLoader(dataset, batch_size=8, shuffle=True, num_workers=4)

model = JointBERTTrain(
Expand Down

0 comments on commit 6184175

Please sign in to comment.