elmadany commited on
Commit
50b99b9
1 Parent(s): c8cdea2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -1
README.md CHANGED
@@ -8,7 +8,22 @@ In addition, we provide the three models on two architectures small and base. Fo
8
 
9
 
10
  # How to use AraT5 models
11
- [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1GFOGolWPIfDvYdSNdGFrOXwu3Gu28k2b?usp=sharing)This is an example for fine-tuning **AraT5-base** for News Title Generation on the Aranews dataset
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
 
13
  In addition, we release the fine-tuned checkpoint of the News Title Generation (NGT) which is described in the paper. The model available at Huggingface ([UBC-NLP/AraT5-base-title-generation](https://huggingface.co/UBC-NLP/AraT5-base-title-generation)).
14
 
 
8
 
9
 
10
  # How to use AraT5 models
11
+ Below is an example for fine-tuning **AraT5-base** for News Title Generation on the Aranews dataset
12
+ ``` bash
13
+ !python run_trainier_seq2seq_huggingface.py \
14
+ --learning_rate 5e-5 \
15
+ --max_target_length 128 --max_source_length 128 \
16
+ --per_device_train_batch_size 8 --per_device_eval_batch_size 8 \
17
+ --model_name_or_path "UBC-NLP/AraT5-base" \
18
+ --output_dir "/content/AraT5_FT_title_generation" --overwrite_output_dir \
19
+ --num_train_epochs 3 \
20
+ --train_file "/content/ARGEn_title_genration_sample_train.tsv" \
21
+ --validation_file "/content/ARGEn_title_genration_sample_valid.tsv" \
22
+ --task "title_generation" --text_column "document" --summary_column "title" \
23
+ --load_best_model_at_end --metric_for_best_model "eval_bleu" --greater_is_better True --evaluation_strategy epoch --logging_strategy epoch --predict_with_generate\
24
+ --do_train --do_eval
25
+ ```
26
+ For more details about the fine-tuning example, please read this notebook [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://github.com/UBC-NLP/araT5/blob/main/examples/Fine_tuning_AraT5.ipynb)
27
 
28
  In addition, we release the fine-tuned checkpoint of the News Title Generation (NGT) which is described in the paper. The model available at Huggingface ([UBC-NLP/AraT5-base-title-generation](https://huggingface.co/UBC-NLP/AraT5-base-title-generation)).
29