Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion inference_dreamx5b.py
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ def get_camera_sequence(action_ids, action_speed_list, args):
def process_inference_from_json(args, pipeline, device, vae, boundary):
"""Process inference for all images in input directory."""

with open(args.input_dir, 'r') as f:
with open(args.input_dir, 'r', encoding='utf-8') as f:
items = json.load(f)


Expand Down