comdoleger commited on
Commit
d0b6afe
·
verified ·
1 Parent(s): 1464e4e

Upload extensions_built_in/image_reference_slider_trainer/__init__.py with huggingface_hub

Browse files
extensions_built_in/image_reference_slider_trainer/__init__.py ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # This is an example extension for custom training. It is great for experimenting with new ideas.
2
+ from toolkit.extension import Extension
3
+
4
+
5
+ # We make a subclass of Extension
6
+ class ImageReferenceSliderTrainer(Extension):
7
+ # uid must be unique, it is how the extension is identified
8
+ uid = "image_reference_slider_trainer"
9
+
10
+ # name is the name of the extension for printing
11
+ name = "Image Reference Slider Trainer"
12
+
13
+ # This is where your process class is loaded
14
+ # keep your imports in here so they don't slow down the rest of the program
15
+ @classmethod
16
+ def get_process(cls):
17
+ # import your process class here so it is only loaded when needed and return it
18
+ from .ImageReferenceSliderTrainerProcess import ImageReferenceSliderTrainerProcess
19
+ return ImageReferenceSliderTrainerProcess
20
+
21
+
22
+ AI_TOOLKIT_EXTENSIONS = [
23
+ # you can put a list of extensions here
24
+ ImageReferenceSliderTrainer
25
+ ]