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
In the start_train.sh, there is python training_ptr_gen/train.py >& log/training_log &
When I bash run start_train.sh, the terminal shows -bash: log/training_log: Is a directory.
So, I want to ask what's the meaning of >& log/training_log &
In your config.py. the log directory should exist in ptr_nw/log.
Thx.
The text was updated successfully, but these errors were encountered:
>& log/training_log simply redirect the output to the file 'log/training_log' & at the end is for running the program in background.
You might have training_log directory created in log directory. You can simply change >& log/training_log & to >& log/training_log.txt & and it will work if there is no other errors.
In the start_train.sh, there is
python training_ptr_gen/train.py >& log/training_log &
When I bash run start_train.sh, the terminal shows -bash: log/training_log: Is a directory.
So, I want to ask what's the meaning of
>& log/training_log &
In your config.py. the log directory should exist in ptr_nw/log.
Thx.
The text was updated successfully, but these errors were encountered: