fix a typo
Browse files- text2world_hf.py +0 -1
text2world_hf.py
CHANGED
@@ -134,7 +134,6 @@ class DiffusionText2World(PreTrainedModel):
|
|
134 |
other_args = kwargs.copy()
|
135 |
other_args.pop("config")
|
136 |
config.update(other_args)
|
137 |
-
breakpoint()
|
138 |
model_sizes = ["7B",] if "7B" in config.diffusion_transformer_dir else ["14B",]
|
139 |
model_types = ["Text2World",]
|
140 |
download_diffusion(model_types, model_sizes, config.checkpoint_dir)
|
|
|
134 |
other_args = kwargs.copy()
|
135 |
other_args.pop("config")
|
136 |
config.update(other_args)
|
|
|
137 |
model_sizes = ["7B",] if "7B" in config.diffusion_transformer_dir else ["14B",]
|
138 |
model_types = ["Text2World",]
|
139 |
download_diffusion(model_types, model_sizes, config.checkpoint_dir)
|