mxlol233

Results 4 comments of mxlol233

After training. Now i have to freeze BN parameters and fine-tune the whole model for overcoming this problem.

@ducksoup ,It happens in InplaceBN, ABN is fine.

1.I use InPlaceABN in training, and tested InPlaceABN, ABN and pytorch-BN(read-out the ABN parameters), they are all have inconsistent problems. 2. img is from val set. However, this problem can...

对rust生态不太了解,冒昧问一个小白问题: 我理解的是,对于架构的特权指令(比如Machine级别的指令)这部分应该只能用汇编来写,然后与rust编译出的目标文件(*.o)进行链接,组装成os内核Binary。 我想问的问题是,rust在进行操作系统开发的时候,生成目标文件这一步是用的什么工具链?也是用的gcc吗?因为rust编译器其实也是生成的llvm的中间表示(LLVM-IR),再从LLVM-IR的字节码编译成gcc的汇编文件。最后经由gcc工具链进行目标文件生成和链接。