Instructions to use hectorruiz9/Lucifer with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use hectorruiz9/Lucifer with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("finetrainers/CogView4-6B-Edit-LoRA-v0", torch_dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("hectorruiz9/Lucifer") prompt = "-" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
| # Copyright 2013 The Flutter Authors. All rights reserved. | |
| # Use of this source code is governed by a BSD-style license that can be | |
| # found in the LICENSE file. | |
| # Mirror master to main branches in the flutter repository. | |
| on: | |
| push: | |
| branches: | |
| - 'master' | |
| # Declare default permissions as read only. | |
| permissions: read-all | |
| jobs: | |
| mirror_job: | |
| permissions: | |
| pull-requests: write | |
| runs-on: ubuntu-latest | |
| if: ${{ github.repository == 'flutter/flutter' }} | |
| name: Mirror master branch to main branch | |
| steps: | |
| - name: Mirror action step | |
| id: mirror | |
| uses: google/mirror-branch-action@30c52ee21f5d3bd7fb28b95501c11aae7f17eebb | |
| with: | |
| github-token: ${{ secrets.FLUTTERMIRRORINGBOT_TOKEN }} | |
| source: 'master' | |
| dest: 'main' | |