Image-Text-to-Text
Safetensors
English
lfm2_vl
vision-language
image-to-code
tailwind-css
web-development
unsloth
liquid-foundation-model
conversational
Instructions to use saadxsalman/Liquid-WebSight with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Local Apps
- Unsloth Studio new
How to use saadxsalman/Liquid-WebSight with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for saadxsalman/Liquid-WebSight to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for saadxsalman/Liquid-WebSight to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for saadxsalman/Liquid-WebSight to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="saadxsalman/Liquid-WebSight", max_seq_length=2048, )
| { | |
| "backend": "tokenizers", | |
| "bos_token": "<|startoftext|>", | |
| "clean_up_tokenization_spaces": true, | |
| "eos_token": "<|im_end|>", | |
| "extra_special_tokens": [], | |
| "image_end_token": "<|image_end|>", | |
| "image_start_token": "<|image_start|>", | |
| "image_thumbnail": "<|img_thumbnail|>", | |
| "image_token": "<image>", | |
| "is_local": false, | |
| "legacy": false, | |
| "model_max_length": 1000000000000000019884624838656, | |
| "model_specific_special_tokens": { | |
| "image_end_token": "<|image_end|>", | |
| "image_start_token": "<|image_start|>", | |
| "image_token": "<image>" | |
| }, | |
| "pad_token": "<|pad|>", | |
| "processor_class": "Lfm2VlProcessor", | |
| "return_token_type_ids": false, | |
| "sp_model_kwargs": {}, | |
| "spaces_between_special_tokens": false, | |
| "tokenizer_class": "TokenizersBackend", | |
| "use_default_system_prompt": false, | |
| "use_fast": true | |
| } | |