Doron Adler PRO

Norod78

AI & ML interests

Fooling around with Generative machine learning models.

Recent Activity

reacted to ginipick's post with šŸš€ 3 days ago
šŸŽ¬ Revolutionize Your Video Creation Dokdo Multimodal AI Transform a single image into a stunning video with perfect audio harmony! šŸš€ Superior Technology šŸ’« Advanced Flow Matching: Smoother video transitions surpassing Kling and Sora Intelligent Sound System: Automatically generates perfect audio by analyzing video mood Multimodal Framework: Advanced AI integrating image, text, and audio analysis Outstanding Performance šŸŽÆ Ultra-High Resolution: 4K video quality with bfloat16 acceleration Real-Time Optimization: 3x faster processing with PyTorch GPU acceleration Smart Sound Matching: Real-time audio effects based on scene transitions and motion Exceptional Features āœØ Custom Audio Creation: Natural soundtrack matching video tempo and rhythm Intelligent Watermarking: Adaptive watermark adjusting to video characteristics Multilingual Support: Precise translation engine powered by Helsinki-NLP Versatile Applications šŸŒŸ Social Media Marketing: Create engaging shorts for Instagram and YouTube Product Promotion: Dynamic promotional videos highlighting product features Educational Content: Interactive learning materials with enhanced engagement Portfolio Enhancement: Professional-grade videos showcasing your work Experience the video revolution with Dokdo Multimodal, where anyone can create professional-quality content from a single image. Elevate your content with perfectly synchronized video and audio that captivates your audience! šŸŽØ Start creating stunning videos that stand out from the crowd - whether you're a marketer, educator, content creator, or business owner. Join the future of AI-powered video creation today! https://huggingface.co/spaces/ginipick/Dokdo-multimodal #VideoInnovation #AITechnology #PremiumContent #MarketingSolution šŸ”Š Please turn on your sound for the best viewing experience!
reacted to ginipick's post with šŸ”„ 3 days ago
šŸŽ¬ Revolutionize Your Video Creation Dokdo Multimodal AI Transform a single image into a stunning video with perfect audio harmony! šŸš€ Superior Technology šŸ’« Advanced Flow Matching: Smoother video transitions surpassing Kling and Sora Intelligent Sound System: Automatically generates perfect audio by analyzing video mood Multimodal Framework: Advanced AI integrating image, text, and audio analysis Outstanding Performance šŸŽÆ Ultra-High Resolution: 4K video quality with bfloat16 acceleration Real-Time Optimization: 3x faster processing with PyTorch GPU acceleration Smart Sound Matching: Real-time audio effects based on scene transitions and motion Exceptional Features āœØ Custom Audio Creation: Natural soundtrack matching video tempo and rhythm Intelligent Watermarking: Adaptive watermark adjusting to video characteristics Multilingual Support: Precise translation engine powered by Helsinki-NLP Versatile Applications šŸŒŸ Social Media Marketing: Create engaging shorts for Instagram and YouTube Product Promotion: Dynamic promotional videos highlighting product features Educational Content: Interactive learning materials with enhanced engagement Portfolio Enhancement: Professional-grade videos showcasing your work Experience the video revolution with Dokdo Multimodal, where anyone can create professional-quality content from a single image. Elevate your content with perfectly synchronized video and audio that captivates your audience! šŸŽØ Start creating stunning videos that stand out from the crowd - whether you're a marketer, educator, content creator, or business owner. Join the future of AI-powered video creation today! https://huggingface.co/spaces/ginipick/Dokdo-multimodal #VideoInnovation #AITechnology #PremiumContent #MarketingSolution šŸ”Š Please turn on your sound for the best viewing experience!
replied to ginipick's post 3 days ago
šŸŽ¬ Revolutionize Your Video Creation Dokdo Multimodal AI Transform a single image into a stunning video with perfect audio harmony! šŸš€ Superior Technology šŸ’« Advanced Flow Matching: Smoother video transitions surpassing Kling and Sora Intelligent Sound System: Automatically generates perfect audio by analyzing video mood Multimodal Framework: Advanced AI integrating image, text, and audio analysis Outstanding Performance šŸŽÆ Ultra-High Resolution: 4K video quality with bfloat16 acceleration Real-Time Optimization: 3x faster processing with PyTorch GPU acceleration Smart Sound Matching: Real-time audio effects based on scene transitions and motion Exceptional Features āœØ Custom Audio Creation: Natural soundtrack matching video tempo and rhythm Intelligent Watermarking: Adaptive watermark adjusting to video characteristics Multilingual Support: Precise translation engine powered by Helsinki-NLP Versatile Applications šŸŒŸ Social Media Marketing: Create engaging shorts for Instagram and YouTube Product Promotion: Dynamic promotional videos highlighting product features Educational Content: Interactive learning materials with enhanced engagement Portfolio Enhancement: Professional-grade videos showcasing your work Experience the video revolution with Dokdo Multimodal, where anyone can create professional-quality content from a single image. Elevate your content with perfectly synchronized video and audio that captivates your audience! šŸŽØ Start creating stunning videos that stand out from the crowd - whether you're a marketer, educator, content creator, or business owner. Join the future of AI-powered video creation today! https://huggingface.co/spaces/ginipick/Dokdo-multimodal #VideoInnovation #AITechnology #PremiumContent #MarketingSolution šŸ”Š Please turn on your sound for the best viewing experience!
View all activity

Organizations

Spaces-explorers's profile picture Gradio-Blocks-Party's profile picture Yam Peleg's profile picture ZeroGPU Explorers's profile picture Mixtiles's profile picture Social Post Explorers's profile picture Hugging Face Discord Community's profile picture Endless Technologies Ltd. 's profile picture

Posts 1

view post
Post
I've prepared a Google Colab notebook which allows you to play with interpolating between different people using IP-Adapter SDXL Face-ID Plus.

#Prepare a list t of num_of_results values between 0 and 1
t_space = torch.linspace(0, 1, num_of_results)
for t in tqdm(t_space):
    mix_factor = t.item()
    # interpolate between the two face images 
    image = (image1 * (1 - mix_factor) + image2 * mix_factor).astype(np.uint8)
    # interpolate between the two face embedding 
    faceid_embeds = torch.lerp(faceid_embeds1, faceid_embeds2, t)
   #generate interpolated result
    images = ip_model.generate(prompt=prompt, negative_prompt=negative_prompt, face_image=image, faceid_embeds=faceid_embeds, shortcut=v2, num_samples=2, scale=scale, s_scale=s_scale, guidance_scale=guidance_scale, width=width, height=height, num_inference_steps=steps, seed=seed)


Link to notebook:
Norod78/face_id_v2_test_code

Link to Face-ID Repo:
h94/IP-Adapter-FaceID

Link to all sorts of generated examples (Use the file tab):
Norod78/face_id_v2_test_code