abumafrim commited on
Commit
71445fc
·
verified ·
1 Parent(s): e2ef09b

Update example model/adapter paths to dsfsi namespace

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -32,7 +32,7 @@ model-index:
32
 
33
  # nllb_200_distilled_600m-eng-zul
34
 
35
- [![Model on HF](https://huggingface.co/datasets/huggingface/badges/raw/main/model-on-hf-sm.svg)](https://huggingface.co/AfriScience-MT/nllb_200_distilled_600m-eng-zul)
36
 
37
  This model is part of the **AfriScience-MT** project, focused on machine translation of scientific texts for African languages.
38
 
@@ -67,7 +67,7 @@ Performance on the AfriScience-MT test set:
67
  ```python
68
  from transformers import AutoModelForSeq2SeqLM, AutoTokenizer
69
 
70
- model_id = "AfriScience-MT/nllb_200_distilled_600m-eng-zul"
71
  model = AutoModelForSeq2SeqLM.from_pretrained(model_id)
72
  tokenizer = AutoTokenizer.from_pretrained(model_id)
73
 
 
32
 
33
  # nllb_200_distilled_600m-eng-zul
34
 
35
+ [![Model on HF](https://huggingface.co/datasets/huggingface/badges/raw/main/model-on-hf-sm.svg)](https://huggingface.co/dsfsi/nllb_200_distilled_600m-eng-zul)
36
 
37
  This model is part of the **AfriScience-MT** project, focused on machine translation of scientific texts for African languages.
38
 
 
67
  ```python
68
  from transformers import AutoModelForSeq2SeqLM, AutoTokenizer
69
 
70
+ model_id = "dsfsi/nllb_200_distilled_600m-eng-zul"
71
  model = AutoModelForSeq2SeqLM.from_pretrained(model_id)
72
  tokenizer = AutoTokenizer.from_pretrained(model_id)
73