Kadir Nar
Kadir Nar
Inference Code: ``` from tuneavideo.pipelines.pipeline_tuneavideo import TuneAVideoPipeline from tuneavideo.models.unet import UNet3DConditionModel from tuneavideo.util import save_videos_grid import torch model_id = "Tune-A-Video-library/a-man-is-surfing" unet = UNet3DConditionModel.from_pretrained(model_id, subfolder='unet', torch_dtype=torch.float16).to('cuda') pipe = TuneAVideoPipeline.from_pretrained("CompVis/stable-diffusion-v1-4", unet=unet, torch_dtype=torch.float16).to("cuda")...
Hi @Nutlope , Have you done transfer learning in the Controlnet model?? Or did you use the trained model? Can you give information about the model?
Hi, I am the developer of this repo. I want to add this library. Will you add pip support for installation? My Repo: https://github.com/kadirnar/segment-anything-video
Can @comfyanonymous review? ## Image Transparency Handling Improvement in LoadImage Function Before: After:
It gives an error when running the save function in the hubconf file. https://github.com/WongKinYiu/yolov9/blob/main/hubconf.py#L107 Error Message: ```python File "...\yolov9\utils\plots.py", line 115, in box_label cv2.rectangle(self.im, p1, p2, color, thickness=self.lw, lineType=cv2.LINE_AA) cv2.error:...
Hello @xavysp , I want to measure the performance of the model. Is there an evaluate.py file written in Python? After running the test.py file, avg and fuse folders are...
@nateraw Code: ``` from stable_diffusion_videos import StableDiffusionWalkPipeline import torch pipeline = StableDiffusionWalkPipeline.from_pretrained( "prompthero/openjourney-v4", torch_dtype=torch.float16, revision="fp16", ).to("cuda") video_path = pipeline.walk( prompts=['a cat', 'a dog'], seeds=[42, 1337], num_interpolation_steps=20, height=512, # use multiples...
```bash Processing ./tgs/models/snowflake/pointnet2_ops_lib Preparing metadata (setup.py): started Preparing metadata (setup.py): finished with status 'error' error: subprocess-exited-with-error × python setup.py egg_info did not run successfully. │ exit code: 1 ╰─> [13...