-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using pre-trained model without prompts #22
Comments
Thank you for your questions! Q1: The reason prompts are necessary for loading model weights is that using prompts introduces additional model parameters, which alters the model's weights. Q2: The Q3: For reproducing results, please refer to the Q4: The Thanks again for your inquiries! |
Thank you for your very fast response! Then what are the model weights in the Thanks again |
We provide two model parameters: |
It's clearer now. Thank you! It seems their performance is similar. |
Hello, I have a few questions:
if args.prompt_ST==1: if args.file_load_path != '': model.load_state_dict(torch.load('{}'.format(args.file_load_path),map_location=device), strict=False)
I see that if using prompt_ST, then the model weights will be loaded from
args.file_load_path
. Why must we use prompts in order to load model weights? What if we want to test the pre-trained model without using prompts?What is
model_SinCos.pkl
for in the model weights? It is not used anywhere in the code.Do you have the pre-trained prompt pool available so that we can reproduce your results?
Can you explain what X_period is used for? How is it different from the regular data X?
Thanks very much!
The text was updated successfully, but these errors were encountered: