Instructions to use BAAI/URSA-1.7B-IBQ512 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use BAAI/URSA-1.7B-IBQ512 with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("BAAI/URSA-1.7B-IBQ512", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
| # Compiled Object files | |
| *.slo | |
| *.lo | |
| *.o | |
| *.cuo | |
| # Compiled Dynamic libraries | |
| *.so | |
| *.dll | |
| *.dylib | |
| # Compiled Static libraries | |
| *.lai | |
| *.la | |
| *.a | |
| *.lib | |
| # Compiled python | |
| *.pyc | |
| __pycache__ | |
| # Compiled MATLAB | |
| *.mex* | |
| # IPython notebook checkpoints | |
| .ipynb_checkpoints | |
| # Editor temporaries | |
| *.swp | |
| *~ | |
| # Sublime Text settings | |
| *.sublime-workspace | |
| *.sublime-project | |
| # Eclipse Project settings | |
| *.*project | |
| .settings | |
| # QtCreator files | |
| *.user | |
| # VSCode files | |
| .vscode | |
| # IDEA files | |
| .idea | |
| # OSX dir files | |
| .DS_Store | |
| # Android files | |
| .gradle | |
| *.iml | |
| local.properties | |