saist1993/DPNLP

Can you upload the requirements.txt?

xyz321123 opened this issue · 4 comments

I'm trying to build a virtual environment, but I can't find the requirements.txt. Can the author post it? Sincere thanks. 😊

And what does the make_opt() function mean here?
image

And what does the make_opt() function mean here? image

Hi! This simply creates the pytorch optimizer. I am using a utility from here - Mytorch

However, you can also use the standard mechanism of creating the optimizer like below:

optimizer = optim.SGD(model.parameters(), lr=0.01, momentum=0.9)

requirements.txt

I have created a rough version of the requirements file. This might be missing a library or two. Let me know if you come across something.

requirements.txt

I have created a rough version of the requirements file. This might be missing a library or two. Let me know if you come across something.

Thank you!