You are viewing documentation for our open source project which is maintained by the community. If you want to get started building assistants with Rasa please check out our latest [documentation here](/content/docs/index.html).

Your Rasa assistant can be used on training data in **any language**. If there are no word embeddings for your language, you can train your featurizers from scratch with the data you provide.

In addition, we also support pre-trained word embeddings such as spaCy. For information on what pipeline is best for your use case, check out [choosing a pipeline](https://legacy-docs-oss.rasa.com/docs/rasa/tuning-your-model#how-to-choose-a-pipeline).

## Training a Model in Any Languages

The following pipeline can be used to train models in whitespace tokenizable languages:

```yaml
pipeline:
  - name: WhitespaceTokenizer
  - name: RegexFeaturizer
  - name: LexicalSyntacticFeaturizer
  - name: CountVectorsFeaturizer
    analyzer: "char_wb"
    min_ngram: 1
    max_ngram: 4
  - name: DIETClassifier
    epochs: 100
  - name: EntitySynonymMapper
  - name: ResponseSelector
    epochs: 100
```

To train a Rasa model in your preferred language, define the pipeline in your `config.yml`. After you define the pipeline and generate some [NLU training data](https://legacy-docs-oss.rasa.com/docs/rasa/training-data-format) in your chosen language, train the model by running the command:

```bash
rasa train nlu
```

Once the training is finished, you can test your model's language skills. See how your model interprets different input messages by running:

```bash
rasa shell nlu
```

### Note

Even more so when training word embeddings from scratch, more training data will lead to a better model! If you find your model is having trouble discerning your inputs, try training with more example sentences.

## Using Pre-trained Language Models

If you can find them in your language, language models with pre-trained word vectors are a great way to get started with less data, as the word vectors are trained on large amounts of data such as Wikipedia.

### spaCy

With the [Pre-trained Spacy Embeddings](https://legacy-docs-oss.rasa.com/docs/rasa/components#spacynlp), you can use spaCy's [pre-trained language models](https://spacy.io/usage/models#languages) or load fastText vectors, which are available for [hundreds of languages](https://github.com/facebookresearch/fastText/blob/master/docs/crawl-vectors.md). If you want to incorporate a custom model you've found into spaCy, check out their page on [adding languages](https://spacy.io/docs/usage/adding-languages). As described in the documentation, you need to register your language model and link it to the language identifier, which will allow Rasa to load and use your new language by passing in your language identifier as the `language` option.

### MITIE

You can also pre-train your own word vectors from a language corpus using [MITIE](https://legacy-docs-oss.rasa.com/docs/rasa/components#mitienlp). To do so:

1. Get a clean language corpus (a Wikipedia dump works) as a set of text files.
2. Build and run `MITIE Wordrep Tool` on your corpus. This can take several hours/days depending on your dataset and your workstation. You'll need something like 128GB of RAM for wordrep to run -- yes, that's a lot: try to extend your swap.
3. Set the path of your new `total_word_feature_extractor.dat` as the `model` parameter in your [configuration](https://legacy-docs-oss.rasa.com/docs/rasa/components#mitienlp).

For a full example of how to train MITIE word vectors, check out [this blogpost](http://www.crownpku.com/2017/07/27/%E7%94%A8Rasa_NLU%E6%9E%84%E5%BB%BA%E8%87%AA%E5%B7%B1%E7%9A%84%E4%B8%AD%E6%96%87NLU%E7%B3%BB%E7%BB%9F.html) of creating a MITIE model from a Chinese Wikipedia dump.
