Skip to content

Commit

Permalink
Corrected due to the following error
Browse files Browse the repository at this point in the history
ValueError: Default process group has not been initialized, please make sure to call init_process_group
facebookresearch#55
  • Loading branch information
saten-private committed Jun 13, 2024
1 parent c1cda69 commit f9af285
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion evals/video_classification_frozen/eval.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,10 @@ def main(args_eval, resume_preempt=False):
warmup=warmup,
num_epochs=num_epochs,
use_bfloat16=use_bfloat16)
classifier = DistributedDataParallel(classifier, static_graph=True)
# Corrected due to the following error
# ValueError: Default process group has not been initialized, please make sure to call init_process_group
# https://github.com/facebookresearch/jepa/issues/55
# classifier = DistributedDataParallel(classifier, static_graph=True)

# -- load training checkpoint
start_epoch = 0
Expand Down

0 comments on commit f9af285

Please sign in to comment.