Jeffery

Results 4 issues of Jeffery

https://shapenet.cs.stanford.edu/media/modelnet40_normal_resampled.zip can not donwload the data?

hello, when I try to compile the code and input "cmake ./ -G "MinGW Makefiles"", but something wrong happen like following: ----------------------------------------------------------------------------------------------------------------------------------------------- C:\Users\yrwu\Desktop\porous\gnuplot-iostream-master>cmake ./ -G "MinGW Makefiles" CMake Error: Error:...

你好,你的代码里面Porous3D类里面没有生成png图片的方法。 ``` #ifndef POROUS3D_H #define POROUS3D_H #include #include using namespace std; class Porous3D { public: const int NX; /// grid number in x direction const int NY; /// grid number...

Teacher Forcing是指的是输入和输出错开一个位置,从而使得模型能够具有预测能力。 但是博主在这里的数据集代码并没有使得输入输出错开: ``` # ChatGLM3需要增加[gMASK]、sop两个标记 input_ids = [tokenizer.get_command("[gMASK]"), tokenizer.get_command("sop")] + src_tokens + tgt_tokens + [tokenizer.eos_token_id] context_length = len(src_tokens) + 2 labels = [-100] * context_length + input_ids[context_length:] ``` 加上input[1,2,3],...