JackAILab commited on
Commit
50e55b2
1 Parent(s): d6a6e70

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -39,7 +39,7 @@ pipe = ConsistentIDStableDiffusionPipeline.from_pretrained(
39
  ## BiSenet
40
  bise_net_cp_path = hf_hub_download(repo_id="JackAILab/ConsistentID", filename="face_parsing.pth", local_dir="./checkpoints")
41
  bise_net = BiSeNet(n_classes = 19)
42
- bise_net.load_state_dict(torch.load(bise_net_cp_path), map_location="cpu") # device fail
43
  bise_net.cuda()
44
 
45
  ### Load consistentID_model checkpoint
 
39
  ## BiSenet
40
  bise_net_cp_path = hf_hub_download(repo_id="JackAILab/ConsistentID", filename="face_parsing.pth", local_dir="./checkpoints")
41
  bise_net = BiSeNet(n_classes = 19)
42
+ bise_net.load_state_dict(torch.load(bise_net_cp_path, map_location="cpu")) # device fail
43
  bise_net.cuda()
44
 
45
  ### Load consistentID_model checkpoint