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", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("hectorruiz9/Lucifer") prompt = "-" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Add 7 files
Browse files- docker-compose.yml +12 -0
- images/1000077535.jpg +3 -0
- orbital-sync.yml +21 -0
docker-compose.yml
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version: '3.9'
|
| 2 |
+
|
| 3 |
+
services:
|
| 4 |
+
hectron-psi:
|
| 5 |
+
build: .
|
| 6 |
+
container_name: hectron-psi-omega16
|
| 7 |
+
volumes:
|
| 8 |
+
- ./boveda:/hectron-psi/boveda
|
| 9 |
+
- ./.env:/hectron-psi/.env
|
| 10 |
+
tty: true
|
| 11 |
+
environment:
|
| 12 |
+
- HECTRON_MODE=RUBEDO
|
images/1000077535.jpg
ADDED
|
Git LFS Details
|
orbital-sync.yml
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name: "HECTRON ORBITAL SYNC"
|
| 2 |
+
|
| 3 |
+
on:
|
| 4 |
+
push:
|
| 5 |
+
branches: [ "main" ]
|
| 6 |
+
|
| 7 |
+
jobs:
|
| 8 |
+
security-audit:
|
| 9 |
+
runs-on: ubuntu-latest
|
| 10 |
+
steps:
|
| 11 |
+
- uses: actions/checkout@v3
|
| 12 |
+
- name: "Security Guardian Scan"
|
| 13 |
+
run: echo "🛡️ Escaneando secretos y vulnerabilidades..."
|
| 14 |
+
# Aquí iría snyk o sonarcloud
|
| 15 |
+
|
| 16 |
+
deploy-core:
|
| 17 |
+
needs: security-audit
|
| 18 |
+
runs-on: ubuntu-latest
|
| 19 |
+
steps:
|
| 20 |
+
- name: "Deploy HectronNexus"
|
| 21 |
+
run: echo "🚀 Desplegando Núcleo a Producción..."
|