YiYiXu HF Staff commited on
Commit
a618ce3
·
verified ·
1 Parent(s): efe6ec3

Upload MellonPipelineConfig

Browse files
Files changed (1) hide show
  1. mellon_pipeline_config.json +85 -0
mellon_pipeline_config.json ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "label": "Florence2 Image Annotator Block",
3
+ "default_repo": "",
4
+ "default_dtype": "",
5
+ "node_params": {
6
+ "custom": {
7
+ "params": {
8
+ "image": {
9
+ "label": "Image",
10
+ "type": "custom",
11
+ "display": "input"
12
+ },
13
+ "annotation_task": {
14
+ "label": "Annotation Task",
15
+ "type": "custom",
16
+ "display": "input"
17
+ },
18
+ "annotation_prompt": {
19
+ "label": "Annotation Prompt",
20
+ "type": "custom",
21
+ "display": "input"
22
+ },
23
+ "annotation_output_type": {
24
+ "label": "Annotation Output Type",
25
+ "type": "custom",
26
+ "display": "input"
27
+ },
28
+ "annotation_overlay": {
29
+ "label": "Annotation Overlay",
30
+ "type": "custom",
31
+ "display": "input"
32
+ },
33
+ "fill": {
34
+ "label": "Fill",
35
+ "type": "custom",
36
+ "display": "input"
37
+ },
38
+ "image_annotator": {
39
+ "label": "Image Annotator",
40
+ "type": "diffusers_auto_model",
41
+ "display": "input"
42
+ },
43
+ "image_annotator_processor": {
44
+ "label": "Image Annotator Processor",
45
+ "type": "diffusers_auto_model",
46
+ "display": "input"
47
+ },
48
+ "annotations": {
49
+ "label": "Annotations",
50
+ "type": "custom",
51
+ "display": "output"
52
+ },
53
+ "images": {
54
+ "label": "Images",
55
+ "type": "custom",
56
+ "display": "output"
57
+ },
58
+ "doc": {
59
+ "label": "Doc",
60
+ "type": "string",
61
+ "display": "output"
62
+ }
63
+ },
64
+ "input_names": [
65
+ "image",
66
+ "annotation_task",
67
+ "annotation_prompt",
68
+ "annotation_output_type",
69
+ "annotation_overlay",
70
+ "fill"
71
+ ],
72
+ "model_input_names": [
73
+ "image_annotator",
74
+ "image_annotator_processor"
75
+ ],
76
+ "output_names": [
77
+ "annotations",
78
+ "images",
79
+ "doc"
80
+ ],
81
+ "block_name": "custom",
82
+ "node_type": "custom"
83
+ }
84
+ }
85
+ }