BlueSkyBubble
BlueSkyBubble
你好,可以发一个tensorflow2.0版的吗?你写的很好,很有吸引力,但不想因为tensorflow版本问题放弃你的代码,所有你可以再发一个tensorflow2.0版本的吗?
The performance of the model is as follows: Score: micro 0.0, macro 0.0 Average 0.0 Why?
模型推理结果不稳定
在paddle模型预测过程中,虽然使用了model.eval(),但每次模型的推理结果仍然不相同,比如PaddleNLP/examples/text_matching/ernie_matching/predict_pairwise.py,训练好模型后,通过如下命令每次执行这个predict.py文件得到的结果都不相同。 ``` unset CUDA_VISIBLE_DEVICES python -u -m paddle.distributed.launch --gpus "0" \ predict_pairwise.py \ --device gpu \ --params_path "./checkpoints/model_20000/model_state.pdparams"\ --batch_size 128 \ --max_seq_length 64 \ --input_file 'test.tsv' ``` 请问这是哪里的问题?
找不到文件的问题
你好, train, dev, test = data.TabularDataset.splits( path=path, train='train.jsonl', validation='dev.jsonl', test='test.jsonl', format='json', skip_header=True, fields=fields) 这段代码中涉及的train.jsonl,dev.jsonl和test.jsonl可以分享一下吗?网上找了好久没有找到。