Member-only story
How to Use Janus Pro Right Now 🚀 (For Free!)
3 min readJan 29, 2025
Ever wished for an AI model that could see, understand, and generate at the same time? Well, Janus Pro is here to blow your mind! 🤯 The best part? It’s free and super easy to access. Here’s how you can start using it today!
🛠️ How to Get Janus Pro (For Free!)
1️⃣ Hugging Face (The No-Code Way)
Just hop over to DeepSeek’s Hugging Face Space and start playing with it instantly! No setup required. 🙌
2️⃣ Run It Locally (For the Techies 👨💻👩💻)
Prefer getting your hands dirty with code? You can clone the repo and run it on your own machine.
# Clone the repo from DeepSeek’s GitHub
pip install -e .
Boom! You’re ready to roll! 🚀
🧠 Multimodal Understanding (Let Janus See & Think!)
Janus Pro isn’t just about text — it understands images too! 🖼️ Let’s see it in action:
import torch
from transformers import AutoModelForCausalLM
from janus.models import MultiModalityCausalLM, VLChatProcessor
from janus.utils.io import load_pil_images
# Load model 🧠
model_path = "deepseek-ai/Janus-Pro-7B"
vl_chat_processor =…