LBJ6666

Results 5 issues of LBJ6666

版本:liji.library.dev:citypickerview:5.2.2 引入的时候,和我的application的theme,冲突,编译不通过,我添加了: `tools:replace="android:allowBackup, android:theme"` 结果,选择框里面条目内容显示不出来,是空白 解决方法: 在你使用到选择框的Activity的清单文件里面,单独设置theme: `android:theme="@style/ActivityThemeWorkDialog"` 这里是我自己定义的,默认的样式而已, 然后选择框就可以显示出来了

good

您好,想请问一下, 1.看到代码中只有 unsup-consert-base.sh 使用了 no_dropout 参数,而其它没有将BERT自带的dropout设置为0,这是为什么呢? 2.在禁用了BERT的dropout的情况下,是原句子和数据增强后句子都也不使用dropout,还是说只是数据增强后的句子不使用?

version: notebook==6.4.6 ipython==8.14.0 ipython-genutils==0.2.0 Try setting it in Jupyter's configuration file jupyter_notebook_config.py: c.NotebookApp.checkpoints_enabled = False but it didn't work

enhancement
status:Needs Triage

用demo推理卡死,不输出任何内容。 ``` prompt = "# language: Python\n# write a bubble sort function\n" inputs = tokenizer.encode(prompt, return_tensors="pt").to(model.device) outputs = model.generate(inputs, max_length=256, top_k=1) response = tokenizer.decode(outputs[0]) print(response) ``` 并且提示警告: ``` modeling_chatglm.py:227: UserWarning:...