AbstractPhil commited on
Commit
15305b5
·
verified ·
1 Parent(s): 95b5fe8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +13 -0
README.md CHANGED
@@ -13,6 +13,19 @@ tags:
13
  library_name: diffusers
14
  pipeline_tag: text-to-image
15
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  # Most original checkpoints are default sd15 after testing
17
  For those who downloaded the models that either exhibit blobs or don't use flow matching noise - my sincerest apologies. They are defective. Blobs are expected, standard noise is not.
18
 
 
13
  library_name: diffusers
14
  pipeline_tag: text-to-image
15
  ---
16
+
17
+ ```
18
+ This is the config for the PT, you want the student unless you want to train it
19
+
20
+ "cfg": asdict(self.cfg),
21
+ "student": self.student.state_dict(),
22
+ "opt": self.opt.state_dict(),
23
+ "sched": self.sched.state_dict(),
24
+ "gstep": gstep
25
+
26
+ ```
27
+
28
+
29
  # Most original checkpoints are default sd15 after testing
30
  For those who downloaded the models that either exhibit blobs or don't use flow matching noise - my sincerest apologies. They are defective. Blobs are expected, standard noise is not.
31