liyinlan

Results 6 issues of liyinlan

hello, thx for your work, i want to know the range of the scores. In my test, some image got negative scores. I'm confused about that.

我在使用device_map='auto'后,就会在某些layer中报错,tensor分布在了多个GPU上,请问如何解决?

公司内网无法连接外部,没有下载translation模型,启动脚本也选择了 --no_translator,然后还是会去下载这个模型,导致requests.exceptions.ConnectionError. 请问这是写死在哪里了吗?

你好,现在我想把.param和.bin放到同一个二进制文件中,然后通过读取二进制文件再去加载模型,加载部分没有任何报错信息,但是推理的时候会报segmentation fault,请问是我读取文件方式不对么?代码如下: ``` static size_t getFileSize(FILE* file) { fseek(file, 0, SEEK_END); size_t read_len = ftell(file); fseek(file, 0, SEEK_SET); return read_len; } static size_t getFileSize(const char* filePath) { FILE* file =...

### 请提出你的问题 你好,请问在根据readme中描述的分布式训练UIE-X时,会出现两张卡的显存占用不一致的情况,0卡会比1卡多占用非常多。 (batch size = 2, max_seq_len=512)我看在加载预训练模型阶段,0卡就会用到8700M左右,1卡此时才4000M左右。 训练阶段0卡占用了13000M左右,1卡8800M左右。 请问这个问题如何解决?

question
triage

i can not get document object in evaluate function, and get None; ```ptthon res = await page.evaluate("""document""") # None res = await page.evaluate("""document.querySelector('body')""") # None ``` but when i use...