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
Before: for example_index in range(len(file_list)):
After: for example_index in tqdm(range(len(file_list)), desc="Processing files", unit="file"):
-> For short folder, this is useless, bc MPI part takes longer than the actual main function. However when processing entire brain dataset, I think this might be useful..?
The text was updated successfully, but these errors were encountered:
-> For short folder, this is useless, bc MPI part takes longer than the actual main function. However when processing entire brain dataset, I think this might be useful..?
The text was updated successfully, but these errors were encountered: