APRKDEV commited on
Commit
2c23d1a
·
verified ·
1 Parent(s): 29fc791

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +8 -8
README.md CHANGED
@@ -1,14 +1,13 @@
1
  ---
2
  license: other
3
- base_model: black-forest-labs/FLUX.1-dev
4
  tags:
5
  - lora
6
  - text-to-image
7
  - diffusers
8
- - flux
9
  - monochrome
10
  - cinematic
11
  - neonaut
 
12
  instance_prompt: a cinematic monochrome photo in the neonaut laboratory aesthetic
13
  widget:
14
  - text: "a cinematic monochrome photo of a futuristic neural uplink, neonaut laboratory aesthetic, extreme detail, 8k"
@@ -18,23 +17,24 @@ widget:
18
 
19
  # 🛰️ Argus-Pro Vision Kernel
20
 
21
- The flagship vision engine of the **Neonaut Laboratory**. Architected for ultra-high-fidelity cinematic synthesis and photorealistic monochrome imagery.
22
 
23
  ## 🦾 Sovereign Specifications
24
- - **Kernel Architecture**: Argus-12B (Sovereign LoRA)
25
- - **Base Lineage**: Purified Flux.1 Dev
26
  - **Training Aesthetic**: Cinematic Monochrome / Neonaut Laboratory
27
  - **Optimal Resolution**: 512px - 1024px
28
  - **Precision**: bfloat16
29
 
30
  ## 🚀 Usage Protocol
31
- This is a sovereign Neonaut artifact. It requires the `diffusers` library for synthesis.
32
 
33
  ```python
34
- from diffusers import FluxPipeline
35
  import torch
36
 
37
- pipe = FluxPipeline.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
 
 
1
  ---
2
  license: other
 
3
  tags:
4
  - lora
5
  - text-to-image
6
  - diffusers
 
7
  - monochrome
8
  - cinematic
9
  - neonaut
10
+ - argus
11
  instance_prompt: a cinematic monochrome photo in the neonaut laboratory aesthetic
12
  widget:
13
  - text: "a cinematic monochrome photo of a futuristic neural uplink, neonaut laboratory aesthetic, extreme detail, 8k"
 
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.
31
 
32
  ```python
33
+ from diffusers import AutoPipelineForText2Image
34
  import torch
35
 
36
+ # Load the sovereign base and the Argus-Pro kernel
37
+ pipe = AutoPipelineForText2Image.from_pretrained("APRKDEV/argus-pro-base", torch_dtype=torch.bfloat16)
38
  pipe.load_lora_weights("APRKDEV/argus-pro", weight_name="argus_pro_core.safetensors")
39
  pipe.to("cuda")
40