Hello, I am trying to run a job with floyd.yml
My floyd.yml looks like this:
task:
train-lenet:
machine: gpu
env: pytorch-1.0
description: training LeNet for 500 steps
input:
- wish1104/datasets/emnist/1:dataset
command: python pytorch_models/train.py --max_steps 500 --cuda --train_features --checkpoint
When I run floyd run --task train-lenet
I got the following output
Creating project run. Total upload size: 90.4KiB
Syncing code ...
[================================] 99151/99151 - 00:00:04
Error: One or more request parameters is incorrect
Invalid module: DZxvL4WLetxLNLpP4aN9Hf
I am confused with the last part which looks like a hash of some sort.
But if I manually run the equivalent command:
floyd run --gpu --env pytorch-1.0 --message 'training LeNet for 500 steps' --data wish1104/datasets/emnist/1:dataset 'python pytorch_models/train.py --max_steps 500 --cuda --train_features --checkpoint'
everything works fine.