gpt4 book ai didi

python - 在 Google Colab 中运行 python 参数

转载 作者:行者123 更新时间:2023-12-01 06:50:29 37 4
gpt4 key购买 nike

我正在 Google Colab 中运行 python 文件并收到错误。我正在关注此链接中的 bert 文本分类示例;

https://appliedmachinelearning.blog/2019/03/04/state-of-the-art-text-classification-using-bert-model-predict-the-happiness-hackerearth-challenge/

我按照描述的教程进行操作,现在是在 colab 中运行下面的代码片段的最后一步,

python run_classifier.py 
--task_name=cola
--do_train=true
--do_eval=true
--do_predict=true
--data_dir=./data/
--vocab_file=./cased_L-12_H-768_A-12/vocab.txt
--bert_config_file=./cased_L-12_H-768_A-12/bert_config.json
--init_checkpoint=./cased_L-12_H-768_A-12/bert_model.ckpt
--max_seq_length=400
--train_batch_size=8
--learning_rate=2e-5
--num_train_epochs=3.0
--output_dir=./bert_output/
--do_lower_case=False

我知道在 Colab 中我必须像这样运行 python 文件;

!python run_classifier.py 

但是我如何像脚本中那样设置其他参数。它会经历错误。谢谢您的帮助。

最佳答案

您应该在参数之间放置 \ 符号。例如,您的代码将是:

!python run_classifier.py \
--task_name=cola \
--do_train=true \
--do_eval=true \
--do_predict=true \
--data_dir=./data/ \
--vocab_file=./cased_L-12_H-768_A-12/vocab.txt \
--bert_config_file=./cased_L-12_H-768_A-12/bert_config.json \
--init_checkpoint=./cased_L-12_H-768_A-12/bert_model.ckpt \
--max_seq_length=400 \
--train_batch_size=8 \
--learning_rate=2e-5 \
--num_train_epochs=3.0 \
--output_dir=./bert_output/ \
--do_lower_case=False

这在另一个例子中对我有用。

关于python - 在 Google Colab 中运行 python 参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59029812/

37 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com