rafiibnsultan/PAVE
Viewer • Updated • 50.5k • 57
How to use rafiibnsultan/walkgpt-13b with Transformers:
# Use a pipeline as a high-level helper
# Warning: Pipeline type "image-to-text" is no longer supported in transformers v5.
# You must load the model directly (see below) or downgrade to v4.x with:
# 'pip install "transformers<5.0.0'
from transformers import pipeline
pipe = pipeline("image-to-text", model="rafiibnsultan/walkgpt-13b") # Load model directly
from transformers import AutoProcessor, AutoModelForCausalLM
processor = AutoProcessor.from_pretrained("rafiibnsultan/walkgpt-13b")
model = AutoModelForCausalLM.from_pretrained("rafiibnsultan/walkgpt-13b")Official model weights for WalkGPT: Grounded Vision–Language Conversation with Depth-Aware Segmentation for Pedestrian Navigation.
📄 Paper: https://arxiv.org/abs/2603.10703
💻 Code: https://github.com/rafiibnsultan/WalkGPT
📦 Dataset: https://huggingface.co/datasets/rafiibnsultan/PAVE