From 1c8dac3ec5bca1a6067c2151164a451ef58e437c Mon Sep 17 00:00:00 2001 From: zhangxuefei Date: Wed, 17 Apr 2019 17:00:33 +0800 Subject: [PATCH] Update the file readme of demo text-classification --- demo/text-classification/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/demo/text-classification/README.md b/demo/text-classification/README.md index 461ba604..75199dd2 100644 --- a/demo/text-classification/README.md +++ b/demo/text-classification/README.md @@ -143,9 +143,9 @@ hub.finetune_and_eval(task=cls_task, data_reader=reader, feed_list=feed_list, co Finetune API训练过程中会自动对关键训练指标进行打点,启动程序后执行下面命令 ```bash -$ visualdl --logdir $CKPT_DIR/vdllog -t 0.0.0.0 +$ visualdl --logdir $CKPT_DIR/vdllog -t ${HOST_IP} ``` -用浏览器打开http://localhost:8040 即可看到训练过程中指标的变化情况 +其中${HOST_IP}为本机IP地址,如本机IP地址为192.168.0.1,用浏览器打开192.168.0.1:8040,其中8040为端口号,即可看到训练过程中指标的变化情况 TODO: 新增截图 ## 模型预测 -- GitLab