You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for sharing such a great eval framework idea!
I am running into some trouble when i try to evaluation using python3 scripts/run_eval.py -s
I always get the error as wandb: ERROR It appears that you do not have permission to access the requested resource. Please reach out to the project owner to grant you access. If you have the correct permissions, verify that there are no issues with your networking setup.(Error 404: Not Found)
Can you please guide ?
The text was updated successfully, but these errors were encountered:
It was apparently a issue with wandb. Fixed it.
For those who might come across this permission issue, here is the solution I figured out after spending 2 days digging into it.
The Issue
Mainly due to the entity flag -e. Wandb seems to have some issue identifying the user once you login and then pass the entity argument.
Solution
Make a minor tweak in upload_dataset.py file.
importwandbfromargparseimportArgumentParserparser=ArgumentParser()
parser.add_argument("-e", "--entity", type=str, required=False) # set this to Falseparser.add_argument("-p", "--project", type=str, required=True)
parser.add_argument("-n", "--dataset_name", type=str, required=True)
# choose from jaster, lctgparser.add_argument("-d", "--dataset_folder", type=str, required=True)
parser.add_argument("-v", "--dataset_version", type=str, required=True)
args=parser.parse_args()
withwandb.init(project=args.project, job_type="upload_data") asrun:
dataset_artifact=wandb.Artifact(
name=args.dataset_name, # entity argument not needed type="dataset",
metadata={"version": args.dataset_version},
)
dataset_artifact.add_dir(args.dataset_folder, name=args.dataset_name)
run.log_artifact(dataset_artifact)
Then upload your jaster dataset without the -e flag.
Thank you for your question.
Please specify wandb entity to your entity.
If you don't specify wandb entity, your default entity will be used, but I recommend you to use your entity.
Hi,
Thanks for sharing such a great eval framework idea!
I am running into some trouble when i try to evaluation using
python3 scripts/run_eval.py -s
I always get the error as
wandb: ERROR It appears that you do not have permission to access the requested resource. Please reach out to the project owner to grant you access. If you have the correct permissions, verify that there are no issues with your networking setup.(Error 404: Not Found)
Can you please guide ?
The text was updated successfully, but these errors were encountered: