ChineseNER icon indicating copy to clipboard operation
ChineseNER copied to clipboard

中文NER的那些事儿

Results 9 ChineseNER issues
Sort by recently updated
recently updated
newest added

请问tensorflow的版本是多少的?我看requirements.txt里tensorflow是1.14.0的,但是运行不了,报错ModuleNotFoundError: No module named 'tensorflow.python.platform',我搜了一下有的遇到过类似的情况,说是版本不对应,然后按照别人的版本下了一个1.13.1 ,也是不行。想问一下,这所有的代码都是用的同一个版本的tensorflow么?具体的tensorflow和cuda版本是多少呢?

Traceback (most recent call last): File "/XXXXX/ChineseNER-main/data/msra/preprocess.py", line 46, in prep = get_instance(tokenizer, MAX_SEQ_LEN, TAG2IDX, MAPPING, word_enhance) File "/XXXXX/ChineseNER-main/data/base_preprocess.py", line 90, in get_instance instance = cls(tokenizer_type, max_seq_len, tag2idx, mapping, **kwargs)...

已经生成events.out之后,根据tensorboard --logdir ./checkpoint/ner_msra_bert_bilstm_crf得到的网址进去,却显示不出图形 No scalar data was found. Probable causes: You haven’t written any scalar data to your event files. TensorBoard can’t find your event files. If you’re new to...

hello,你的coding能力好强,弱弱地问下有没有pytorch版本的?

``` def get_eval_metrics(label_ids, pred_ids, idx2tag, task_name=''): """ Overall accuracy, and accuracy per tag """ real_length = tf.reduce_sum(tf.sign(label_ids), axis=1) - 2 max_length = label_ids.shape[-1].value mask = tf.sequence_mask(real_length, maxlen=max_length) pred_ids = tf.cast(pred_ids,...

![524a5b346439c4fb5c151da54e4943a](https://user-images.githubusercontent.com/100670240/194759280-34d309f6-e1a1-4ec7-959d-bf95a78ec9db.png) 作者你好,之前没接触过docker,想问一下这里是要搭建一个私有镜像仓库吗