Instructions to use APRKDEV/argus-pro with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use APRKDEV/argus-pro with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("fill-in-base-model", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("APRKDEV/argus-pro") prompt = "a cinematic monochrome photo of a futuristic neural uplink, neonaut laboratory aesthetic, extreme detail, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -15,26 +15,26 @@ widget:
|
|
| 15 |
url: "https://huggingface.co/APRKDEV/argus-pro/resolve/main/argus_pro_core.safetensors"
|
| 16 |
---
|
| 17 |
|
| 18 |
-
#
|
| 19 |
|
| 20 |
-
The flagship vision engine of the
|
| 21 |
|
| 22 |
-
##
|
| 23 |
-
-
|
| 24 |
-
-
|
| 25 |
-
-
|
| 26 |
-
-
|
| 27 |
-
-
|
| 28 |
|
| 29 |
-
##
|
| 30 |
-
This is a proprietary Neonaut artifact.
|
| 31 |
|
| 32 |
```python
|
| 33 |
from diffusers import AutoPipelineForText2Image
|
| 34 |
import torch
|
| 35 |
|
| 36 |
-
# Load the
|
| 37 |
-
pipe = AutoPipelineForText2Image.from_pretrained("
|
| 38 |
pipe.load_lora_weights("APRKDEV/argus-pro", weight_name="argus_pro_core.safetensors")
|
| 39 |
pipe.to("cuda")
|
| 40 |
|
|
@@ -43,5 +43,5 @@ image = pipe(prompt, num_inference_steps=30, guidance_scale=3.5).images[0]
|
|
| 43 |
image.save("neonaut_synthesis.png")
|
| 44 |
```
|
| 45 |
|
| 46 |
-
##
|
| 47 |
-
Authorized under the
|
|
|
|
| 15 |
url: "https://huggingface.co/APRKDEV/argus-pro/resolve/main/argus_pro_core.safetensors"
|
| 16 |
---
|
| 17 |
|
| 18 |
+
# Argus-Pro Vision Kernel
|
| 19 |
|
| 20 |
+
The flagship vision engine of the Neonaut Laboratory. Engineered for ultra-high-fidelity cinematic synthesis and photorealistic monochrome imagery.
|
| 21 |
|
| 22 |
+
## Sovereign Specifications
|
| 23 |
+
- Kernel Architecture: Argus-12B (Proprietary Vision Core)
|
| 24 |
+
- Base Lineage: Sovereign Neonaut Weights
|
| 25 |
+
- Training Aesthetic: Cinematic Monochrome / Neonaut Laboratory
|
| 26 |
+
- Optimal Resolution: 512px - 1024px
|
| 27 |
+
- Precision: bfloat16
|
| 28 |
|
| 29 |
+
## Usage Protocol
|
| 30 |
+
This is a proprietary Neonaut artifact. Use the following code for synthesis:
|
| 31 |
|
| 32 |
```python
|
| 33 |
from diffusers import AutoPipelineForText2Image
|
| 34 |
import torch
|
| 35 |
|
| 36 |
+
# Load the Argus Vision Core and the Argus-Pro kernel
|
| 37 |
+
pipe = AutoPipelineForText2Image.from_pretrained("black-forest-labs/FLUX.1-dev", torch_dtype=torch.bfloat16)
|
| 38 |
pipe.load_lora_weights("APRKDEV/argus-pro", weight_name="argus_pro_core.safetensors")
|
| 39 |
pipe.to("cuda")
|
| 40 |
|
|
|
|
| 43 |
image.save("neonaut_synthesis.png")
|
| 44 |
```
|
| 45 |
|
| 46 |
+
## License
|
| 47 |
+
Authorized under the Icarus Open-Source License (IOSL). Managed by APRK.
|