JaonLiu

Results 38 issues of JaonLiu

After training like that: ``` # For compression with a replacement scheduler export GLUE_DIR=glue_script/glue_data export TASK_NAME=MRPC python ./run_glue.py \ --model_name_or_path /home/bert-base \ --task_name $TASK_NAME \ --do_train \ --do_eval \ --do_lower_case...

Hi, I build MinHashLSH like that: ``` self.lsh = MinHashLSH( threshold=0.7 num_perm=128 storage_config={ 'type': 'redis', 'basename': b'test_', 'redis': {'host': host_ip, 'port': host_port, 'password': host_password, 'db': db_num, }, } ``` When...

ModelWhale数据下载限制次数,一天只能下一次。请问能够放百度网盘吗?谢谢!

已经依次部署Action、NLU、Core、UI,且服务都正常启动: ![image](https://user-images.githubusercontent.com/10300313/71303972-bc874800-23fa-11ea-802c-00664ea0ee84.png) ![image](https://user-images.githubusercontent.com/10300313/71303981-d759bc80-23fa-11ea-9ae4-0eec57baf564.png) ![image](https://user-images.githubusercontent.com/10300313/71303984-e50f4200-23fa-11ea-80e4-232d267a7b7a.png) ![image](https://user-images.githubusercontent.com/10300313/71303989-f7897b80-23fa-11ea-9cd7-1aa8d616f5e3.png) 但是在聊天窗口输入语句,无返回: ![image](https://user-images.githubusercontent.com/10300313/71303992-0f60ff80-23fb-11ea-833c-71efece3eaef.png) 且在UI端没有任何信息。请问下,是否有一定的请求url可以测试每个模块的服务确实部署成功?方便逐一模块排查。或者您有什么建议可以帮忙排查这个问题,谢谢!

Hi @khanhnamle1994 I have read your code in Content_Based_and_Collaborative_Filtering_Models.ipynb, I think there are some errors in them. (1)when compute user_correlation,you use train_data directly. you can check the size of train_data,its...

Hi @khanhnamle1994 I have read your code in Content_Based_and_Collaborative_Filtering_Models.ipynb, I think there are some errors in them. (1)when compute user_correlation,you use train_data directly. you can check the size of train_data,its...

Hi,By now sentencepiece support BPE, unigram, char and word. Would you plan to support Byte-Level BPE(BBPE)? Thanks a lot!

feature request

代码中的`evaluate`函数里面 ``` for tag, label in self.tag2label.items(): label2tag[label] = tag if label != 0 else label ``` 构建label2tag映射时候,在对label=0做特殊处理。 我看你最后在进行评估(conlleval函数)的时候,又转回来了。 ``` tag = '0' if tag == 'O' else tag ```...

After use my own corpus to do domain-adaptive pretraining, the `vocab.txt` is the same size with the initialized model(BERT-base). In short, the domain-adaptive pretraining does not extend the vocabulary of...

在`tuple_filter.py` 中的`GetData_train`函数有如下代码: ``` for t in candidate_tuples: features = candidate_tuples[t] if len(gold_tuple) == len(set(gold_tuple).intersection(set(t))): X.append([features[9][0][1]]) Y.append([1]) else: prop = random.random() if prop