English
joonghk commited on
Commit
cef3cec
·
verified ·
1 Parent(s): 5670769

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +24 -0
README.md ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ language:
4
+ - en
5
+ ---
6
+
7
+ ## Usage
8
+
9
+ ```python
10
+ from predictor.inference.loader import load_predictor
11
+ from predictor.inference.noise_selection import generate_noise_candidates, select_top_k_noise
12
+
13
+ predictor, norm_info = load_predictor("sdxl.pth", device="cuda")
14
+
15
+ See the GitHub repo for full inference and training instructions.
16
+
17
+ Citation
18
+
19
+ @article{kim2026naive,
20
+ title={Na\"{i}ve PAINE: Lightweight Text-to-Image Generation Improvement with Prompt Evaluation},
21
+ author={Kim, Joong Ho and Thai, Nicholas and Dip, Souhardya Saha and Lao, Dong and Mills, Keith G.},
22
+ journal={arXiv preprint arXiv:2603.12506},
23
+ year={2026}
24
+ }