diff --git a/doc/howto.md b/doc/howto.md index 8d2b2bb..934aaaf 100644 --- a/doc/howto.md +++ b/doc/howto.md @@ -83,3 +83,20 @@ for batch_id, data in enumerate(train_reader()): for factor in tracking_factors: factor.persist() ``` + +## Running an evaluation locally + +Each evaluation can execute seperately. + +Lets take `resnet30` for example + +```sh +git clone https://github.com/PaddlePaddle/MacroCE.git + +cd MacroCE +git clone https://github.com/Superjomn/paddle-modelci-baseline.git models + +cd models/resnet30 +export modelci_root=`pwd`/../.. +./train.xsh +```