prithivMLmods commited on
Commit
6218d1a
1 Parent(s): 862b997

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -0
README.md CHANGED
@@ -98,6 +98,29 @@ previous versions [ 28 steps ]
98
  | **Best Dimensions** | - 1024 x 1024 (Default) |
99
  | | - 768 x 1024 |
100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
101
  ## Setting Up Flux Space
102
  ```python
103
  import torch
 
98
  | **Best Dimensions** | - 1024 x 1024 (Default) |
99
  | | - 768 x 1024 |
100
 
101
+ ## Flux-Super-Realism-LoRA Model GitHub
102
+
103
+ | Repository Link | Description |
104
+ |---------------------------------------------------------------|----------------------------------------------|
105
+ | [Flux-Super-Realism-LoRA](https://github.com/Stranger-Zone/Flux-Super-Realism-LoRA/tree/main) | Flux Super Realism LoRA model repository for high-quality realism generation |
106
+
107
+ ## API Usage & Code Snippet
108
+ ```python
109
+ from gradio_client import Client
110
+
111
+ client = Client("prithivMLmods/FLUX-REALISM")
112
+ result = client.predict(
113
+ prompt="A tiny astronaut hatching from an egg on the moon, 4k, planet theme",
114
+ seed=0,
115
+ width=1024,
116
+ height=1024,
117
+ guidance_scale=6,
118
+ randomize_seed=True,
119
+ api_name="/run"
120
+ #takes minimum of 30 seconds
121
+ )
122
+ print(result)
123
+ ```
124
  ## Setting Up Flux Space
125
  ```python
126
  import torch