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
I am using model : spacetimeformer and dataset: asos.
When I run python train.py spacetimeformer asos --run_name test --gpus 0 I get this error. TypeError: accuracy() missing 1 required positional argument: 'task'
Task variable seems to be a Literal with the following values task: Literal["binary", "multiclass", "multilabel"],
But I am performing a timeseries forecasting so which Task value should I use?
Exact error location :
spacetimeformer\spacetimeformer\spacetimeformer_model\spacetimeformer_model.py", line 219, in classification_loss
acc = torchmetrics.functional.accuracy(
TypeError: accuracy() missing 1 required positional argument: 'task'
The text was updated successfully, but these errors were encountered:
I am using model : spacetimeformer and dataset: asos.
When I run
python train.py spacetimeformer asos --run_name test --gpus 0
I get this error.TypeError: accuracy() missing 1 required positional argument: 'task'
Task variable seems to be a Literal with the following values
task: Literal["binary", "multiclass", "multilabel"],
But I am performing a timeseries forecasting so which Task value should I use?
Exact error location :
The text was updated successfully, but these errors were encountered: