all-the-public-replicate-models 1.2.0 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/models-lite.json +318 -310
  2. package/models.json +708 -310
  3. package/package.json +1 -1
package/models.json CHANGED
@@ -1,4 +1,402 @@
1
1
  [
2
+ {
3
+ "url": "https://replicate.com/sidhq/vzug",
4
+ "owner": "sidhq",
5
+ "name": "vzug",
6
+ "description": null,
7
+ "visibility": "public",
8
+ "github_url": null,
9
+ "paper_url": null,
10
+ "license_url": null,
11
+ "run_count": 5,
12
+ "cover_image_url": "https://pbxt.replicate.delivery/aybHGRPNFjbaLhU1Yx6f4xenBWCp33AXoTf2PVVg9JewmRuGB/out-0.png",
13
+ "default_example": {
14
+ "completed_at": "2023-10-06T23:12:44.965987Z",
15
+ "created_at": "2023-10-06T23:12:27.211485Z",
16
+ "error": null,
17
+ "id": "qrz7cc3bfyjqllqnf5iuhnlafq",
18
+ "input": {
19
+ "width": 1024,
20
+ "height": 1024,
21
+ "prompt": "In the style of TOK, a photo of a modern kitchen, white marble, large island",
22
+ "refine": "no_refiner",
23
+ "scheduler": "K_EULER",
24
+ "lora_scale": 0.6,
25
+ "num_outputs": 1,
26
+ "guidance_scale": 7.5,
27
+ "apply_watermark": true,
28
+ "high_noise_frac": 0.8,
29
+ "negative_prompt": "",
30
+ "prompt_strength": 0.8,
31
+ "num_inference_steps": 50
32
+ },
33
+ "metrics": {
34
+ "predict_time": 16.442777
35
+ },
36
+ "output": [
37
+ "https://pbxt.replicate.delivery/aybHGRPNFjbaLhU1Yx6f4xenBWCp33AXoTf2PVVg9JewmRuGB/out-0.png"
38
+ ],
39
+ "started_at": "2023-10-06T23:12:28.523210Z",
40
+ "status": "succeeded",
41
+ "version": "49e0e9370b5361ffd56e753209b065f8d0d55f754cd404784c1b136595f90911"
42
+ },
43
+ "latest_version": {
44
+ "id": "49e0e9370b5361ffd56e753209b065f8d0d55f754cd404784c1b136595f90911",
45
+ "created_at": "2023-10-06T23:11:24.277325Z",
46
+ "cog_version": "0.8.6",
47
+ "openapi_schema": {
48
+ "info": {
49
+ "title": "Cog",
50
+ "version": "0.1.0"
51
+ },
52
+ "openapi": "3.0.2",
53
+ "components": {
54
+ "schemas": {
55
+ "Input": {
56
+ "type": "object",
57
+ "title": "Input",
58
+ "properties": {
59
+ "mask": {
60
+ "type": "string",
61
+ "title": "Mask",
62
+ "format": "uri",
63
+ "x-order": 3,
64
+ "description": "Input mask for inpaint mode. Black areas will be preserved, white areas will be inpainted."
65
+ },
66
+ "seed": {
67
+ "type": "integer",
68
+ "title": "Seed",
69
+ "x-order": 11,
70
+ "description": "Random seed. Leave blank to randomize the seed"
71
+ },
72
+ "image": {
73
+ "type": "string",
74
+ "title": "Image",
75
+ "format": "uri",
76
+ "x-order": 2,
77
+ "description": "Input image for img2img or inpaint mode"
78
+ },
79
+ "width": {
80
+ "type": "integer",
81
+ "title": "Width",
82
+ "default": 1024,
83
+ "x-order": 4,
84
+ "description": "Width of output image"
85
+ },
86
+ "height": {
87
+ "type": "integer",
88
+ "title": "Height",
89
+ "default": 1024,
90
+ "x-order": 5,
91
+ "description": "Height of output image"
92
+ },
93
+ "prompt": {
94
+ "type": "string",
95
+ "title": "Prompt",
96
+ "default": "An astronaut riding a rainbow unicorn",
97
+ "x-order": 0,
98
+ "description": "Input prompt"
99
+ },
100
+ "refine": {
101
+ "allOf": [
102
+ {
103
+ "$ref": "#/components/schemas/refine"
104
+ }
105
+ ],
106
+ "default": "no_refiner",
107
+ "x-order": 12,
108
+ "description": "Which refine style to use"
109
+ },
110
+ "scheduler": {
111
+ "allOf": [
112
+ {
113
+ "$ref": "#/components/schemas/scheduler"
114
+ }
115
+ ],
116
+ "default": "K_EULER",
117
+ "x-order": 7,
118
+ "description": "scheduler"
119
+ },
120
+ "lora_scale": {
121
+ "type": "number",
122
+ "title": "Lora Scale",
123
+ "default": 0.6,
124
+ "maximum": 1,
125
+ "minimum": 0,
126
+ "x-order": 16,
127
+ "description": "LoRA additive scale. Only applicable on trained models."
128
+ },
129
+ "num_outputs": {
130
+ "type": "integer",
131
+ "title": "Num Outputs",
132
+ "default": 1,
133
+ "maximum": 4,
134
+ "minimum": 1,
135
+ "x-order": 6,
136
+ "description": "Number of images to output."
137
+ },
138
+ "refine_steps": {
139
+ "type": "integer",
140
+ "title": "Refine Steps",
141
+ "x-order": 14,
142
+ "description": "For base_image_refiner, the number of steps to refine, defaults to num_inference_steps"
143
+ },
144
+ "guidance_scale": {
145
+ "type": "number",
146
+ "title": "Guidance Scale",
147
+ "default": 7.5,
148
+ "maximum": 50,
149
+ "minimum": 1,
150
+ "x-order": 9,
151
+ "description": "Scale for classifier-free guidance"
152
+ },
153
+ "apply_watermark": {
154
+ "type": "boolean",
155
+ "title": "Apply Watermark",
156
+ "default": true,
157
+ "x-order": 15,
158
+ "description": "Applies a watermark to enable determining if an image is generated in downstream applications. If you have other provisions for generating or deploying images safely, you can use this to disable watermarking."
159
+ },
160
+ "high_noise_frac": {
161
+ "type": "number",
162
+ "title": "High Noise Frac",
163
+ "default": 0.8,
164
+ "maximum": 1,
165
+ "minimum": 0,
166
+ "x-order": 13,
167
+ "description": "For expert_ensemble_refiner, the fraction of noise to use"
168
+ },
169
+ "negative_prompt": {
170
+ "type": "string",
171
+ "title": "Negative Prompt",
172
+ "default": "",
173
+ "x-order": 1,
174
+ "description": "Input Negative Prompt"
175
+ },
176
+ "prompt_strength": {
177
+ "type": "number",
178
+ "title": "Prompt Strength",
179
+ "default": 0.8,
180
+ "maximum": 1,
181
+ "minimum": 0,
182
+ "x-order": 10,
183
+ "description": "Prompt strength when using img2img / inpaint. 1.0 corresponds to full destruction of information in image"
184
+ },
185
+ "replicate_weights": {
186
+ "type": "string",
187
+ "title": "Replicate Weights",
188
+ "x-order": 17,
189
+ "description": "Replicate LoRA weights to use. Leave blank to use the default weights."
190
+ },
191
+ "num_inference_steps": {
192
+ "type": "integer",
193
+ "title": "Num Inference Steps",
194
+ "default": 50,
195
+ "maximum": 500,
196
+ "minimum": 1,
197
+ "x-order": 8,
198
+ "description": "Number of denoising steps"
199
+ }
200
+ }
201
+ },
202
+ "Output": {
203
+ "type": "array",
204
+ "items": {
205
+ "type": "string",
206
+ "format": "uri"
207
+ },
208
+ "title": "Output"
209
+ },
210
+ "Status": {
211
+ "enum": [
212
+ "starting",
213
+ "processing",
214
+ "succeeded",
215
+ "canceled",
216
+ "failed"
217
+ ],
218
+ "type": "string",
219
+ "title": "Status",
220
+ "description": "An enumeration."
221
+ },
222
+ "refine": {
223
+ "enum": [
224
+ "no_refiner",
225
+ "expert_ensemble_refiner",
226
+ "base_image_refiner"
227
+ ],
228
+ "type": "string",
229
+ "title": "refine",
230
+ "description": "An enumeration."
231
+ },
232
+ "scheduler": {
233
+ "enum": [
234
+ "DDIM",
235
+ "DPMSolverMultistep",
236
+ "HeunDiscrete",
237
+ "KarrasDPM",
238
+ "K_EULER_ANCESTRAL",
239
+ "K_EULER",
240
+ "PNDM"
241
+ ],
242
+ "type": "string",
243
+ "title": "scheduler",
244
+ "description": "An enumeration."
245
+ },
246
+ "WebhookEvent": {
247
+ "enum": [
248
+ "start",
249
+ "output",
250
+ "logs",
251
+ "completed"
252
+ ],
253
+ "type": "string",
254
+ "title": "WebhookEvent",
255
+ "description": "An enumeration."
256
+ },
257
+ "ValidationError": {
258
+ "type": "object",
259
+ "title": "ValidationError",
260
+ "required": [
261
+ "loc",
262
+ "msg",
263
+ "type"
264
+ ],
265
+ "properties": {
266
+ "loc": {
267
+ "type": "array",
268
+ "items": {
269
+ "anyOf": [
270
+ {
271
+ "type": "string"
272
+ },
273
+ {
274
+ "type": "integer"
275
+ }
276
+ ]
277
+ },
278
+ "title": "Location"
279
+ },
280
+ "msg": {
281
+ "type": "string",
282
+ "title": "Message"
283
+ },
284
+ "type": {
285
+ "type": "string",
286
+ "title": "Error Type"
287
+ }
288
+ }
289
+ },
290
+ "PredictionRequest": {
291
+ "type": "object",
292
+ "title": "PredictionRequest",
293
+ "properties": {
294
+ "id": {
295
+ "type": "string",
296
+ "title": "Id"
297
+ },
298
+ "input": {
299
+ "$ref": "#/components/schemas/Input"
300
+ },
301
+ "webhook": {
302
+ "type": "string",
303
+ "title": "Webhook",
304
+ "format": "uri",
305
+ "maxLength": 65536,
306
+ "minLength": 1
307
+ },
308
+ "created_at": {
309
+ "type": "string",
310
+ "title": "Created At",
311
+ "format": "date-time"
312
+ },
313
+ "output_file_prefix": {
314
+ "type": "string",
315
+ "title": "Output File Prefix"
316
+ },
317
+ "webhook_events_filter": {
318
+ "type": "array",
319
+ "items": {
320
+ "$ref": "#/components/schemas/WebhookEvent"
321
+ },
322
+ "default": [
323
+ "start",
324
+ "output",
325
+ "logs",
326
+ "completed"
327
+ ]
328
+ }
329
+ }
330
+ },
331
+ "PredictionResponse": {
332
+ "type": "object",
333
+ "title": "PredictionResponse",
334
+ "properties": {
335
+ "id": {
336
+ "type": "string",
337
+ "title": "Id"
338
+ },
339
+ "logs": {
340
+ "type": "string",
341
+ "title": "Logs",
342
+ "default": ""
343
+ },
344
+ "error": {
345
+ "type": "string",
346
+ "title": "Error"
347
+ },
348
+ "input": {
349
+ "$ref": "#/components/schemas/Input"
350
+ },
351
+ "output": {
352
+ "$ref": "#/components/schemas/Output"
353
+ },
354
+ "status": {
355
+ "$ref": "#/components/schemas/Status"
356
+ },
357
+ "metrics": {
358
+ "type": "object",
359
+ "title": "Metrics"
360
+ },
361
+ "version": {
362
+ "type": "string",
363
+ "title": "Version"
364
+ },
365
+ "created_at": {
366
+ "type": "string",
367
+ "title": "Created At",
368
+ "format": "date-time"
369
+ },
370
+ "started_at": {
371
+ "type": "string",
372
+ "title": "Started At",
373
+ "format": "date-time"
374
+ },
375
+ "completed_at": {
376
+ "type": "string",
377
+ "title": "Completed At",
378
+ "format": "date-time"
379
+ }
380
+ }
381
+ },
382
+ "HTTPValidationError": {
383
+ "type": "object",
384
+ "title": "HTTPValidationError",
385
+ "properties": {
386
+ "detail": {
387
+ "type": "array",
388
+ "items": {
389
+ "$ref": "#/components/schemas/ValidationError"
390
+ },
391
+ "title": "Detail"
392
+ }
393
+ }
394
+ }
395
+ }
396
+ }
397
+ }
398
+ }
399
+ },
2
400
  {
3
401
  "url": "https://replicate.com/fofr/sdxl-enid",
4
402
  "owner": "fofr",
@@ -8,7 +406,7 @@
8
406
  "github_url": null,
9
407
  "paper_url": null,
10
408
  "license_url": null,
11
- "run_count": 27,
409
+ "run_count": 31,
12
410
  "cover_image_url": "https://replicate.delivery/pbxt/iNHmVkZtQjYZJdUrZi6YZCg0aofyOkjmUWKqzJ1NlSaojw1IA/out-0.png",
13
411
  "default_example": {
14
412
  "completed_at": "2023-10-06T19:28:17.306128Z",
@@ -406,7 +804,7 @@
406
804
  "github_url": null,
407
805
  "paper_url": null,
408
806
  "license_url": null,
409
- "run_count": 1343,
807
+ "run_count": 1348,
410
808
  "cover_image_url": "https://replicate.delivery/pbxt/ADg1vUiCNIbIBhvxfhEcIfrfdmfpNwZ6bzuEeyvsbK9glCbMC/out-0.png",
411
809
  "default_example": {
412
810
  "completed_at": "2023-09-12T02:55:41.165126Z",
@@ -1198,7 +1596,7 @@
1198
1596
  "github_url": "https://github.com/hotshotco/hotshot-xl",
1199
1597
  "paper_url": null,
1200
1598
  "license_url": "https://github.com/hotshotco/Hotshot-XL/blob/main/LICENSE",
1201
- "run_count": 297,
1599
+ "run_count": 339,
1202
1600
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/6edd75a5-37f4-4029-8467-2a7fb8fc97aa/mixed_0.gif",
1203
1601
  "default_example": {
1204
1602
  "completed_at": "2023-10-06T00:35:41.264582Z",
@@ -1874,7 +2272,7 @@
1874
2272
  "github_url": "https://github.com/guoyww/AnimateDiff",
1875
2273
  "paper_url": "https://arxiv.org/abs/2307.04725",
1876
2274
  "license_url": "https://github.com/guoyww/AnimateDiff/blob/main/LICENSE.txt",
1877
- "run_count": 2493,
2275
+ "run_count": 2526,
1878
2276
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/336d5c4e-4fd1-415a-a3f7-4a40fa5bdf2b/a_middle-aged_woman_utilizing__zo.gif",
1879
2277
  "default_example": {
1880
2278
  "completed_at": "2023-10-03T15:49:45.880669Z",
@@ -3388,7 +3786,7 @@
3388
3786
  "github_url": "https://github.com/lqhl/Real-ESRGAN",
3389
3787
  "paper_url": "https://arxiv.org/abs/2107.10833",
3390
3788
  "license_url": "https://github.com/lqhl/Real-ESRGAN/blob/master/LICENSE",
3391
- "run_count": 144,
3789
+ "run_count": 145,
3392
3790
  "cover_image_url": "https://pbxt.replicate.delivery/PIllGCXv2YKuHlshQfziTe1njFfxUk6cUkJOwTTKKf3MyJtGB/out.png",
3393
3791
  "default_example": {
3394
3792
  "completed_at": "2023-10-06T02:47:00.650586Z",
@@ -3660,7 +4058,7 @@
3660
4058
  "github_url": null,
3661
4059
  "paper_url": null,
3662
4060
  "license_url": null,
3663
- "run_count": 360,
4061
+ "run_count": 361,
3664
4062
  "cover_image_url": "https://pbxt.replicate.delivery/itZjM66RJgKmMVQX6m2m6mq0WdaT2m8s6qDvL6W9hKsEvxaE/output-0.png",
3665
4063
  "default_example": {
3666
4064
  "completed_at": "2023-10-05T13:41:39.249891Z",
@@ -3971,7 +4369,7 @@
3971
4369
  "github_url": null,
3972
4370
  "paper_url": null,
3973
4371
  "license_url": null,
3974
- "run_count": 242,
4372
+ "run_count": 245,
3975
4373
  "cover_image_url": "https://replicate.delivery/pbxt/68sk538ukX4IApgk9XRbgIBezJ22XH1kaqpL7aNkvPqvOj1IA/Enabled_00003_.gif",
3976
4374
  "default_example": {
3977
4375
  "completed_at": "2023-10-05T13:08:48.509790Z",
@@ -4712,7 +5110,7 @@
4712
5110
  "github_url": null,
4713
5111
  "paper_url": null,
4714
5112
  "license_url": null,
4715
- "run_count": 90,
5113
+ "run_count": 94,
4716
5114
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/d66065ec-d93a-455c-a99b-081f477caa59/out-0_1.png",
4717
5115
  "default_example": {
4718
5116
  "completed_at": "2023-10-05T10:31:09.522536Z",
@@ -5110,7 +5508,7 @@
5110
5508
  "github_url": null,
5111
5509
  "paper_url": null,
5112
5510
  "license_url": null,
5113
- "run_count": 68,
5511
+ "run_count": 70,
5114
5512
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/18f8ae35-7c33-4bb1-bfcd-f03d93b5d9a9/out-0_7.png",
5115
5513
  "default_example": {
5116
5514
  "completed_at": "2023-10-05T10:59:55.090700Z",
@@ -8852,7 +9250,7 @@
8852
9250
  "github_url": "https://github.com/lucataco/cog-hotshot-xl",
8853
9251
  "paper_url": "https://huggingface.co/hotshotco/SDXL-512",
8854
9252
  "license_url": "https://github.com/hotshotco/Hotshot-XL/blob/main/LICENSE",
8855
- "run_count": 165,
9253
+ "run_count": 177,
8856
9254
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/ed1749eb-87a6-45a9-bff3-cac89b7df97a/output.gif",
8857
9255
  "default_example": {
8858
9256
  "completed_at": "2023-10-05T06:10:20.524704Z",
@@ -9977,7 +10375,7 @@
9977
10375
  "github_url": null,
9978
10376
  "paper_url": null,
9979
10377
  "license_url": null,
9980
- "run_count": 163,
10378
+ "run_count": 169,
9981
10379
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/882c64df-8036-4d45-bab9-151a7c2f9350/orcas.png",
9982
10380
  "default_example": {
9983
10381
  "completed_at": "2023-10-05T00:25:01.878169Z",
@@ -11696,7 +12094,7 @@
11696
12094
  "github_url": null,
11697
12095
  "paper_url": null,
11698
12096
  "license_url": null,
11699
- "run_count": 258,
12097
+ "run_count": 259,
11700
12098
  "cover_image_url": "https://pbxt.replicate.delivery/HGs5W9Q8LWp7AZbs4VgJVrtVZ9lwZbLep3UmZj1RCmeFp0qRA/out-0.png",
11701
12099
  "default_example": {
11702
12100
  "completed_at": "2023-10-04T16:52:21.826628Z",
@@ -12496,7 +12894,7 @@
12496
12894
  "github_url": "https://github.com/zsxkib/ST-MFNet",
12497
12895
  "paper_url": "https://arxiv.org/abs/2111.15483",
12498
12896
  "license_url": "https://github.com/danier97/ST-MFNet/blob/main/LICENSE",
12499
- "run_count": 302,
12897
+ "run_count": 308,
12500
12898
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/62abc5c1-849d-4291-b1e0-255854277aea/output.gif",
12501
12899
  "default_example": {
12502
12900
  "completed_at": "2023-10-03T13:09:36.440533Z",
@@ -13996,7 +14394,7 @@
13996
14394
  "github_url": "https://github.com/lucataco/cog-sdxl-controlnet",
13997
14395
  "paper_url": null,
13998
14396
  "license_url": "https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0/blob/main/LICENSE.md",
13999
- "run_count": 22616,
14397
+ "run_count": 22632,
14000
14398
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/7edf6f87-bd0d-4a4f-9e11-d944bb07a3ea/output.png",
14001
14399
  "default_example": {
14002
14400
  "completed_at": "2023-10-04T03:43:32.596373Z",
@@ -14499,7 +14897,7 @@
14499
14897
  "github_url": null,
14500
14898
  "paper_url": null,
14501
14899
  "license_url": null,
14502
- "run_count": 83,
14900
+ "run_count": 84,
14503
14901
  "cover_image_url": "https://pbxt.replicate.delivery/uMf6Vd8SfLo6MUvcCOeDfY3lXofTYDQlvRkxYfEuW3brqpoaE/output-0.png",
14504
14902
  "default_example": {
14505
14903
  "completed_at": "2023-10-03T20:20:59.487110Z",
@@ -14810,7 +15208,7 @@
14810
15208
  "github_url": "https://github.com/replicate/cog-t2i-adapter-sdxl",
14811
15209
  "paper_url": "https://arxiv.org/abs/2302.08453",
14812
15210
  "license_url": null,
14813
- "run_count": 349,
15211
+ "run_count": 351,
14814
15212
  "cover_image_url": "https://pbxt.replicate.delivery/nuE2A9YWRkLaN1ptkgad1JeHtYJwUWAt6p7Bie0fYDcNlCVjA/out-0.png",
14815
15213
  "default_example": {
14816
15214
  "completed_at": "2023-10-03T18:51:19.116216Z",
@@ -15135,7 +15533,7 @@
15135
15533
  "github_url": "https://github.com/replicate/cog-t2i-adapter-sdxl",
15136
15534
  "paper_url": "https://arxiv.org/abs/2302.08453",
15137
15535
  "license_url": null,
15138
- "run_count": 353,
15536
+ "run_count": 356,
15139
15537
  "cover_image_url": "https://replicate.delivery/pbxt/f8xV2WI2WdzpdCqOdgdBF4p8AI5LNEPTQ5WWjn62yUzLNQ1IA/out-0.png",
15140
15538
  "default_example": {
15141
15539
  "completed_at": "2023-10-03T17:51:19.526916Z",
@@ -15460,7 +15858,7 @@
15460
15858
  "github_url": "https://github.com/replicate/cog-t2i-adapter-sdxl",
15461
15859
  "paper_url": "https://arxiv.org/abs/2302.08453",
15462
15860
  "license_url": null,
15463
- "run_count": 575,
15861
+ "run_count": 576,
15464
15862
  "cover_image_url": "https://replicate.delivery/pbxt/ALPdmbV71P7OAx6kEoiG1vS7H4KBofifF1jGII7g73gZ4gqRA/out-0.png",
15465
15863
  "default_example": {
15466
15864
  "completed_at": "2023-10-03T18:23:21.819510Z",
@@ -16110,7 +16508,7 @@
16110
16508
  "github_url": "https://github.com/replicate/cog-t2i-adapter-sdxl",
16111
16509
  "paper_url": "https://arxiv.org/abs/2302.08453",
16112
16510
  "license_url": null,
16113
- "run_count": 338,
16511
+ "run_count": 341,
16114
16512
  "cover_image_url": "https://pbxt.replicate.delivery/jR6ZtGztysLkJxhSeGHWu25iu9GfopTWIAeb6GSdr5K8xBVjA/out-0.png",
16115
16513
  "default_example": {
16116
16514
  "completed_at": "2023-10-03T18:23:59.395638Z",
@@ -17740,7 +18138,7 @@
17740
18138
  "github_url": "https://github.com/daanelson/cog-blip-2",
17741
18139
  "paper_url": "https://arxiv.org/abs/2301.12597",
17742
18140
  "license_url": null,
17743
- "run_count": 9396475,
18141
+ "run_count": 9401051,
17744
18142
  "cover_image_url": "https://replicate.delivery/pbxt/IJEPmgAlL2zNBNDoRRKFegTEcxnlRhoQxlNjPHSZEy0pSIKn/gg_bridge.jpeg",
17745
18143
  "default_example": {
17746
18144
  "completed_at": "2023-02-13T22:26:49.396028Z",
@@ -18005,7 +18403,7 @@
18005
18403
  "github_url": "https://github.com/replicate/cog-sdxl",
18006
18404
  "paper_url": "https://arxiv.org/abs/2307.01952",
18007
18405
  "license_url": "https://github.com/Stability-AI/generative-models/blob/main/model_licenses/LICENSE-SDXL1.0",
18008
- "run_count": 7330984,
18406
+ "run_count": 7349884,
18009
18407
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/61004930-fb88-4e09-9bd4-74fd8b4aa677/sdxl_cover.png",
18010
18408
  "default_example": {
18011
18409
  "completed_at": "2023-07-26T21:04:37.933562Z",
@@ -19431,7 +19829,7 @@
19431
19829
  "github_url": null,
19432
19830
  "paper_url": null,
19433
19831
  "license_url": null,
19434
- "run_count": 217,
19832
+ "run_count": 221,
19435
19833
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/0ca32507-fa6a-4b0f-a262-deefdb19c17f/BIDACOJ_11.jpg",
19436
19834
  "default_example": {
19437
19835
  "completed_at": "2023-09-30T18:01:24.872997Z",
@@ -19824,7 +20222,7 @@
19824
20222
  "github_url": null,
19825
20223
  "paper_url": null,
19826
20224
  "license_url": null,
19827
- "run_count": 316,
20225
+ "run_count": 318,
19828
20226
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/c347be19-a17e-47e6-a276-ea55a8f7edb5/out-0.png",
19829
20227
  "default_example": {
19830
20228
  "completed_at": "2023-09-30T16:36:54.683355Z",
@@ -20222,7 +20620,7 @@
20222
20620
  "github_url": null,
20223
20621
  "paper_url": null,
20224
20622
  "license_url": null,
20225
- "run_count": 809,
20623
+ "run_count": 810,
20226
20624
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/d4fe2d5f-0b0d-4ae5-8645-91920cbf6216/fitnessme-06.png",
20227
20625
  "default_example": {
20228
20626
  "completed_at": "2023-09-16T16:16:48.191683Z",
@@ -42375,7 +42773,7 @@
42375
42773
  "github_url": null,
42376
42774
  "paper_url": null,
42377
42775
  "license_url": null,
42378
- "run_count": 586,
42776
+ "run_count": 587,
42379
42777
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/82d951e4-4664-449f-9b1c-ca1329b7446b/guu2.png",
42380
42778
  "default_example": {
42381
42779
  "completed_at": "2023-09-30T08:30:27.533123Z",
@@ -42612,7 +43010,7 @@
42612
43010
  "github_url": null,
42613
43011
  "paper_url": null,
42614
43012
  "license_url": null,
42615
- "run_count": 80,
43013
+ "run_count": 84,
42616
43014
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/291030f4-d88b-44b8-a487-08b0fc6e71f6/IMG_3190.png",
42617
43015
  "default_example": {
42618
43016
  "completed_at": "2023-09-30T00:17:48.777501Z",
@@ -43415,7 +43813,7 @@
43415
43813
  "github_url": "https://github.com/replicate/cog-nougat",
43416
43814
  "paper_url": "https://arxiv.org/abs/2308.13418",
43417
43815
  "license_url": "https://raw.githubusercontent.com/facebookresearch/nougat/main/LICENSE-MODEL.md",
43418
- "run_count": 108,
43816
+ "run_count": 110,
43419
43817
  "cover_image_url": null,
43420
43818
  "default_example": {
43421
43819
  "completed_at": "2023-09-27T16:24:31.144845Z",
@@ -49935,7 +50333,7 @@
49935
50333
  "github_url": "https://github.com/mistralai/mistral-src",
49936
50334
  "paper_url": "https://mistral.ai/news/announcing-mistral-7b/",
49937
50335
  "license_url": "https://github.com/mistralai/mistral-src/blob/main/LICENSE",
49938
- "run_count": 392,
50336
+ "run_count": 396,
49939
50337
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/c56ddfb4-2193-4a65-862b-c274da78f07d/mistral7b_image2.jpeg",
49940
50338
  "default_example": {
49941
50339
  "completed_at": "2023-09-28T23:05:55.531374Z",
@@ -50233,7 +50631,7 @@
50233
50631
  "github_url": "https://github.com/mistralai/mistral-src",
50234
50632
  "paper_url": "https://mistral.ai/news/announcing-mistral-7b/",
50235
50633
  "license_url": "https://github.com/mistralai/mistral-src/blob/main/LICENSE",
50236
- "run_count": 2996,
50634
+ "run_count": 3003,
50237
50635
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/9df9f2b0-13f9-4c19-beb9-9f258928af4e/mistral7b_image1.jpeg",
50238
50636
  "default_example": {
50239
50637
  "completed_at": "2023-09-29T02:02:38.141678Z",
@@ -50709,7 +51107,7 @@
50709
51107
  "github_url": "https://github.com/facebookresearch/codellama",
50710
51108
  "paper_url": "https://ai.meta.com/research/publications/code-llama-open-foundation-models-for-code/",
50711
51109
  "license_url": "https://github.com/facebookresearch/llama/blob/main/LICENSE",
50712
- "run_count": 8679,
51110
+ "run_count": 8682,
50713
51111
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/aac9e52d-b191-4fb2-862a-b2bd6341fabc/large-2.png",
50714
51112
  "default_example": {
50715
51113
  "completed_at": "2023-09-28T21:59:06.828201Z",
@@ -51486,7 +51884,7 @@
51486
51884
  "github_url": "https://github.com/facebookresearch/codellama",
51487
51885
  "paper_url": "https://ai.meta.com/research/publications/code-llama-open-foundation-models-for-code/",
51488
51886
  "license_url": "https://github.com/facebookresearch/llama/blob/main/LICENSE",
51489
- "run_count": 7434,
51887
+ "run_count": 7446,
51490
51888
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/88e08650-ebbe-4440-9dbd-c790580ac548/medium-1.png",
51491
51889
  "default_example": {
51492
51890
  "completed_at": "2023-08-26T05:13:52.787864Z",
@@ -51959,7 +52357,7 @@
51959
52357
  "github_url": "https://github.com/facebookresearch/codellama",
51960
52358
  "paper_url": "https://ai.meta.com/research/publications/code-llama-open-foundation-models-for-code/",
51961
52359
  "license_url": "https://github.com/facebookresearch/llama/blob/main/LICENSE",
51962
- "run_count": 9485,
52360
+ "run_count": 9498,
51963
52361
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/f729aa1f-e9a9-463f-b6b0-756593ca4f1a/small-6.png",
51964
52362
  "default_example": {
51965
52363
  "completed_at": "2023-08-26T05:09:00.103398Z",
@@ -52468,7 +52866,7 @@
52468
52866
  "github_url": "https://github.com/facebookresearch/codellama",
52469
52867
  "paper_url": "https://ai.meta.com/research/publications/code-llama-open-foundation-models-for-code/",
52470
52868
  "license_url": "https://github.com/facebookresearch/llama/blob/main/LICENSE",
52471
- "run_count": 780,
52869
+ "run_count": 785,
52472
52870
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/648fce8c-5ec5-48dd-bb40-4d6f0030a77a/large-1.png",
52473
52871
  "default_example": {
52474
52872
  "completed_at": "2023-08-26T05:40:26.823585Z",
@@ -53910,7 +54308,7 @@
53910
54308
  "github_url": "https://github.com/facebookresearch/codellama",
53911
54309
  "paper_url": "https://ai.meta.com/research/publications/code-llama-open-foundation-models-for-code/",
53912
54310
  "license_url": "https://ai.meta.com/research/publications/code-llama-open-foundation-models-for-code/",
53913
- "run_count": 47839,
54311
+ "run_count": 47944,
53914
54312
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/8fe11d1b-9365-4631-875f-6ca39aaf7b99/medium-4.png",
53915
54313
  "default_example": {
53916
54314
  "completed_at": "2023-08-26T05:54:12.408031Z",
@@ -54282,7 +54680,7 @@
54282
54680
  "github_url": "https://github.com/facebookresearch/codellama",
54283
54681
  "paper_url": "https://ai.meta.com/research/publications/code-llama-open-foundation-models-for-code/",
54284
54682
  "license_url": "https://github.com/facebookresearch/llama/blob/main/LICENSE",
54285
- "run_count": 5419,
54683
+ "run_count": 5431,
54286
54684
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/19000ca4-fd91-40f2-86cc-41ca62d1ce83/small-4.png",
54287
54685
  "default_example": {
54288
54686
  "completed_at": "2023-09-06T18:52:33.856612Z",
@@ -55522,7 +55920,7 @@
55522
55920
  "github_url": null,
55523
55921
  "paper_url": null,
55524
55922
  "license_url": null,
55525
- "run_count": 161,
55923
+ "run_count": 162,
55526
55924
  "cover_image_url": "https://replicate.delivery/pbxt/ZfDRYJrg2PVWZaCYQvK0EXE5McIx2f1dC4bYVQiNpez3NnRjA/d2919cd6-5e07-11ee-b342-6e77174c63e7.png",
55527
55925
  "default_example": {
55528
55926
  "completed_at": "2023-09-28T14:03:39.929212Z",
@@ -59064,7 +59462,7 @@
59064
59462
  "github_url": null,
59065
59463
  "paper_url": null,
59066
59464
  "license_url": null,
59067
- "run_count": 255,
59465
+ "run_count": 258,
59068
59466
  "cover_image_url": "https://replicate.delivery/pbxt/wZfY6fmFlRotG0b8Se1BRu7Wm3hcgfuzRIf5gAMgNzODidfZE/out-1.png",
59069
59467
  "default_example": {
59070
59468
  "completed_at": "2023-09-25T22:26:24.677041Z",
@@ -59458,7 +59856,7 @@
59458
59856
  "github_url": null,
59459
59857
  "paper_url": null,
59460
59858
  "license_url": null,
59461
- "run_count": 584,
59859
+ "run_count": 585,
59462
59860
  "cover_image_url": "https://pbxt.replicate.delivery/8e3k5FLbGiw2bankhv6hI4gimHk6d3SuMEzRFqg7xnSDbO0IA/out-0.png",
59463
59861
  "default_example": {
59464
59862
  "completed_at": "2023-09-27T12:09:43.723926Z",
@@ -60245,7 +60643,7 @@
60245
60643
  "github_url": "https://github.com/wolverinn/stable-diffusion-multi-user",
60246
60644
  "paper_url": null,
60247
60645
  "license_url": "https://github.com/wolverinn/stable-diffusion-multi-user/blob/master/LICENSE",
60248
- "run_count": 2168,
60646
+ "run_count": 2174,
60249
60647
  "cover_image_url": "https://replicate.delivery/pbxt/1x7zt8yjFS7lGhttgjjvMefcg48bLFxCGABJs61VuIGJktiRA/149fedb2-4f80-11ee-ab94-8204e2f4a193.png",
60250
60648
  "default_example": {
60251
60649
  "completed_at": "2023-09-10T02:16:42.354864Z",
@@ -62147,7 +62545,7 @@
62147
62545
  "github_url": null,
62148
62546
  "paper_url": "https://huggingface.co/migtissera/Synthia-13B-v1.2",
62149
62547
  "license_url": null,
62150
- "run_count": 30,
62548
+ "run_count": 31,
62151
62549
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/e0f37170-ae84-46d3-9554-0a6335116fc3/Synthia.jpeg",
62152
62550
  "default_example": {
62153
62551
  "completed_at": "2023-09-26T13:06:26.362864Z",
@@ -62828,7 +63226,7 @@
62828
63226
  "github_url": null,
62829
63227
  "paper_url": null,
62830
63228
  "license_url": null,
62831
- "run_count": 690,
63229
+ "run_count": 718,
62832
63230
  "cover_image_url": "https://replicate.delivery/pbxt/nuOfFs3YzoWbAavGUQ4kB1m50hvGuXplffehCLuKY5djLobGB/out-0.png",
62833
63231
  "default_example": {
62834
63232
  "completed_at": "2023-09-22T19:44:57.083473Z",
@@ -65102,7 +65500,7 @@
65102
65500
  "github_url": null,
65103
65501
  "paper_url": null,
65104
65502
  "license_url": null,
65105
- "run_count": 197,
65503
+ "run_count": 199,
65106
65504
  "cover_image_url": "https://pbxt.replicate.delivery/vnXARve6s2yHJyoAvWM5AT2p1YTJZoiwRZUzvpDczhsm70zIA/output.png",
65107
65505
  "default_example": {
65108
65506
  "completed_at": "2023-09-25T02:09:19.341060Z",
@@ -65346,7 +65744,7 @@
65346
65744
  "github_url": null,
65347
65745
  "paper_url": null,
65348
65746
  "license_url": null,
65349
- "run_count": 1480,
65747
+ "run_count": 1488,
65350
65748
  "cover_image_url": "https://pbxt.replicate.delivery/gmWC3mxkSYpuKNtMOoVW3QgeEVn9SrGpmmeiI0Mg0oiTxrmRA/out-0.png",
65351
65749
  "default_example": {
65352
65750
  "completed_at": "2023-09-22T03:30:28.878800Z",
@@ -66502,7 +66900,7 @@
66502
66900
  "github_url": "https://github.com/lucataco/cog-animatediff",
66503
66901
  "paper_url": "https://arxiv.org/abs/2307.04725",
66504
66902
  "license_url": "https://github.com/guoyww/AnimateDiff/blob/main/LICENSE.txt",
66505
- "run_count": 86828,
66903
+ "run_count": 86858,
66506
66904
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/d63d3c3b-4d73-4d27-b5b0-6b6fb4def277/anime-girl-pink.gif",
66507
66905
  "default_example": {
66508
66906
  "completed_at": "2023-07-21T01:21:20.587028Z",
@@ -66804,7 +67202,7 @@
66804
67202
  "github_url": "https://github.com/lucataco/cog-illusion-diffusion-hq",
66805
67203
  "paper_url": null,
66806
67204
  "license_url": null,
66807
- "run_count": 103646,
67205
+ "run_count": 103815,
66808
67206
  "cover_image_url": "https://replicate.delivery/pbxt/HPJuktTvnJojD94PbrmeDWHcgmHfxLc5bOK7XlLFUSeB1vOjA/output-0.png",
66809
67207
  "default_example": {
66810
67208
  "completed_at": "2023-09-24T05:44:01.816875Z",
@@ -68349,7 +68747,7 @@
68349
68747
  "github_url": null,
68350
68748
  "paper_url": null,
68351
68749
  "license_url": null,
68352
- "run_count": 114,
68750
+ "run_count": 115,
68353
68751
  "cover_image_url": "https://pbxt.replicate.delivery/edmvfKyCSohuL0NWJ4gIshyZqsLWenFw3D8TdNMfqlyCCebNC/out-3.png",
68354
68752
  "default_example": {
68355
68753
  "completed_at": "2023-10-06T17:38:40.838180Z",
@@ -151912,7 +152310,7 @@
151912
152310
  "github_url": null,
151913
152311
  "paper_url": null,
151914
152312
  "license_url": null,
151915
- "run_count": 393,
152313
+ "run_count": 403,
151916
152314
  "cover_image_url": "https://pbxt.replicate.delivery/JpjyaecGjUXuda8aozfxD7zGf20gFOkx0lVuRIrjxiiQUsNjA/out-0.png",
151917
152315
  "default_example": {
151918
152316
  "completed_at": "2023-09-22T15:19:36.755923Z",
@@ -152995,7 +153393,7 @@
152995
153393
  "github_url": "https://github.com/RoshanSood/stylize-bladerunner",
152996
153394
  "paper_url": null,
152997
153395
  "license_url": null,
152998
- "run_count": 86,
153396
+ "run_count": 88,
152999
153397
  "cover_image_url": "https://replicate.delivery/pbxt/TcM8HsqK7PKjP9wcYPSYMBDlLSvv8DRdA9BSvEQnIU0wCqZE/out-0.png",
153000
153398
  "default_example": {
153001
153399
  "completed_at": "2023-09-21T23:24:52.333110Z",
@@ -155572,7 +155970,7 @@
155572
155970
  "github_url": "https://github.com/haoheliu/versatile_audio_super_resolution",
155573
155971
  "paper_url": "https://arxiv.org/abs/2309.07314",
155574
155972
  "license_url": "https://huggingface.co/haoheliu/wellsolve_audio_super_resolution_48k/blob/main/README.md",
155575
- "run_count": 3629,
155973
+ "run_count": 3638,
155576
155974
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/6bc4e480-6695-451b-940d-48a3b83a1356/replicate-prediction-jvi5xvlbg4v4.png",
155577
155975
  "default_example": {
155578
155976
  "completed_at": "2023-09-20T19:19:06.183902Z",
@@ -158059,7 +158457,7 @@
158059
158457
  "github_url": null,
158060
158458
  "paper_url": null,
158061
158459
  "license_url": null,
158062
- "run_count": 2555,
158460
+ "run_count": 2562,
158063
158461
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/556e1d38-2b67-419e-890f-f3b9aba392e9/Screenshot_2023-09-19_at_1.14.58_.png",
158064
158462
  "default_example": {
158065
158463
  "completed_at": "2023-09-19T14:47:18.855162Z",
@@ -160246,7 +160644,7 @@
160246
160644
  "github_url": "https://github.com/andreasjansson/cog-qrcode",
160247
160645
  "paper_url": null,
160248
160646
  "license_url": null,
160249
- "run_count": 124379,
160647
+ "run_count": 124504,
160250
160648
  "cover_image_url": "https://replicate.delivery/pbxt/hHJNV9QteKX8DK2ckkUeXsqbEIKNGFXU1fN0MJoizz3iPlOjA/output-0.png",
160251
160649
  "default_example": {
160252
160650
  "completed_at": "2023-09-23T23:42:42.564603Z",
@@ -161684,7 +162082,7 @@
161684
162082
  "github_url": null,
161685
162083
  "paper_url": null,
161686
162084
  "license_url": null,
161687
- "run_count": 8024,
162085
+ "run_count": 8068,
161688
162086
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/fd480076-4daf-4f1e-b9b2-8e406c4d0016/app_icon_1.png",
161689
162087
  "default_example": {
161690
162088
  "completed_at": "2023-09-17T16:42:49.789353Z",
@@ -164238,7 +164636,7 @@
164238
164636
  "github_url": "https://github.com/facebookresearch/audiocraft",
164239
164637
  "paper_url": null,
164240
164638
  "license_url": "https://github.com/facebookresearch/audiocraft/blob/main/LICENSE",
164241
- "run_count": 41892,
164639
+ "run_count": 42054,
164242
164640
  "cover_image_url": null,
164243
164641
  "default_example": {
164244
164642
  "completed_at": "2023-09-15T22:43:35.800887Z",
@@ -165963,7 +166361,7 @@
165963
166361
  "github_url": "https://github.com/RoshanSood/stylize-cyberpunk",
165964
166362
  "paper_url": null,
165965
166363
  "license_url": null,
165966
- "run_count": 143,
166364
+ "run_count": 144,
165967
166365
  "cover_image_url": "https://replicate.delivery/pbxt/fDxIJhweHeXxlphal48ZT87MffnPwp9e3kOfc1fXJvJZSJskRA/out-0.png",
165968
166366
  "default_example": {
165969
166367
  "completed_at": "2023-09-16T02:17:54.939483Z",
@@ -166749,7 +167147,7 @@
166749
167147
  "github_url": "https://github.com/Sigil-Wen/TTS",
166750
167148
  "paper_url": null,
166751
167149
  "license_url": "https://coqui.ai/cpml",
166752
- "run_count": 10458,
167150
+ "run_count": 10488,
166753
167151
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/2a0e464d-b5e4-40d9-868e-493660d80699/xtts_thumbnail.png",
166754
167152
  "default_example": {
166755
167153
  "completed_at": "2023-09-18T19:54:08.629346Z",
@@ -171562,7 +171960,7 @@
171562
171960
  "github_url": "https://github.com/a16z-infra/cog-llama-template",
171563
171961
  "paper_url": "https://ai.meta.com/research/publications/llama-2-open-foundation-and-fine-tuned-chat-models/",
171564
171962
  "license_url": "https://ai.meta.com/resources/models-and-libraries/llama-downloads/",
171565
- "run_count": 1378235,
171963
+ "run_count": 1378722,
171566
171964
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/264ff5d2-0672-4eb4-9f2c-cea13af0ccbf/future-llama-70b-chat.png",
171567
171965
  "default_example": {
171568
171966
  "completed_at": "2023-07-21T21:01:26.105194Z",
@@ -172019,7 +172417,7 @@
172019
172417
  "github_url": "https://github.com/a16z-infra/cog-llama-template",
172020
172418
  "paper_url": "https://ai.meta.com/research/publications/llama-2-open-foundation-and-fine-tuned-chat-models/",
172021
172419
  "license_url": "https://ai.meta.com/resources/models-and-libraries/llama-downloads/",
172022
- "run_count": 45696,
172420
+ "run_count": 45708,
172023
172421
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/a0fc9796-540f-4a31-ae81-1fe19bb22c96/llama_herd.png",
172024
172422
  "default_example": {
172025
172423
  "completed_at": "2023-07-21T05:03:16.263188Z",
@@ -172348,7 +172746,7 @@
172348
172746
  "github_url": "https://github.com/a16z-infra/cog-llama-template",
172349
172747
  "paper_url": "https://ai.meta.com/research/publications/llama-2-open-foundation-and-fine-tuned-chat-models/",
172350
172748
  "license_url": "https://ai.meta.com/resources/models-and-libraries/llama-downloads/",
172351
- "run_count": 1570426,
172749
+ "run_count": 1570546,
172352
172750
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/7f5efca9-1c91-45b6-a708-1e00be8e2b86/high_tech_llama.png",
172353
172751
  "default_example": {
172354
172752
  "completed_at": "2023-07-22T00:45:01.280236Z",
@@ -172999,7 +173397,7 @@
172999
173397
  "github_url": "https://github.com/replicate/cog-llama-template",
173000
173398
  "paper_url": "https://ai.meta.com/research/publications/llama-2-open-foundation-and-fine-tuned-chat-models/",
173001
173399
  "license_url": "https://ai.meta.com/resources/models-and-libraries/llama-downloads/",
173002
- "run_count": 9488,
173400
+ "run_count": 9501,
173003
173401
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/77764656-b253-4f6a-a666-52b560312695/ideogram.jpg",
173004
173402
  "default_example": {
173005
173403
  "completed_at": "2023-09-06T16:56:40.321780Z",
@@ -173430,7 +173828,7 @@
173430
173828
  "github_url": "https://github.com/a16z-infra/cog-llama-template",
173431
173829
  "paper_url": "https://ai.meta.com/research/publications/llama-2-open-foundation-and-fine-tuned-chat-models/",
173432
173830
  "license_url": "https://ai.meta.com/resources/models-and-libraries/llama-downloads/",
173433
- "run_count": 328427,
173831
+ "run_count": 328870,
173434
173832
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/33ad1ead-8954-4b3b-bd46-125c7e18143f/llama-logo.png",
173435
173833
  "default_example": {
173436
173834
  "completed_at": "2023-07-22T00:58:11.785972Z",
@@ -174070,7 +174468,7 @@
174070
174468
  "github_url": null,
174071
174469
  "paper_url": null,
174072
174470
  "license_url": null,
174073
- "run_count": 133483,
174471
+ "run_count": 133504,
174074
174472
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/8b3db5d5-a4de-4271-b7b2-d511672452e1/out-0.png",
174075
174473
  "default_example": {
174076
174474
  "completed_at": "2023-08-22T16:53:10.779773Z",
@@ -176338,7 +176736,7 @@
176338
176736
  "github_url": "https://github.com/lucataco/cog-realistic-vision-v5.1",
176339
176737
  "paper_url": null,
176340
176738
  "license_url": "https://huggingface.co/models?license=license%3Aopenrail%2B%2B",
176341
- "run_count": 13647,
176739
+ "run_count": 13650,
176342
176740
  "cover_image_url": "https://replicate.delivery/pbxt/BE3Saw9ARtYtGlFShWJWdWxo3yeW1bf4ozNvjgNsw7BZJtjRA/output.png",
176343
176741
  "default_example": {
176344
176742
  "completed_at": "2023-09-13T02:37:14.397136Z",
@@ -177030,7 +177428,7 @@
177030
177428
  "github_url": "https://github.com/lucataco/cog-sdxl-controlnet-depth",
177031
177429
  "paper_url": null,
177032
177430
  "license_url": "https://huggingface.co/stabilityai/stable-diffusion-xl-base-1.0/blob/main/LICENSE.md",
177033
- "run_count": 10740,
177431
+ "run_count": 10752,
177034
177432
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/0adf5353-9556-45a3-81c8-50417c81f0f2/sdxl-controlnet-depth.png",
177035
177433
  "default_example": {
177036
177434
  "completed_at": "2023-09-12T22:47:53.749512Z",
@@ -178044,7 +178442,7 @@
178044
178442
  "github_url": null,
178045
178443
  "paper_url": null,
178046
178444
  "license_url": null,
178047
- "run_count": 388967,
178445
+ "run_count": 392311,
178048
178446
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/1c8604e3-fc58-4dd6-b2ff-337ab396df7c/fofr_two_friendly_3d_characters_a.png",
178049
178447
  "default_example": {
178050
178448
  "completed_at": "2023-09-12T10:08:01.341083Z",
@@ -178351,7 +178749,7 @@
178351
178749
  "github_url": "https://github.com/lucataco/cog-clip-interrogator",
178352
178750
  "paper_url": "https://replicate.com/pharmapsychotic/clip-interrogator",
178353
178751
  "license_url": "https://github.com/pharmapsychotic/clip-interrogator/blob/main/LICENSE",
178354
- "run_count": 44778,
178752
+ "run_count": 44801,
178355
178753
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/e57b5c7f-d0ef-4b1f-ba69-c6e16a932173/replicate-prediction-lyehbrdbrdzt.png",
178356
178754
  "default_example": {
178357
178755
  "completed_at": "2023-09-12T03:01:04.657201Z",
@@ -181893,7 +182291,7 @@
181893
182291
  "github_url": null,
181894
182292
  "paper_url": null,
181895
182293
  "license_url": null,
181896
- "run_count": 1298,
182294
+ "run_count": 1304,
181897
182295
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/237fc5b3-96c5-4a41-9612-7d130f1bd91b/out-0.png",
181898
182296
  "default_example": {
181899
182297
  "completed_at": "2023-09-10T22:38:56.092590Z",
@@ -182288,7 +182686,7 @@
182288
182686
  "github_url": "https://github.com/pagebrain/model-repository",
182289
182687
  "paper_url": "https://civitai.com/models/36520/ghostmix",
182290
182688
  "license_url": "https://github.com/pagebrain/model-repository/blob/main/LICENSE",
182291
- "run_count": 281,
182689
+ "run_count": 282,
182292
182690
  "cover_image_url": "https://replicate.delivery/pbxt/bhrE0GnCNybZCJbLR5ViZrylWDXYfkVplEaadOSyZ9ko6cxIA/out-0.png",
182293
182691
  "default_example": {
182294
182692
  "completed_at": "2023-09-10T16:14:10.101074Z",
@@ -184234,7 +184632,7 @@
184234
184632
  "github_url": "https://github.com/pagebrain/model-repository",
184235
184633
  "paper_url": "https://civitai.com/models/4823/deliberate",
184236
184634
  "license_url": "https://github.com/pagebrain/model-repository/blob/main/LICENSE",
184237
- "run_count": 1672,
184635
+ "run_count": 1686,
184238
184636
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/b3b9787d-531a-49da-8d80-28d692be0f09/deliberate-v3.png",
184239
184637
  "default_example": {
184240
184638
  "completed_at": "2023-09-09T08:24:01.101734Z",
@@ -185400,7 +185798,7 @@
185400
185798
  "github_url": "https://github.com/pagebrain/model-repository",
185401
185799
  "paper_url": "https://civitai.com/models/7371?modelVersionId=46846",
185402
185800
  "license_url": "https://github.com/pagebrain/model-repository/blob/main/LICENSE",
185403
- "run_count": 874,
185801
+ "run_count": 875,
185404
185802
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/22739f51-5152-4b62-a690-2bd42d9797a1/ReV_Animated_v1.2.2.png",
185405
185803
  "default_example": {
185406
185804
  "completed_at": "2023-09-10T15:07:14.859255Z",
@@ -187344,7 +187742,7 @@
187344
187742
  "github_url": "https://github.com/pagebrain/model-repository",
187345
187743
  "paper_url": "https://civitai.com/models/81458?modelVersionId=132760",
187346
187744
  "license_url": "https://github.com/pagebrain/model-repository/blob/main/LICENSE",
187347
- "run_count": 6909,
187745
+ "run_count": 6911,
187348
187746
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/bca37271-07e9-4ada-b457-243ac41b43fb/AbsoluteReality_V1.8.1.png",
187349
187747
  "default_example": {
187350
187748
  "completed_at": "2023-09-07T07:23:30.930520Z",
@@ -188384,7 +188782,7 @@
188384
188782
  "github_url": "https://github.com/pharmapsychotic/clip-interrogator",
188385
188783
  "paper_url": null,
188386
188784
  "license_url": "https://github.com/pharmapsychotic/clip-interrogator/blob/main/LICENSE",
188387
- "run_count": 840050,
188785
+ "run_count": 840180,
188388
188786
  "cover_image_url": "https://replicate.delivery/pbxt/HrXsgowfhbZi3dImGZoIcvnz7oZfMtFY4UAEU8vBIakTd8JQ/watercolour-4799014_960_720.jpg",
188389
188787
  "default_example": {
188390
188788
  "completed_at": "2022-11-27T22:32:41.135591Z",
@@ -189669,7 +190067,7 @@
189669
190067
  "github_url": null,
189670
190068
  "paper_url": null,
189671
190069
  "license_url": null,
189672
- "run_count": 56,
190070
+ "run_count": 57,
189673
190071
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/b6b4d5ac-1b5f-45f1-8cfd-da5b5b45a9fa/IMG_0434.png",
189674
190072
  "default_example": {
189675
190073
  "completed_at": "2023-09-09T17:45:23.169516Z",
@@ -190453,7 +190851,7 @@
190453
190851
  "github_url": null,
190454
190852
  "paper_url": null,
190455
190853
  "license_url": null,
190456
- "run_count": 4253,
190854
+ "run_count": 4263,
190457
190855
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/417a0d6b-f359-496a-8f16-eca24fab33d1/out-0_-_2023-09-22T002747.144.png",
190458
190856
  "default_example": {
190459
190857
  "completed_at": "2023-09-11T16:30:23.226457Z",
@@ -191631,7 +192029,7 @@
191631
192029
  "github_url": null,
191632
192030
  "paper_url": null,
191633
192031
  "license_url": null,
191634
- "run_count": 582602,
192032
+ "run_count": 585921,
191635
192033
  "cover_image_url": "https://replicate.delivery/pbxt/a3z81v5vwlKfLq1H5uBqpVmkHalOVup0jSLma9E2UaF3tawIA/out-0.png",
191636
192034
  "default_example": {
191637
192035
  "completed_at": "2023-09-04T09:35:43.334363Z",
@@ -193729,7 +194127,7 @@
193729
194127
  "github_url": null,
193730
194128
  "paper_url": null,
193731
194129
  "license_url": null,
193732
- "run_count": 196,
194130
+ "run_count": 197,
193733
194131
  "cover_image_url": "https://replicate.delivery/pbxt/sAZ07Ji6EC5iExDVevBTgwDF9e7wflpTc9LbyKcoMRnkJ4DjA/out-0.png",
193734
194132
  "default_example": {
193735
194133
  "completed_at": "2023-09-07T17:58:11.017311Z",
@@ -195480,7 +195878,7 @@
195480
195878
  "github_url": null,
195481
195879
  "paper_url": null,
195482
195880
  "license_url": null,
195483
- "run_count": 1554,
195881
+ "run_count": 1556,
195484
195882
  "cover_image_url": "https://replicate.delivery/pbxt/JrtYemeMRnnio0Zzs2EsBt2MpKfxpj2ZUeg1Cvhi7Gjc92HGB/out-0.png",
195485
195883
  "default_example": {
195486
195884
  "completed_at": "2023-09-07T19:51:52.475959Z",
@@ -199703,7 +200101,7 @@
199703
200101
  "github_url": null,
199704
200102
  "paper_url": null,
199705
200103
  "license_url": null,
199706
- "run_count": 13066,
200104
+ "run_count": 13106,
199707
200105
  "cover_image_url": "https://replicate.delivery/pbxt/ssbICIQulZ6JGZmo3nNnRojHo1XyojSiLa9fkYfx3YasInhRA/output_0.png",
199708
200106
  "default_example": {
199709
200107
  "completed_at": "2023-09-06T18:08:45.827045Z",
@@ -201342,7 +201740,7 @@
201342
201740
  "github_url": "https://github.com/sczhou/CodeFormer",
201343
201741
  "paper_url": "https://arxiv.org/abs/2206.11253",
201344
201742
  "license_url": "https://github.com/sczhou/CodeFormer/blob/master/LICENSE",
201345
- "run_count": 2062,
201743
+ "run_count": 2065,
201346
201744
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/cf736d61-411f-4301-89b3-16aff1a02ed1/codeformer_logo.png",
201347
201745
  "default_example": {
201348
201746
  "completed_at": "2023-09-06T04:24:35.818283Z",
@@ -204652,7 +205050,7 @@
204652
205050
  "github_url": "https://github.com/LagPixelLOL/cog-exllama",
204653
205051
  "paper_url": null,
204654
205052
  "license_url": "https://github.com/LagPixelLOL/cog-exllama/blob/main/LICENSE",
204655
- "run_count": 12987,
205053
+ "run_count": 12988,
204656
205054
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/a788f9b7-490c-48a3-b843-e0270274ba76/1690740835_3.png",
204657
205055
  "default_example": {
204658
205056
  "completed_at": "2023-09-05T15:36:59.808351Z",
@@ -212130,7 +212528,7 @@
212130
212528
  "github_url": "https://github.com/lucataco/cog-ms-img2vid",
212131
212529
  "paper_url": "https://huggingface.co/spaces/fffiloni/MS-Image2Video",
212132
212530
  "license_url": null,
212133
- "run_count": 9627,
212531
+ "run_count": 9652,
212134
212532
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/8e316a0b-5206-408b-80af-65620a0d5eec/boat.gif",
212135
212533
  "default_example": {
212136
212534
  "completed_at": "2023-09-02T18:01:57.026307Z",
@@ -216971,7 +217369,7 @@
216971
217369
  "github_url": "https://github.com/replicategithubwc/anime-pastel-dream",
216972
217370
  "paper_url": null,
216973
217371
  "license_url": null,
216974
- "run_count": 273,
217372
+ "run_count": 274,
216975
217373
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/45ccd375-4274-48b5-8e28-e7c6bd848754/anime-pastel-thumb.jpeg",
216976
217374
  "default_example": {
216977
217375
  "completed_at": "2023-09-11T07:51:34.026452Z",
@@ -217721,7 +218119,7 @@
217721
218119
  "github_url": null,
217722
218120
  "paper_url": null,
217723
218121
  "license_url": null,
217724
- "run_count": 84,
218122
+ "run_count": 85,
217725
218123
  "cover_image_url": "https://replicate.delivery/pbxt/6xGu58hTV2YOCdxqHhAK0tRBCLAF5oPnNvQUl9BefYHfTzAjA/out-0.png",
217726
218124
  "default_example": {
217727
218125
  "completed_at": "2023-09-03T01:59:28.656925Z",
@@ -220336,7 +220734,7 @@
220336
220734
  "github_url": null,
220337
220735
  "paper_url": null,
220338
220736
  "license_url": null,
220339
- "run_count": 5975,
220737
+ "run_count": 5985,
220340
220738
  "cover_image_url": "https://replicate.delivery/pbxt/kOqvyQauW5rdAdYAaEIZeZYch3Jzi7ysTLIUXI80xWMsepfiA/out-0.png",
220341
220739
  "default_example": {
220342
220740
  "completed_at": "2023-08-31T19:43:20.704111Z",
@@ -228314,7 +228712,7 @@
228314
228712
  "github_url": "https://github.com/chenxwh/cog-I2VGen-XL",
228315
228713
  "paper_url": null,
228316
228714
  "license_url": null,
228317
- "run_count": 2409,
228715
+ "run_count": 2447,
228318
228716
  "cover_image_url": null,
228319
228717
  "default_example": {
228320
228718
  "completed_at": "2023-08-28T01:56:19.662140Z",
@@ -230615,7 +231013,7 @@
230615
231013
  "github_url": null,
230616
231014
  "paper_url": null,
230617
231015
  "license_url": null,
230618
- "run_count": 7484,
231016
+ "run_count": 7494,
230619
231017
  "cover_image_url": "https://pbxt.replicate.delivery/8LKCty2D5b5BBBjylErfI8Xqf4OTSsnA0TIJccnpPct3GmeiA/out-0.png",
230620
231018
  "default_example": {
230621
231019
  "completed_at": "2023-08-28T14:31:20.871853Z",
@@ -231401,7 +231799,7 @@
231401
231799
  "github_url": null,
231402
231800
  "paper_url": null,
231403
231801
  "license_url": null,
231404
- "run_count": 821,
231802
+ "run_count": 823,
231405
231803
  "cover_image_url": "https://replicate.delivery/pbxt/xcRStyIOea1TXy6Mbd0vhOqCoCzKfhktZgZZ7cY4AjpGyGeiA/out-0.png",
231406
231804
  "default_example": {
231407
231805
  "completed_at": "2023-08-27T02:52:55.156392Z",
@@ -231794,7 +232192,7 @@
231794
232192
  "github_url": "https://github.com/Soykertje/cog-spleeter",
231795
232193
  "paper_url": "https://joss.theoj.org/papers/10.21105/joss.02154",
231796
232194
  "license_url": "https://github.com/Soykertje/cog-whisper/blob/main/LICENSE",
231797
- "run_count": 182,
232195
+ "run_count": 185,
231798
232196
  "cover_image_url": null,
231799
232197
  "default_example": {
231800
232198
  "completed_at": "2023-08-27T01:49:08.932490Z",
@@ -233223,7 +233621,7 @@
233223
233621
  "github_url": "https://github.com/gregwdata/cog-sqlcoder",
233224
233622
  "paper_url": null,
233225
233623
  "license_url": "https://github.com/gregwdata/cog-sqlcoder/blob/main/LICENSE",
233226
- "run_count": 5603,
233624
+ "run_count": 5615,
233227
233625
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/0c37e013-0733-4c2e-8bae-ae8b38689d47/sqlcoder_image_2.png",
233228
233626
  "default_example": {
233229
233627
  "completed_at": "2023-08-22T06:16:41.738356Z",
@@ -233503,7 +233901,7 @@
233503
233901
  "github_url": null,
233504
233902
  "paper_url": null,
233505
233903
  "license_url": null,
233506
- "run_count": 1705,
233904
+ "run_count": 1706,
233507
233905
  "cover_image_url": "https://replicate.delivery/pbxt/8r2x7fH8JOSbDaljf9h9jFW5IrXDhvHsHNmyoK0Jkg4MAndRA/out-0.png",
233508
233906
  "default_example": {
233509
233907
  "completed_at": "2023-08-25T14:43:25.146990Z",
@@ -233896,7 +234294,7 @@
233896
234294
  "github_url": "https://github.com/mark3labs/replicate-embeddings-gte-base",
233897
234295
  "paper_url": null,
233898
234296
  "license_url": "https://opensource.org/license/mit/",
233899
- "run_count": 110272,
234297
+ "run_count": 110365,
233900
234298
  "cover_image_url": null,
233901
234299
  "default_example": {
233902
234300
  "completed_at": "2023-08-25T11:33:33.415932Z",
@@ -235847,7 +236245,7 @@
235847
236245
  "github_url": null,
235848
236246
  "paper_url": null,
235849
236247
  "license_url": null,
235850
- "run_count": 1209,
236248
+ "run_count": 1212,
235851
236249
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/66942682-c7da-4722-a281-3ffe40659a90/replicate-prediction-y2ajw3tb5n7d.png",
235852
236250
  "default_example": {
235853
236251
  "completed_at": "2023-08-20T08:08:36.702505Z",
@@ -236263,7 +236661,7 @@
236263
236661
  "github_url": "https://github.com/wglodell/cog-whisperx-withprompt",
236264
236662
  "paper_url": null,
236265
236663
  "license_url": null,
236266
- "run_count": 10083,
236664
+ "run_count": 10103,
236267
236665
  "cover_image_url": null,
236268
236666
  "default_example": {
236269
236667
  "completed_at": "2023-08-24T04:58:14.282535Z",
@@ -238506,7 +238904,7 @@
238506
238904
  "github_url": null,
238507
238905
  "paper_url": null,
238508
238906
  "license_url": null,
238509
- "run_count": 1592,
238907
+ "run_count": 1605,
238510
238908
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/f4d50ecf-4d03-47a0-a6b5-eaa215236145/replicate-prediction-3mspxndbzgbc.png",
238511
238909
  "default_example": {
238512
238910
  "completed_at": "2023-08-23T14:14:58.971213Z",
@@ -238898,7 +239296,7 @@
238898
239296
  "github_url": null,
238899
239297
  "paper_url": null,
238900
239298
  "license_url": null,
238901
- "run_count": 107693,
239299
+ "run_count": 107910,
238902
239300
  "cover_image_url": "https://replicate.delivery/pbxt/QDzTdKJwAs6gMRFwnbg4JvedrATrNwCEhnwt2PPSrc0LgVuIA/out-ff26210b.png",
238903
239301
  "default_example": {
238904
239302
  "completed_at": "2023-08-22T18:27:36.538610Z",
@@ -241874,7 +242272,7 @@
241874
242272
  "github_url": null,
241875
242273
  "paper_url": null,
241876
242274
  "license_url": null,
241877
- "run_count": 394,
242275
+ "run_count": 402,
241878
242276
  "cover_image_url": null,
241879
242277
  "default_example": {
241880
242278
  "completed_at": "2023-08-18T22:01:39.852207Z",
@@ -244099,7 +244497,7 @@
244099
244497
  "github_url": null,
244100
244498
  "paper_url": null,
244101
244499
  "license_url": null,
244102
- "run_count": 11559,
244500
+ "run_count": 11573,
244103
244501
  "cover_image_url": "https://replicate.delivery/pbxt/nSoKenfp8aqFTkQ4qcDeifAOKbPXeRarzT6fj3I1cm6zI99WE/out-3.png",
244104
244502
  "default_example": {
244105
244503
  "completed_at": "2023-08-20T08:13:23.776805Z",
@@ -245292,7 +245690,7 @@
245292
245690
  "github_url": null,
245293
245691
  "paper_url": null,
245294
245692
  "license_url": null,
245295
- "run_count": 1668,
245693
+ "run_count": 1682,
245296
245694
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/1f144b7e-8680-4202-aaeb-52c3aab2073c/out-0.png",
245297
245695
  "default_example": {
245298
245696
  "completed_at": "2023-08-18T20:49:44.837018Z",
@@ -246838,7 +247236,7 @@
246838
247236
  "github_url": "https://github.com/lucataco/cog-faceswap",
246839
247237
  "paper_url": null,
246840
247238
  "license_url": null,
246841
- "run_count": 1123135,
247239
+ "run_count": 1123420,
246842
247240
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/0accb58c-2827-4f00-a41a-da6eed57b656/elon-stark.jpg",
246843
247241
  "default_example": {
246844
247242
  "completed_at": "2023-08-18T17:36:46.858936Z",
@@ -247760,7 +248158,7 @@
247760
248158
  "github_url": null,
247761
248159
  "paper_url": null,
247762
248160
  "license_url": null,
247763
- "run_count": 10255,
248161
+ "run_count": 10257,
247764
248162
  "cover_image_url": "https://replicate.delivery/pbxt/jPVBJemj8O2VOKYv9qZeeJLN0JO4TyQFDEnWiT3cPpUdvD2iA/out-0.png",
247765
248163
  "default_example": {
247766
248164
  "completed_at": "2023-08-17T18:50:23.377411Z",
@@ -249233,7 +249631,7 @@
249233
249631
  "github_url": "https://github.com/lucataco/cog-sdxl-controlnet-openpose",
249234
249632
  "paper_url": null,
249235
249633
  "license_url": "https://huggingface.co/models?license=license%3Aother",
249236
- "run_count": 7185,
249634
+ "run_count": 7195,
249237
249635
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/ec800467-50b7-489e-b36c-9d3c4bc39f40/latina_ballerina.png",
249238
249636
  "default_example": {
249239
249637
  "completed_at": "2023-08-17T06:24:28.501864Z",
@@ -251203,7 +251601,7 @@
251203
251601
  "github_url": "https://github.com/lucataco/cog-realistic-vision-v5-img2img",
251204
251602
  "paper_url": null,
251205
251603
  "license_url": null,
251206
- "run_count": 34143,
251604
+ "run_count": 34147,
251207
251605
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/73c60070-6276-404a-ab6b-ea01ca2629c1/rv5img2img.png",
251208
251606
  "default_example": {
251209
251607
  "completed_at": "2023-08-16T01:24:09.995355Z",
@@ -251470,7 +251868,7 @@
251470
251868
  "github_url": "https://github.com/pbarker/GFPGAN",
251471
251869
  "paper_url": "https://arxiv.org/abs/2101.04061",
251472
251870
  "license_url": "https://github.com/pbarker/GFPGAN/blob/master/LICENSE",
251473
- "run_count": 1414,
251871
+ "run_count": 1416,
251474
251872
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/8af3b573-90c7-4f5a-8959-8a5ff3fc6562/image_upscale.jpeg",
251475
251873
  "default_example": {
251476
251874
  "completed_at": "2023-08-16T01:13:06.984794Z",
@@ -253191,7 +253589,7 @@
253191
253589
  "github_url": "https://github.com/lucataco/cog-realistic-vision-v5.1",
253192
253590
  "paper_url": "https://huggingface.co/SG161222/Realistic_Vision_V5.1_noVAE",
253193
253591
  "license_url": "https://huggingface.co/models?license=license%3Acreativeml-openrail-m",
253194
- "run_count": 81678,
253592
+ "run_count": 81831,
253195
253593
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/66a04ada-a7e1-40eb-8f9a-4ebf51d1d106/output.png",
253196
253594
  "default_example": {
253197
253595
  "completed_at": "2023-08-15T03:06:20.529484Z",
@@ -254892,7 +255290,7 @@
254892
255290
  "github_url": "https://github.com/lucataco/cog-sdxl-clip-interrogator",
254893
255291
  "paper_url": null,
254894
255292
  "license_url": "https://github.com/pharmapsychotic/clip-interrogator/blob/main/LICENSE",
254895
- "run_count": 8134,
255293
+ "run_count": 8148,
254896
255294
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/c200f919-4cc1-412b-8edf-e2863a5eef56/replicate-sdxl-inter.png",
254897
255295
  "default_example": {
254898
255296
  "completed_at": "2023-08-14T20:21:39.663460Z",
@@ -261276,7 +261674,7 @@
261276
261674
  "github_url": "https://github.com/lucabeetz/PaintTransformer",
261277
261675
  "paper_url": "https://arxiv.org/abs/2108.03798",
261278
261676
  "license_url": "https://github.com/lucabeetz/PaintTransformer/blob/main/LICENSE",
261279
- "run_count": 318,
261677
+ "run_count": 321,
261280
261678
  "cover_image_url": "https://pbxt.replicate.delivery/qI4lzIp2DeyvCywPkkYC1yD1jfkY7lXjITfexCTCY1tjs0iFB/out.gif",
261281
261679
  "default_example": {
261282
261680
  "completed_at": "2023-08-10T17:39:21.569050Z",
@@ -263624,7 +264022,7 @@
263624
264022
  "github_url": null,
263625
264023
  "paper_url": null,
263626
264024
  "license_url": null,
263627
- "run_count": 4483,
264025
+ "run_count": 4487,
263628
264026
  "cover_image_url": "https://replicate.delivery/pbxt/YE9wXAGTU3ZuOdFH2pM6Wzuawe9hGs9wWswshYULRU7fDVYRA/out-0.png",
263629
264027
  "default_example": {
263630
264028
  "completed_at": "2023-08-09T14:13:20.714868Z",
@@ -264409,7 +264807,7 @@
264409
264807
  "github_url": null,
264410
264808
  "paper_url": null,
264411
264809
  "license_url": null,
264412
- "run_count": 3269,
264810
+ "run_count": 3270,
264413
264811
  "cover_image_url": "https://pbxt.replicate.delivery/kfkcJxG7FBy5PKTzyfe2fT5OUuOePKeee4PTq17B602eNIbwiA/out-3.png",
264414
264812
  "default_example": {
264415
264813
  "completed_at": "2023-08-09T05:41:26.970833Z",
@@ -265906,7 +266304,7 @@
265906
266304
  "github_url": null,
265907
266305
  "paper_url": null,
265908
266306
  "license_url": null,
265909
- "run_count": 562,
266307
+ "run_count": 568,
265910
266308
  "cover_image_url": "https://replicate.delivery/pbxt/uGooZFXDZrZrKJ2mXPque5f809rveePhkyYqdZNaCL8WaLgFB/out-0.png",
265911
266309
  "default_example": {
265912
266310
  "completed_at": "2023-08-08T17:30:14.069707Z",
@@ -266299,7 +266697,7 @@
266299
266697
  "github_url": null,
266300
266698
  "paper_url": null,
266301
266699
  "license_url": null,
266302
- "run_count": 274520,
266700
+ "run_count": 274753,
266303
266701
  "cover_image_url": null,
266304
266702
  "default_example": {
266305
266703
  "completed_at": "2023-05-30T21:52:46.050492Z",
@@ -266560,7 +266958,7 @@
266560
266958
  "github_url": null,
266561
266959
  "paper_url": null,
266562
266960
  "license_url": null,
266563
- "run_count": 10357,
266961
+ "run_count": 10379,
266564
266962
  "cover_image_url": "https://replicate.delivery/pbxt/STPvBA4rC8I1Ah0cGSjkzhJlqZ8dmLhRvmep4EDCMh2mmfXRA/out-0.png",
266565
266963
  "default_example": {
266566
266964
  "completed_at": "2023-08-08T13:21:18.155708Z",
@@ -267738,7 +268136,7 @@
267738
268136
  "github_url": "https://github.com/lucataco/cog-sdxl",
267739
268137
  "paper_url": "https://arxiv.org/abs/2307.01952",
267740
268138
  "license_url": "https://github.com/Stability-AI/generative-models/blob/main/model_licenses/LICENSE-SDXL1.0",
267741
- "run_count": 14489,
268139
+ "run_count": 14508,
267742
268140
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/d34b9ed4-dfcc-4e98-8998-d60243a9da03/output.png",
267743
268141
  "default_example": {
267744
268142
  "completed_at": "2023-08-08T22:18:59.948468Z",
@@ -270544,7 +270942,7 @@
270544
270942
  "github_url": "https://github.com/lucataco/cog-gfpgan",
270545
270943
  "paper_url": "https://arxiv.org/abs/2101.04061",
270546
270944
  "license_url": "https://github.com/TencentARC/GFPGAN/blob/master/LICENSE",
270547
- "run_count": 33434,
270945
+ "run_count": 33442,
270548
270946
  "cover_image_url": "https://replicate.delivery/pbxt/YoICefceadfiwScwffqng14VeJS55Q6Y8UKWnBbgd0nzVCErIA/out..png",
270549
270947
  "default_example": {
270550
270948
  "completed_at": "2023-08-02T21:48:28.816744Z",
@@ -271177,7 +271575,7 @@
271177
271575
  "github_url": null,
271178
271576
  "paper_url": null,
271179
271577
  "license_url": "https://github.com/ai-forever/Real-ESRGAN/blob/main/LICENSE",
271180
- "run_count": 156,
271578
+ "run_count": 157,
271181
271579
  "cover_image_url": "https://replicate.delivery/pbxt/23qnVyJGDpI7P5vHAcy4y6zIAinFMXXeZjfnrvWSXoby3ghRA/output.png",
271182
271580
  "default_example": {
271183
271581
  "completed_at": "2023-09-06T11:01:07.553623Z",
@@ -272059,7 +272457,7 @@
272059
272457
  "github_url": null,
272060
272458
  "paper_url": null,
272061
272459
  "license_url": "https://github.com/danielgatis/rembg/blob/main/LICENSE.txt",
272062
- "run_count": 512,
272460
+ "run_count": 514,
272063
272461
  "cover_image_url": "https://replicate.delivery/pbxt/EJBwfAo1WrRIQim1DrLz8pD87NEUElaj2fO4gKFe54G1EEDjA/output.png",
272064
272462
  "default_example": {
272065
272463
  "completed_at": "2023-09-06T12:20:43.389694Z",
@@ -272603,7 +273001,7 @@
272603
273001
  "github_url": "https://github.com/pollinations/RIFE-interpolation",
272604
273002
  "paper_url": null,
272605
273003
  "license_url": "https://github.com/pollinations/RIFE-interpolation/blob/main/LICENSE",
272606
- "run_count": 2179,
273004
+ "run_count": 2180,
272607
273005
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/979e8521-a783-42d4-93af-8fa0bdf7d1d1/I2_slomo_clipped.gif",
272608
273006
  "default_example": {
272609
273007
  "completed_at": "2023-01-20T15:26:45.170912Z",
@@ -273670,7 +274068,7 @@
273670
274068
  "github_url": null,
273671
274069
  "paper_url": null,
273672
274070
  "license_url": null,
273673
- "run_count": 1864,
274071
+ "run_count": 1901,
273674
274072
  "cover_image_url": null,
273675
274073
  "default_example": {
273676
274074
  "completed_at": "2023-07-29T01:10:31.642136Z",
@@ -274293,7 +274691,7 @@
274293
274691
  "github_url": null,
274294
274692
  "paper_url": null,
274295
274693
  "license_url": null,
274296
- "run_count": 244945,
274694
+ "run_count": 245087,
274297
274695
  "cover_image_url": "https://replicate.delivery/pbxt/6GzgXMQEnfRiGirhuRhZjsMQypDQQ7AcfQasxbewWLQWktoiA/ai.png",
274298
274696
  "default_example": {
274299
274697
  "completed_at": "2023-07-28T12:54:35.866109Z",
@@ -274793,7 +275191,7 @@
274793
275191
  "github_url": null,
274794
275192
  "paper_url": null,
274795
275193
  "license_url": null,
274796
- "run_count": 179731,
275194
+ "run_count": 179790,
274797
275195
  "cover_image_url": "https://replicate.delivery/pbxt/3ZmtvTJWj3a0Al9XR7SSKqpAfLTZtrkM7t5KjLvz7Nqsv3pIA/ad_inpaint_3.jpg",
274798
275196
  "default_example": {
274799
275197
  "completed_at": "2023-07-26T16:12:09.608092Z",
@@ -277222,7 +277620,7 @@
277222
277620
  "github_url": "https://github.com/meronym/speaker-diarization",
277223
277621
  "paper_url": null,
277224
277622
  "license_url": "https://github.com/pyannote/pyannote-audio/blob/develop/LICENSE",
277225
- "run_count": 3057,
277623
+ "run_count": 3060,
277226
277624
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/c7b842c2-0710-4791-8c37-d2cab934f044/speaker-diarization-cover-2.png",
277227
277625
  "default_example": {
277228
277626
  "completed_at": "2023-07-21T18:38:50.940046Z",
@@ -277704,7 +278102,7 @@
277704
278102
  "github_url": null,
277705
278103
  "paper_url": null,
277706
278104
  "license_url": null,
277707
- "run_count": 669756,
278105
+ "run_count": 670012,
277708
278106
  "cover_image_url": "https://replicate.delivery/pbxt/JYSLsrezQORsXSe0wAmrjS65163VpcfY5yY8XIzPNwu0IP7hA/output_1.png",
277709
278107
  "default_example": {
277710
278108
  "completed_at": "2023-05-20T13:11:55.105458Z",
@@ -278407,7 +278805,7 @@
278407
278805
  "github_url": "https://github.com/anotherjesse/cog-text2video",
278408
278806
  "paper_url": "https://huggingface.co/cerspense/zeroscope_v2_576w",
278409
278807
  "license_url": "https://github.com/anotherjesse/cog-text2video/blob/main/LICENSE",
278410
- "run_count": 138230,
278808
+ "run_count": 138269,
278411
278809
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/021a0a2e-b57b-4b45-a5c7-e29773aa5345/1mrNnh8.png",
278412
278810
  "default_example": {
278413
278811
  "completed_at": "2023-06-25T00:06:59.201740Z",
@@ -281159,7 +281557,7 @@
281159
281557
  "github_url": "https://github.com/chenxwh/Kandinsky-2/tree/controlnet",
281160
281558
  "paper_url": null,
281161
281559
  "license_url": "https://github.com/ai-forever/Kandinsky-2/blob/main/license",
281162
- "run_count": 2588,
281560
+ "run_count": 2589,
281163
281561
  "cover_image_url": "https://replicate.delivery/pbxt/umMfazOmw1yofU5jm3fp84NDhzuz48D1UHRcAQtYdpONM3giA/out-0.png",
281164
281562
  "default_example": {
281165
281563
  "completed_at": "2023-07-16T15:06:47.566591Z",
@@ -281739,7 +282137,7 @@
281739
282137
  "github_url": "https://github.com/chenxwh/Kandinsky-2/tree/v2.2",
281740
282138
  "paper_url": null,
281741
282139
  "license_url": "https://github.com/ai-forever/Kandinsky-2/blob/main/license",
281742
- "run_count": 2711314,
282140
+ "run_count": 2714055,
281743
282141
  "cover_image_url": "https://replicate.delivery/pbxt/Lca3IEjcKoJBBVS6ajROkK37sDzPsmjYxIcFzxPZp65wZzTE/out-0.png",
281744
282142
  "default_example": {
281745
282143
  "completed_at": "2023-07-12T22:23:00.041096Z",
@@ -284277,7 +284675,7 @@
284277
284675
  "github_url": "https://github.com/THUDM/ChatGLM2-6B",
284278
284676
  "paper_url": null,
284279
284677
  "license_url": "https://github.com/THUDM/ChatGLM2-6B/blob/main/MODEL_LICENSE",
284280
- "run_count": 4300,
284678
+ "run_count": 4319,
284281
284679
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/4228bfbc-bcb7-404d-8586-726c31f7073c/kqm9ddydl8_1689082483825.png",
284282
284680
  "default_example": {
284283
284681
  "completed_at": "2023-07-02T02:13:48.764861Z",
@@ -285114,7 +285512,7 @@
285114
285512
  "github_url": null,
285115
285513
  "paper_url": null,
285116
285514
  "license_url": null,
285117
- "run_count": 20152,
285515
+ "run_count": 20190,
285118
285516
  "cover_image_url": "https://replicate.delivery/pbxt/SFZnhwaRO1rVCNNPYSpEL0LyBa4fsMjXKqbHfV4A0XBffQpFB/seed-6400.png",
285119
285517
  "default_example": {
285120
285518
  "completed_at": "2023-08-15T14:55:59.967090Z",
@@ -286432,7 +286830,7 @@
286432
286830
  "github_url": null,
286433
286831
  "paper_url": null,
286434
286832
  "license_url": null,
286435
- "run_count": 5907,
286833
+ "run_count": 5917,
286436
286834
  "cover_image_url": "https://replicate.delivery/pbxt/oOKDOGsh5JoeZ68seR2nug9NBwQS3wyzvq4LYlNZpJfDKe6EB/output.png",
286437
286835
  "default_example": {
286438
286836
  "completed_at": "2023-07-11T11:38:42.750129Z",
@@ -286982,7 +287380,7 @@
286982
287380
  "github_url": "https://github.com/lucataco/cog-realistic-vision-v4",
286983
287381
  "paper_url": "https://huggingface.co/SG161222/Realistic_Vision_V4.0",
286984
287382
  "license_url": "https://huggingface.co/models?license=license%3Acreativeml-openrail-m",
286985
- "run_count": 30614,
287383
+ "run_count": 30617,
286986
287384
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/7b901649-a38f-47cc-9b88-f9b7c25cb8d0/output.png",
286987
287385
  "default_example": {
286988
287386
  "completed_at": "2023-07-10T17:58:37.158435Z",
@@ -287258,7 +287656,7 @@
287258
287656
  "github_url": "https://github.com/replicate/cog-stable-diffusion",
287259
287657
  "paper_url": "https://arxiv.org/abs/2112.10752",
287260
287658
  "license_url": "https://huggingface.co/spaces/CompVis/stable-diffusion-license",
287261
- "run_count": 100176337,
287659
+ "run_count": 100181769,
287262
287660
  "cover_image_url": "https://replicate.delivery/pbxt/sWeZFZou6v3CPKuoJbqX46ugPaHT1DcsWYx0srPmGrMOCPYIA/out-0.png",
287263
287661
  "default_example": {
287264
287662
  "completed_at": "2023-04-10T15:45:33.474978Z",
@@ -288393,7 +288791,7 @@
288393
288791
  "github_url": "https://github.com/replicate/cog-falcon-40b-instruct",
288394
288792
  "paper_url": null,
288395
288793
  "license_url": "https://huggingface.co/tiiuae/falcon-40b-instruct#:~:text=License%3A%20Apache%202.0%3B",
288396
- "run_count": 23369,
288794
+ "run_count": 23377,
288397
288795
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/bf7c5012-7855-4192-b95e-8c2b78d4e46e/replicate-prediction-7unwtpjbd55t.png",
288398
288796
  "default_example": {
288399
288797
  "completed_at": "2023-07-07T20:34:58.616590Z",
@@ -289498,7 +289896,7 @@
289498
289896
  "github_url": null,
289499
289897
  "paper_url": null,
289500
289898
  "license_url": null,
289501
- "run_count": 13386,
289899
+ "run_count": 13404,
289502
289900
  "cover_image_url": "https://replicate.delivery/pbxt/hx2SyxhFQbICDFexvQb3oeFMMbFUefJcBMvRzzvLqvk2Un1EB/out-0.png",
289503
289901
  "default_example": {
289504
289902
  "completed_at": "2023-07-07T10:39:10.304572Z",
@@ -289863,7 +290261,7 @@
289863
290261
  "github_url": null,
289864
290262
  "paper_url": null,
289865
290263
  "license_url": null,
289866
- "run_count": 101726,
290264
+ "run_count": 101829,
289867
290265
  "cover_image_url": "https://replicate.delivery/pbxt/iowJW7fddKR0SyOz9l5b5dagFhq4au7VeEuvnfpPxI6N8saiA/out-0.png",
289868
290266
  "default_example": {
289869
290267
  "completed_at": "2023-07-07T06:49:42.823511Z",
@@ -290504,7 +290902,7 @@
290504
290902
  "github_url": null,
290505
290903
  "paper_url": null,
290506
290904
  "license_url": null,
290507
- "run_count": 21132,
290905
+ "run_count": 21137,
290508
290906
  "cover_image_url": "https://replicate.delivery/pbxt/WRVckffJLJgzpEKCMF6fgJi8Kwt0JLSwrBY4nbEdbSllcraiA/out-0.png",
290509
290907
  "default_example": {
290510
290908
  "completed_at": "2023-07-07T05:58:43.206716Z",
@@ -290870,7 +291268,7 @@
290870
291268
  "github_url": "https://github.com/facebookresearch/Mask2Former/",
290871
291269
  "paper_url": "https://arxiv.org/abs/2107.06278",
290872
291270
  "license_url": null,
290873
- "run_count": 18663,
291271
+ "run_count": 18682,
290874
291272
  "cover_image_url": "https://replicate.delivery/pbxt/CJeUQYntErT5HaGAWOmSVlf12AECqn51iEYhuXzc36BEyiIRA/output_mask.png",
290875
291273
  "default_example": {
290876
291274
  "completed_at": "2023-06-22T16:44:52.610592Z",
@@ -291509,7 +291907,7 @@
291509
291907
  "github_url": null,
291510
291908
  "paper_url": "https://arxiv.org/abs/2109.07161",
291511
291909
  "license_url": null,
291512
- "run_count": 1774,
291910
+ "run_count": 1780,
291513
291911
  "cover_image_url": "https://replicate.delivery/pbxt/9neVICdX2hw2KaMKPOGey6bRfyN5pyMuMGqhGQYwwvcBTzmiA/remove_anthing.png",
291514
291912
  "default_example": {
291515
291913
  "completed_at": "2023-07-25T15:21:05.556536Z",
@@ -292406,7 +292804,7 @@
292406
292804
  "github_url": null,
292407
292805
  "paper_url": null,
292408
292806
  "license_url": null,
292409
- "run_count": 74814,
292807
+ "run_count": 74903,
292410
292808
  "cover_image_url": "https://replicate.delivery/pbxt/78qRODWrAAYWBx5oDZLPfgqQKnMWSitDVPfInJ8k2zlkt8LRA/ai.png",
292411
292809
  "default_example": {
292412
292810
  "completed_at": "2023-07-03T00:42:13.766866Z",
@@ -292697,7 +293095,7 @@
292697
293095
  "github_url": "https://github.com/danielgatis/rembg",
292698
293096
  "paper_url": null,
292699
293097
  "license_url": "https://github.com/danielgatis/rembg/blob/main/LICENSE.txt",
292700
- "run_count": 52386,
293098
+ "run_count": 52470,
292701
293099
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/524a37e1-d793-4c2a-b5e2-da606ccdd868/input.jpeg",
292702
293100
  "default_example": {
292703
293101
  "completed_at": "2023-07-03T21:11:07.330786Z",
@@ -292943,7 +293341,7 @@
292943
293341
  "github_url": null,
292944
293342
  "paper_url": null,
292945
293343
  "license_url": null,
292946
- "run_count": 21685,
293344
+ "run_count": 21693,
292947
293345
  "cover_image_url": "https://replicate.delivery/pbxt/Kg8VSoDkydJTBJ8fXB9eaf3biJoYa3GnqefnXUNTdefqp59lIA/ai.png",
292948
293346
  "default_example": {
292949
293347
  "completed_at": "2023-07-02T23:40:04.029474Z",
@@ -293202,7 +293600,7 @@
293202
293600
  "github_url": null,
293203
293601
  "paper_url": null,
293204
293602
  "license_url": null,
293205
- "run_count": 73701,
293603
+ "run_count": 73703,
293206
293604
  "cover_image_url": "https://replicate.delivery/pbxt/e6DeUPvjXeGLuoemXRuSd8X0GpvdkEK2eoK0gK7uDlXSBIeSE/ai.png",
293207
293605
  "default_example": {
293208
293606
  "completed_at": "2023-07-02T11:22:51.373961Z",
@@ -293703,7 +294101,7 @@
293703
294101
  "github_url": "https://github.com/chenxwh/demucs",
293704
294102
  "paper_url": "https://arxiv.org/abs/2211.08553",
293705
294103
  "license_url": "https://github.com/facebookresearch/demucs/blob/main/LICENSE",
293706
- "run_count": 7922,
294104
+ "run_count": 7935,
293707
294105
  "cover_image_url": null,
293708
294106
  "default_example": {
293709
294107
  "completed_at": "2023-07-02T13:16:03.793953Z",
@@ -294092,7 +294490,7 @@
294092
294490
  "github_url": "https://github.com/replicate/cog-controlnet",
294093
294491
  "paper_url": "https://arxiv.org/abs/2302.05543",
294094
294492
  "license_url": "https://github.com/lllyasviel/ControlNet/blob/main/LICENSE",
294095
- "run_count": 6810006,
294493
+ "run_count": 6810028,
294096
294494
  "cover_image_url": "https://replicate.delivery/pbxt/BKfYyssmWUUDWiukeXLAQc47KUPBwDMCdbxd8esqr3yE06eDB/out-0.png",
294097
294495
  "default_example": {
294098
294496
  "completed_at": "2023-05-26T03:16:19.677736Z",
@@ -294482,7 +294880,7 @@
294482
294880
  "github_url": "https://github.com/daanelson/cog-whisperx",
294483
294881
  "paper_url": "https://arxiv.org/abs/2303.00747",
294484
294882
  "license_url": "https://github.com/m-bain/whisperX/blob/main/LICENSE",
294485
- "run_count": 9849,
294883
+ "run_count": 9856,
294486
294884
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/5fc01bac-2092-48ac-bacb-05d559bef7d8/whisperimg.png",
294487
294885
  "default_example": {
294488
294886
  "completed_at": "2023-06-30T22:07:14.539819Z",
@@ -295342,7 +295740,7 @@
295342
295740
  "github_url": "https://github.com/replicate/cog-stable-diffusion-inpainting",
295343
295741
  "paper_url": null,
295344
295742
  "license_url": "https://huggingface.co/stabilityai/stable-diffusion-2/blob/main/LICENSE-MODEL",
295345
- "run_count": 15222653,
295743
+ "run_count": 15222796,
295346
295744
  "cover_image_url": "https://replicate.delivery/pbxt/xs0pPOUM6HKmPlJJBXqKfE1YsiMzgNsCuGedlX0VqvPYifLgA/out-0.png",
295347
295745
  "default_example": {
295348
295746
  "completed_at": "2022-12-02T18:40:24.805380Z",
@@ -295964,7 +296362,7 @@
295964
296362
  "github_url": "https://github.com/nateraw/replicate-examples",
295965
296363
  "paper_url": null,
295966
296364
  "license_url": null,
295967
- "run_count": 18362,
296365
+ "run_count": 18363,
295968
296366
  "cover_image_url": "https://replicate.delivery/pbxt/ELT1NcUX34Y9JRTgMBAC0fdsVJG0j5flt6ksOaouz8YcJfViA/output-0.png",
295969
296367
  "default_example": {
295970
296368
  "completed_at": "2023-06-30T02:39:25.006348Z",
@@ -296653,7 +297051,7 @@
296653
297051
  "github_url": "https://github.com/lucataco/cog-vicuna-33b-v1.3",
296654
297052
  "paper_url": "https://arxiv.org/abs/2306.05685",
296655
297053
  "license_url": "https://arxiv.org/abs/2302.13971",
296656
- "run_count": 9885,
297054
+ "run_count": 9919,
296657
297055
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/41d64155-82d4-4fb4-9aa8-74b1dc946525/uZ2jFNAjXfdBo6c6Yojmg.jpg",
296658
297056
  "default_example": {
296659
297057
  "completed_at": "2023-06-29T19:50:00.815111Z",
@@ -297376,7 +297774,7 @@
297376
297774
  "github_url": "https://github.com/replicate/cog-musicgen",
297377
297775
  "paper_url": "https://arxiv.org/abs/2306.05284",
297378
297776
  "license_url": "https://github.com/facebookresearch/audiocraft/blob/main/LICENSE_weights",
297379
- "run_count": 447386,
297777
+ "run_count": 447680,
297380
297778
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/9dce42df-66a8-47eb-9946-5e0f04c269e6/replicate-prediction-2o3piazbcbrb.png",
297381
297779
  "default_example": {
297382
297780
  "completed_at": "2023-09-17T18:37:48.516127Z",
@@ -305215,7 +305613,7 @@
305215
305613
  "github_url": "https://github.com/andreasjansson/cog-musicgen-looper",
305216
305614
  "paper_url": "https://arxiv.org/abs/2306.05284",
305217
305615
  "license_url": "https://github.com/facebookresearch/audiocraft/blob/main/LICENSE_weights",
305218
- "run_count": 13965,
305616
+ "run_count": 13985,
305219
305617
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/8ce9d44b-0919-41a0-9e02-41bbdede8eff/out-0.jpg",
305220
305618
  "default_example": {
305221
305619
  "completed_at": "2023-06-18T17:18:43.307351Z",
@@ -307098,7 +307496,7 @@
307098
307496
  "github_url": "https://github.com/fofr/audio-to-waveform",
307099
307497
  "paper_url": "https://gradio.app/docs/#make_waveform",
307100
307498
  "license_url": "https://github.com/fofr/audio-to-waveform/blob/main/LICENSE",
307101
- "run_count": 134355,
307499
+ "run_count": 134455,
307102
307500
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/5d5cad9c-d4ba-44e1-8c4f-dc08648bbf5e/fofr_a_waveform_bar_chart_video_e.png",
307103
307501
  "default_example": {
307104
307502
  "completed_at": "2023-06-14T14:21:57.767734Z",
@@ -308086,7 +308484,7 @@
308086
308484
  "github_url": "https://github.com/advimman/lama",
308087
308485
  "paper_url": "https://arxiv.org/abs/2109.07161",
308088
308486
  "license_url": "https://github.com/advimman/lama/blob/main/LICENSE",
308089
- "run_count": 122807,
308487
+ "run_count": 123079,
308090
308488
  "cover_image_url": "https://replicate.delivery/pbxt/Y83OqpkGxDKeLaUEt4xXSqEBHMTQ7w4aeHl7twLKfWQrpPMiA/684397b236964067b7fde82b807945f2.png",
308091
308489
  "default_example": {
308092
308490
  "completed_at": "2023-06-15T08:26:30.267784Z",
@@ -312803,7 +313201,7 @@
312803
313201
  "github_url": "https://github.com/chenxwh/cog-stable-diffusion/tree/kandinsky-2-1",
312804
313202
  "paper_url": null,
312805
313203
  "license_url": null,
312806
- "run_count": 58007,
313204
+ "run_count": 58009,
312807
313205
  "cover_image_url": "https://replicate.delivery/pbxt/aOZ4ywUeyeiyqEz5l7lixq0e5rAbs3qTStetOGXNKZd4g6QEB/out-0.png",
312808
313206
  "default_example": {
312809
313207
  "completed_at": "2023-06-09T14:32:46.808598Z",
@@ -313541,7 +313939,7 @@
313541
313939
  "github_url": null,
313542
313940
  "paper_url": "https://huggingface.co/prompthero/midjourney-v4-diffusion",
313543
313941
  "license_url": null,
313544
- "run_count": 10678552,
313942
+ "run_count": 10678847,
313545
313943
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/6584177a-6dbb-4de4-9858-9546ed9390eb/out-0.png",
313546
313944
  "default_example": {
313547
313945
  "completed_at": "2022-11-15T02:17:31Z",
@@ -316006,7 +316404,7 @@
316006
316404
  "github_url": null,
316007
316405
  "paper_url": null,
316008
316406
  "license_url": null,
316009
- "run_count": 83152,
316407
+ "run_count": 83155,
316010
316408
  "cover_image_url": "https://replicate.delivery/pbxt/PAjmIBBuL35rPleavK9qljYgZksqCY39yKO8zIwE2dbpUChIA/out-0.png",
316011
316409
  "default_example": {
316012
316410
  "completed_at": "2023-06-03T01:33:07.560074Z",
@@ -316337,7 +316735,7 @@
316337
316735
  "github_url": null,
316338
316736
  "paper_url": null,
316339
316737
  "license_url": null,
316340
- "run_count": 144123,
316738
+ "run_count": 144153,
316341
316739
  "cover_image_url": "https://replicate.delivery/pbxt/Tsj9jwXB7H7SNxxBQOi23Ncz8VKuptZcdiDQnvpH23Q83egIA/out-0.png",
316342
316740
  "default_example": {
316343
316741
  "completed_at": "2023-06-02T15:08:33.857697Z",
@@ -316699,7 +317097,7 @@
316699
317097
  "github_url": null,
316700
317098
  "paper_url": null,
316701
317099
  "license_url": null,
316702
- "run_count": 25002,
317100
+ "run_count": 25003,
316703
317101
  "cover_image_url": "https://replicate.delivery/pbxt/TOaGaIEk8HZmOlXZpf2k1bNcdiZ4gHx0xFlLa8uA9g95IeBRA/out-0.png",
316704
317102
  "default_example": {
316705
317103
  "completed_at": "2023-06-02T16:01:56.370358Z",
@@ -317030,7 +317428,7 @@
317030
317428
  "github_url": null,
317031
317429
  "paper_url": null,
317032
317430
  "license_url": null,
317033
- "run_count": 197530,
317431
+ "run_count": 197559,
317034
317432
  "cover_image_url": "https://replicate.delivery/pbxt/by5ffLwdy3hJgEgm0ffxPRZmEGQTPPhr9neJEO0TAhz16CNIC/out-0.png",
317035
317433
  "default_example": {
317036
317434
  "completed_at": "2023-06-01T17:22:31.301158Z",
@@ -317392,7 +317790,7 @@
317392
317790
  "github_url": "https://github.com/replicate/cog-whisper",
317393
317791
  "paper_url": "https://cdn.openai.com/papers/whisper.pdf",
317394
317792
  "license_url": "https://github.com/openai/whisper/blob/main/LICENSE",
317395
- "run_count": 3506434,
317793
+ "run_count": 3506797,
317396
317794
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/a9253a5b-aa79-4df3-8aa1-09a6d044fdd6/Screen_Shot_2022-09-28_at_16.58.5.png",
317397
317795
  "default_example": {
317398
317796
  "completed_at": "2022-09-22T23:45:46.339771Z",
@@ -317990,7 +318388,7 @@
317990
318388
  "github_url": null,
317991
318389
  "paper_url": null,
317992
318390
  "license_url": null,
317993
- "run_count": 566901,
318391
+ "run_count": 567088,
317994
318392
  "cover_image_url": "https://replicate.delivery/pbxt/HwXgYDjwUxofGiPGNpvYy9HNgRK6f1R3oAI4Tjt1lQTet3DiA/out-0.png",
317995
318393
  "default_example": {
317996
318394
  "completed_at": "2023-06-02T15:33:19.664938Z",
@@ -319314,7 +319712,7 @@
319314
319712
  "github_url": null,
319315
319713
  "paper_url": null,
319316
319714
  "license_url": null,
319317
- "run_count": 91382,
319715
+ "run_count": 91386,
319318
319716
  "cover_image_url": "https://replicate.delivery/pbxt/WM2XKbLHJMKQJBzPZteHGgCKwIVyhl9jC7Alohu80dKXB0eQA/out-0.png",
319319
319717
  "default_example": {
319320
319718
  "completed_at": "2023-05-20T13:44:15.404756Z",
@@ -321062,7 +321460,7 @@
321062
321460
  "github_url": null,
321063
321461
  "paper_url": null,
321064
321462
  "license_url": null,
321065
- "run_count": 342031,
321463
+ "run_count": 342099,
321066
321464
  "cover_image_url": "https://replicate.delivery/pbxt/oreIe1ZQ0Sr5j0y8SscEUATRzPc70kwECtD1JRizr5z5Zg6QA/out-0.png",
321067
321465
  "default_example": {
321068
321466
  "completed_at": "2023-05-11T02:35:38.367137Z",
@@ -321424,7 +321822,7 @@
321424
321822
  "github_url": null,
321425
321823
  "paper_url": null,
321426
321824
  "license_url": null,
321427
- "run_count": 102732,
321825
+ "run_count": 102740,
321428
321826
  "cover_image_url": "https://replicate.delivery/pbxt/Sk3O8fpCHO3NYKGNXlRitXwikPyWhshxz4FFSEBtyJpNAmdIA/out-0.png",
321429
321827
  "default_example": {
321430
321828
  "completed_at": "2023-05-13T04:12:12.585271Z",
@@ -321786,7 +322184,7 @@
321786
322184
  "github_url": null,
321787
322185
  "paper_url": null,
321788
322186
  "license_url": null,
321789
- "run_count": 335451,
322187
+ "run_count": 335582,
321790
322188
  "cover_image_url": "https://replicate.delivery/pbxt/wWCrdc0f6TzRUqI15uEN1eIT0WRbT90Te9iXelx6K6rKXopDB/out-0.png",
321791
322189
  "default_example": {
321792
322190
  "completed_at": "2023-05-10T19:24:35.607680Z",
@@ -322148,7 +322546,7 @@
322148
322546
  "github_url": "https://github.com/replicate/all-mpnet-base-v2",
322149
322547
  "paper_url": "https://arxiv.org/abs/2004.09297",
322150
322548
  "license_url": "https://huggingface.co/sentence-transformers/all-mpnet-base-v2",
322151
- "run_count": 445910,
322549
+ "run_count": 445929,
322152
322550
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/182a3b2e-3858-4d1f-a267-ca5c9eb9be12/vector_man.png",
322153
322551
  "default_example": {
322154
322552
  "completed_at": "2023-09-19T16:56:15.560351Z",
@@ -323417,7 +323815,7 @@
323417
323815
  "github_url": null,
323418
323816
  "paper_url": null,
323419
323817
  "license_url": null,
323420
- "run_count": 344688,
323818
+ "run_count": 346936,
323421
323819
  "cover_image_url": "https://replicate.delivery/pbxt/tNt6bGOheT2yaifAqfz2NVJEERYzaaLmYctk05hcFSOome3DB/1684685524.jpg",
323422
323820
  "default_example": {
323423
323821
  "completed_at": "2023-05-21T16:12:04.444492Z",
@@ -326544,7 +326942,7 @@
326544
326942
  "github_url": "https://github.com/replicate/cog-llama",
326545
326943
  "paper_url": "https://arxiv.org/abs/2302.13971",
326546
326944
  "license_url": "https://github.com/replicate/cog-llama/blob/main/LICENSE.txt",
326547
- "run_count": 81707,
326945
+ "run_count": 81719,
326548
326946
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/f9bf25f5-e7a8-4463-91e1-fb0f192f2ddc/space_llama.png",
326549
326947
  "default_example": {
326550
326948
  "completed_at": "2023-04-07T23:18:34.680449Z",
@@ -327174,7 +327572,7 @@
327174
327572
  "github_url": "https://github.com/replicate/cog-vicuna-13b",
327175
327573
  "paper_url": "https://lmsys.org/blog/2023-03-30-vicuna/",
327176
327574
  "license_url": "https://github.com/replicate/cog-vicuna-13b/blob/main/LICENSE.txt",
327177
- "run_count": 186674,
327575
+ "run_count": 186697,
327178
327576
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/5292d2b0-fd60-42ff-94de-f0cee5959c6f/robot_llama.png",
327179
327577
  "default_example": {
327180
327578
  "completed_at": "2023-04-21T20:54:27.091019Z",
@@ -328909,7 +329307,7 @@
328909
329307
  "github_url": "https://github.com/replicate/cog-lavis",
328910
329308
  "paper_url": "http://arxiv.org/abs/2305.06500",
328911
329309
  "license_url": "https://github.com/salesforce/LAVIS/tree/main/projects/instructblip",
328912
- "run_count": 180292,
329310
+ "run_count": 180541,
328913
329311
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/14b4060f-cb59-4b2a-987a-0cc4be5229e4/lavis-logo.png",
328914
329312
  "default_example": {
328915
329313
  "completed_at": "2023-05-19T17:50:01.816326Z",
@@ -329339,7 +329737,7 @@
329339
329737
  "github_url": "https://github.com/Huage001/AdaAttN",
329340
329738
  "paper_url": null,
329341
329739
  "license_url": "https://github.com/Huage001/AdaAttN/blob/main/LICENSE",
329342
- "run_count": 25996,
329740
+ "run_count": 25997,
329343
329741
  "cover_image_url": "https://replicate.delivery/pbxt/icRIonLgfC1OMKUEj7CaKRuRsIzPw33Ix7UJio8oDaDvvneQA/1684489694.png",
329344
329742
  "default_example": {
329345
329743
  "completed_at": "2023-05-19T09:48:15.297124Z",
@@ -329575,7 +329973,7 @@
329575
329973
  "github_url": "https://github.com/gfodor/instructblip-replicate",
329576
329974
  "paper_url": "https://arxiv.org/abs/2305.06500",
329577
329975
  "license_url": "https://github.com/gfodor/instructblip-replicate/blob/main/LICENSE.txt",
329578
- "run_count": 408936,
329976
+ "run_count": 408950,
329579
329977
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/0055b999-e430-4dfe-a77c-826092d4f54a/showcase.png",
329580
329978
  "default_example": {
329581
329979
  "completed_at": "2023-05-19T06:24:50.846145Z",
@@ -329864,7 +330262,7 @@
329864
330262
  "github_url": "https://github.com/LambdaLabsML/lambda-diffusers",
329865
330263
  "paper_url": null,
329866
330264
  "license_url": "https://github.com/LambdaLabsML/lambda-diffusers/blob/main/LICENSE",
329867
- "run_count": 7363751,
330265
+ "run_count": 7363996,
329868
330266
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/05b2d987-7b48-4ecf-b08f-c949d763be3e/pokemontage.jpg",
329869
330267
  "default_example": {
329870
330268
  "completed_at": "2022-09-21T09:44:49.500849Z",
@@ -330069,7 +330467,7 @@
330069
330467
  "github_url": "https://github.com/daanelson/ImageBind",
330070
330468
  "paper_url": null,
330071
330469
  "license_url": "https://github.com/daanelson/ImageBind/blob/main/LICENSE",
330072
- "run_count": 203125,
330470
+ "run_count": 206600,
330073
330471
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/19590862-9c49-4cf5-9fa2-8534dd8df92b/Screenshot_2023-05-17_at_10.22.48.png",
330074
330472
  "default_example": {
330075
330473
  "completed_at": "2023-05-18T05:28:59.595481Z",
@@ -331595,7 +331993,7 @@
331595
331993
  "github_url": null,
331596
331994
  "paper_url": null,
331597
331995
  "license_url": null,
331598
- "run_count": 789844,
331996
+ "run_count": 791222,
331599
331997
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/eab53b16-c66d-4611-9957-52a501bb4802/bunny3.webp",
331600
331998
  "default_example": {
331601
331999
  "completed_at": "2023-05-17T13:30:56.395592Z",
@@ -331891,7 +332289,7 @@
331891
332289
  "github_url": "https://github.com/daanelson/MiniGPT-4",
331892
332290
  "paper_url": "https://arxiv.org/pdf/2304.10592.pdf",
331893
332291
  "license_url": "https://github.com/Vision-CAIR/MiniGPT-4/blob/main/LICENSE.md",
331894
- "run_count": 280887,
332292
+ "run_count": 281702,
331895
332293
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/af717919-83de-46e8-9b1a-9c66f4f747bf/out_0.png",
331896
332294
  "default_example": {
331897
332295
  "completed_at": "2023-05-17T23:27:47.968519Z",
@@ -333703,7 +334101,7 @@
333703
334101
  "github_url": "https://github.com/chenxwh/SadTalker",
333704
334102
  "paper_url": "https://arxiv.org/abs/2211.12194",
333705
334103
  "license_url": "https://github.com/OpenTalker/SadTalker/blob/main/LICENSE",
333706
- "run_count": 24621,
334104
+ "run_count": 24633,
333707
334105
  "cover_image_url": null,
333708
334106
  "default_example": {
333709
334107
  "completed_at": "2023-05-02T06:46:02.576721Z",
@@ -334002,7 +334400,7 @@
334002
334400
  "github_url": "https://github.com/replicate/cog-mplug-owl",
334003
334401
  "paper_url": "https://arxiv.org/abs/2304.14178",
334004
334402
  "license_url": "https://github.com/X-PLUG/mPLUG-Owl/blob/main/LICENSE",
334005
- "run_count": 38283,
334403
+ "run_count": 38294,
334006
334404
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/e8f484a0-8859-4fe3-b3a7-6f77c6f5e658/mplug-owl-logo.png",
334007
334405
  "default_example": {
334008
334406
  "completed_at": "2023-05-11T20:41:45.367211Z",
@@ -339554,7 +339952,7 @@
339554
339952
  "github_url": "https://github.com/NohaMoAmary/image-captioning-with-visual-attention.git",
339555
339953
  "paper_url": "https://arxiv.org/pdf/1502.03044v3.pdf",
339556
339954
  "license_url": null,
339557
- "run_count": 7398,
339955
+ "run_count": 7399,
339558
339956
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/b5daadbf-8a78-4073-af62-b3cb08183bc9/1.jpeg",
339559
339957
  "default_example": {
339560
339958
  "completed_at": "2022-01-23T20:31:03.709606Z",
@@ -340438,7 +340836,7 @@
340438
340836
  "github_url": "https://github.com/replicate/cog-deepfloyd-if",
340439
340837
  "paper_url": null,
340440
340838
  "license_url": "https://huggingface.co/spaces/DeepFloyd/deepfloyd-if-license",
340441
- "run_count": 1041513,
340839
+ "run_count": 1042147,
340442
340840
  "cover_image_url": "https://replicate.delivery/pbxt/KgfeOYshHUjf3JWOiY1PKDGdLV16PRIMAkGuujoqBjGTv5shA/out.png",
340443
340841
  "default_example": {
340444
340842
  "completed_at": "2023-04-28T19:18:02.547701Z",
@@ -340669,7 +341067,7 @@
340669
341067
  "github_url": "https://github.com/replicate/cog-flan-models",
340670
341068
  "paper_url": "https://arxiv.org/abs/2210.11416",
340671
341069
  "license_url": "https://github.com/replicate/cog-flan-models/blob/main/LICENSE",
340672
- "run_count": 86260,
341070
+ "run_count": 86294,
340673
341071
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/e5e20eda-e350-4902-a235-6409c8847b70/flan.png",
340674
341072
  "default_example": {
340675
341073
  "completed_at": "2023-03-03T06:25:29.282546Z",
@@ -340947,7 +341345,7 @@
340947
341345
  "github_url": "https://github.com/chenxwh/bark",
340948
341346
  "paper_url": null,
340949
341347
  "license_url": "https://github.com/suno-ai/bark/blob/main/LICENSE",
340950
- "run_count": 156862,
341348
+ "run_count": 156864,
340951
341349
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/9fbbe7c2-beb0-4caa-bd59-647dd7eeee6b/fofr_dog.jpg",
340952
341350
  "default_example": {
340953
341351
  "completed_at": "2023-04-25T22:18:59.625638Z",
@@ -341364,7 +341762,7 @@
341364
341762
  "github_url": "https://github.com/meronym/speaker-transcription",
341365
341763
  "paper_url": null,
341366
341764
  "license_url": "https://github.com/meronym/speaker-transcription/blob/master/LICENSE",
341367
- "run_count": 18742,
341765
+ "run_count": 18744,
341368
341766
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/09022612-a28d-4f2d-9f09-d6200513a000/speaker-transcription-cover.png",
341369
341767
  "default_example": {
341370
341768
  "completed_at": "2023-04-01T19:22:04.444124Z",
@@ -341587,7 +341985,7 @@
341587
341985
  "github_url": "https://github.com/facebookresearch/segment-anything",
341588
341986
  "paper_url": "https://ai.facebook.com/research/publications/segment-anything/",
341589
341987
  "license_url": "https://github.com/facebookresearch/segment-anything/blob/main/LICENSE",
341590
- "run_count": 57010,
341988
+ "run_count": 57043,
341591
341989
  "cover_image_url": "https://replicate.delivery/pbxt/IDREqsXV4rb9KFtjNT1JtsHrOx0VrNajk7CskTbSUQTAafaIA/masked_32.png",
341592
341990
  "default_example": {
341593
341991
  "completed_at": "2023-04-27T07:45:05.802379Z",
@@ -343193,7 +343591,7 @@
343193
343591
  "github_url": "https://github.com/nelsonjchen/cog-MiniGPT-4-vicuna/tree/cog-7b",
343194
343592
  "paper_url": null,
343195
343593
  "license_url": "https://github.com/nelsonjchen/MiniGPT-4/blob/cog-7b/LICENSE.md",
343196
- "run_count": 7506,
343594
+ "run_count": 7507,
343197
343595
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/23a9024c-ec52-4c06-9f7e-27550e8532f3/llama_with_large_realistic_glowin.jpg",
343198
343596
  "default_example": {
343199
343597
  "completed_at": "2023-04-25T03:11:08.914481Z",
@@ -343815,7 +344213,7 @@
343815
344213
  "github_url": "https://github.com/replicate/dreambooth",
343816
344214
  "paper_url": "https://arxiv.org/abs/2208.12242",
343817
344215
  "license_url": null,
343818
- "run_count": 183655,
344216
+ "run_count": 183723,
343819
344217
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/152ca3b8-91ab-4391-9085-c170ab7ca67e/Screenshot_2022-11-20_at_18.06.41.png",
343820
344218
  "default_example": {
343821
344219
  "completed_at": "2022-11-20T21:14:09.942760Z",
@@ -344286,7 +344684,7 @@
344286
344684
  "github_url": "https://github.com/replicate/cog-StableLM",
344287
344685
  "paper_url": null,
344288
344686
  "license_url": "https://github.com/Stability-AI/StableLM/blob/main/LICENSE",
344289
- "run_count": 86243,
344687
+ "run_count": 86261,
344290
344688
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/92491c2c-38f6-4851-98dd-16267326d3a7/mascot.png",
344291
344689
  "default_example": {
344292
344690
  "completed_at": "2023-04-20T14:14:20.152141Z",
@@ -346414,7 +346812,7 @@
346414
346812
  "github_url": "https://github.com/chenxwh/cog-deforum-stable-diffusion",
346415
346813
  "paper_url": null,
346416
346814
  "license_url": "https://github.com/deforum-art/deforum-stable-diffusion/blob/main/LICENSE",
346417
- "run_count": 39216,
346815
+ "run_count": 39224,
346418
346816
  "cover_image_url": null,
346419
346817
  "default_example": {
346420
346818
  "completed_at": "2023-02-13T22:32:21.573732Z",
@@ -349508,7 +349906,7 @@
349508
349906
  "github_url": "https://github.com/replicate/cog-oasst-sft-1-pythia-12b",
349509
349907
  "paper_url": null,
349510
349908
  "license_url": null,
349511
- "run_count": 23191,
349909
+ "run_count": 23199,
349512
349910
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/67eed8a1-ba88-4251-89b3-a8b05bc225f1/nice-robot.png",
349513
349911
  "default_example": {
349514
349912
  "completed_at": "2023-04-17T15:49:46.129676Z",
@@ -350280,7 +350678,7 @@
350280
350678
  "github_url": "https://github.com/chenxwh/Kandinsky-2",
350281
350679
  "paper_url": null,
350282
350680
  "license_url": "https://github.com/ai-forever/Kandinsky-2/blob/main/license",
350283
- "run_count": 3579081,
350681
+ "run_count": 3580847,
350284
350682
  "cover_image_url": "https://replicate.delivery/pbxt/NsOpfQRos43e40IzSq4SY7NTtxGodmSWo1m74K17SVpoUzuQA/out.png",
350285
350683
  "default_example": {
350286
350684
  "completed_at": "2023-04-05T14:18:17.379573Z",
@@ -350917,7 +351315,7 @@
350917
351315
  "github_url": null,
350918
351316
  "paper_url": null,
350919
351317
  "license_url": null,
350920
- "run_count": 12916,
351318
+ "run_count": 12919,
350921
351319
  "cover_image_url": "https://replicate.delivery/pbxt/HmNdwPg2V261PdKEUyQDDSWKEPBhXAaLWee9eLoeY4XiJ6GDB/out-0.png",
350922
351320
  "default_example": {
350923
351321
  "completed_at": "2023-04-14T11:18:48.680479Z",
@@ -351793,7 +352191,7 @@
351793
352191
  "github_url": "https://github.com/replicate/cog-dolly-v2-12b",
351794
352192
  "paper_url": "https://www.databricks.com/blog/2023/04/12/dolly-first-open-commercially-viable-instruction-tuned-llm",
351795
352193
  "license_url": "https://github.com/replicate/cog-dolly-v2-12b/blob/main/LICENSE.txt",
351796
- "run_count": 214795,
352194
+ "run_count": 214998,
351797
352195
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/2ea78bde-0d9f-4410-a449-f00210762321/dolly_sheep2.jpg",
351798
352196
  "default_example": {
351799
352197
  "completed_at": "2023-04-13T21:10:27.984411Z",
@@ -352120,7 +352518,7 @@
352120
352518
  "github_url": null,
352121
352519
  "paper_url": null,
352122
352520
  "license_url": null,
352123
- "run_count": 11196,
352521
+ "run_count": 11197,
352124
352522
  "cover_image_url": "https://replicate.delivery/pbxt/pl4m8k9YAqL4JRxV5CgrxQts1LFyvEQiA26fQCXnBthR9uYIA/out-0.png",
352125
352523
  "default_example": {
352126
352524
  "completed_at": "2023-04-13T16:24:04.552143Z",
@@ -354823,7 +355221,7 @@
354823
355221
  "github_url": "https://github.com/Picsart-AI-Research/Text2Video-Zero",
354824
355222
  "paper_url": "https://arxiv.org/abs/2303.13439",
354825
355223
  "license_url": "https://github.com/Picsart-AI-Research/Text2Video-Zero/blob/main/LICENSE",
354826
- "run_count": 11529,
355224
+ "run_count": 11531,
354827
355225
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/62de9622-d7b2-4e68-8c96-396cfb6b771f/output_dnq2vx7uhvhmlgdvnfywdlig5y.gif",
354828
355226
  "default_example": {
354829
355227
  "completed_at": "2023-04-11T05:56:30.065598Z",
@@ -359483,7 +359881,7 @@
359483
359881
  "github_url": "https://github.com/wcarle/stable-diffusion-videos",
359484
359882
  "paper_url": null,
359485
359883
  "license_url": "https://github.com/wcarle/stable-diffusion-videos/blob/main/LICENSE",
359486
- "run_count": 4089,
359884
+ "run_count": 4090,
359487
359885
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/e0f1f704-c467-4aa2-8800-447df97f6723/output_vdscbfr54nbobluybdglv46vfe.gif",
359488
359886
  "default_example": {
359489
359887
  "completed_at": "2023-04-02T22:25:41.634762Z",
@@ -359978,7 +360376,7 @@
359978
360376
  "github_url": "https://github.com/meronym/speaker-diarization",
359979
360377
  "paper_url": null,
359980
360378
  "license_url": "https://github.com/pyannote/pyannote-audio/blob/develop/LICENSE",
359981
- "run_count": 4293,
360379
+ "run_count": 4299,
359982
360380
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/c1be7610-1013-4d73-b648-bc9d1856fa4d/speaker-diarization-cover-2.png",
359983
360381
  "default_example": {
359984
360382
  "completed_at": "2023-04-01T10:12:38.080047Z",
@@ -363196,7 +363594,7 @@
363196
363594
  "github_url": null,
363197
363595
  "paper_url": null,
363198
363596
  "license_url": null,
363199
- "run_count": 4380,
363597
+ "run_count": 4384,
363200
363598
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/0674cdc2-9acf-4d8f-a1a5-44f8aed6741e/Wow-gif.webp",
363201
363599
  "default_example": {
363202
363600
  "completed_at": "2023-03-25T03:39:45.154419Z",
@@ -363639,7 +364037,7 @@
363639
364037
  "github_url": "https://github.com/chenxwh/cog-damo-text2video",
363640
364038
  "paper_url": null,
363641
364039
  "license_url": null,
363642
- "run_count": 83543,
364040
+ "run_count": 83549,
363643
364041
  "cover_image_url": null,
363644
364042
  "default_example": {
363645
364043
  "completed_at": "2023-03-23T22:37:27.583925Z",
@@ -364780,7 +365178,7 @@
364780
365178
  "github_url": null,
364781
365179
  "paper_url": null,
364782
365180
  "license_url": null,
364783
- "run_count": 513827,
365181
+ "run_count": 514002,
364784
365182
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/a9714649-a8a4-4956-b2e7-5f9bab135c7d/output_1-8.png",
364785
365183
  "default_example": {
364786
365184
  "completed_at": "2023-03-22T01:39:22.553294Z",
@@ -366352,7 +366750,7 @@
366352
366750
  "github_url": null,
366353
366751
  "paper_url": null,
366354
366752
  "license_url": null,
366355
- "run_count": 261511,
366753
+ "run_count": 261569,
366356
366754
  "cover_image_url": "https://replicate.delivery/pbxt/o3tSH9dKjjohIpKgJ4DnkdmUjWBceMnA67fZi67TeZefjBgDC/out-0.png",
366357
366755
  "default_example": {
366358
366756
  "completed_at": "2023-02-07T13:24:48.169940Z",
@@ -366758,7 +367156,7 @@
366758
367156
  "github_url": null,
366759
367157
  "paper_url": null,
366760
367158
  "license_url": null,
366761
- "run_count": 932749,
367159
+ "run_count": 933107,
366762
367160
  "cover_image_url": "https://replicate.delivery/pbxt/YxgdzKyEfdRiWCMfxfhAMvBYqbyP3zdufqlikRiuVcTzuwaCB/out-0.png",
366763
367161
  "default_example": {
366764
367162
  "completed_at": "2023-03-11T23:38:21.629348Z",
@@ -367116,7 +367514,7 @@
367116
367514
  "github_url": "https://github.com/daanelson/Real-ESRGAN/",
367117
367515
  "paper_url": null,
367118
367516
  "license_url": null,
367119
- "run_count": 5075811,
367517
+ "run_count": 5077502,
367120
367518
  "cover_image_url": "https://replicate.delivery/pbxt/lv0iOW3u6DrNOd30ybfmufqWebiuW10YjILw05YZGbeipZZCB/output.png",
367121
367519
  "default_example": {
367122
367520
  "completed_at": "2023-03-10T22:52:08.998022Z",
@@ -367718,7 +368116,7 @@
367718
368116
  "github_url": "https://github.com/andreasjansson/cog-clip",
367719
368117
  "paper_url": null,
367720
368118
  "license_url": null,
367721
- "run_count": 43740793,
368119
+ "run_count": 43744029,
367722
368120
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/21f9d2a0-bb57-4c32-9bee-67784c9d6a76/clip_image.png",
367723
368121
  "default_example": {
367724
368122
  "completed_at": "2022-09-22T21:24:19.858096Z",
@@ -371048,7 +371446,7 @@
371048
371446
  "github_url": "https://github.com/chenxwh/ZoeDepth",
371049
371447
  "paper_url": "https://arxiv.org/abs/2302.12288",
371050
371448
  "license_url": "https://github.com/isl-org/ZoeDepth/blob/main/LICENSE",
371051
- "run_count": 1799149,
371449
+ "run_count": 1800310,
371052
371450
  "cover_image_url": "https://replicate.delivery/pbxt/Yiy3JvNLmMpkKZhuAamOPUjdFUYn5OIl0xPlu04aTfBpbMSIA/out.png",
371053
371451
  "default_example": {
371054
371452
  "completed_at": "2023-03-05T00:01:22.263313Z",
@@ -375838,7 +376236,7 @@
375838
376236
  "github_url": "https://github.com/replicate/FreeVC",
375839
376237
  "paper_url": "https://arxiv.org/abs/2210.15418",
375840
376238
  "license_url": null,
375841
- "run_count": 36115,
376239
+ "run_count": 36163,
375842
376240
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/249e8995-618f-47ff-9408-f861b0297033/out-0.png",
375843
376241
  "default_example": {
375844
376242
  "completed_at": "2023-02-27T23:19:43.530862Z",
@@ -376392,7 +376790,7 @@
376392
376790
  "github_url": "https://github.com/elct9620/replicate-pastel-mix",
376393
376791
  "paper_url": null,
376394
376792
  "license_url": "https://huggingface.co/spaces/CompVis/stable-diffusion-license",
376395
- "run_count": 18097,
376793
+ "run_count": 18104,
376396
376794
  "cover_image_url": "https://replicate.delivery/pbxt/8DvVHfGUjoVnI6EeWQUDyRajkv1OfmsiOkFsZ1hxiqhTlTDhA/out-0.png",
376397
376795
  "default_example": {
376398
376796
  "completed_at": "2023-02-24T16:49:46.387521Z",
@@ -376678,7 +377076,7 @@
376678
377076
  "github_url": null,
376679
377077
  "paper_url": null,
376680
377078
  "license_url": null,
376681
- "run_count": 34933,
377079
+ "run_count": 34942,
376682
377080
  "cover_image_url": "https://replicate.delivery/pbxt/9xF7d2E9eegXk0s3FA6lx8KQ0JeiAgJNg2mCDAQPtPipBzChA/out-0.png",
376683
377081
  "default_example": {
376684
377082
  "completed_at": "2023-02-23T22:18:29.613809Z",
@@ -377801,7 +378199,7 @@
377801
378199
  "github_url": "https://github.com/replicate/controlnet",
377802
378200
  "paper_url": null,
377803
378201
  "license_url": "https://github.com/replicate/controlnet/blob/main/LICENSE",
377804
- "run_count": 110994,
378202
+ "run_count": 111024,
377805
378203
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/063b88a0-0833-4de2-8016-59ba7894295c/astronaut.png",
377806
378204
  "default_example": {
377807
378205
  "completed_at": "2023-02-16T23:29:31.172362Z",
@@ -378148,7 +378546,7 @@
378148
378546
  "github_url": "https://github.com/replicate/controlnet",
378149
378547
  "paper_url": null,
378150
378548
  "license_url": "https://github.com/replicate/controlnet/blob/main/LICENSE",
378151
- "run_count": 597987,
378549
+ "run_count": 598050,
378152
378550
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/788b5c0a-e9ea-4981-ad5d-af038cdedadb/output_0.png",
378153
378551
  "default_example": {
378154
378552
  "completed_at": "2023-02-22T21:13:09.461984Z",
@@ -380570,7 +380968,7 @@
380570
380968
  "github_url": "https://github.com/chenxwh/cog-Real-ESRGAN",
380571
380969
  "paper_url": "https://arxiv.org/abs/1809.00219",
380572
380970
  "license_url": "https://github.com/ai-forever/Real-ESRGAN/blob/main/LICENSE",
380573
- "run_count": 793712,
380971
+ "run_count": 793892,
380574
380972
  "cover_image_url": "https://replicate.delivery/pbxt/r7XfIsf3BuhfMoffJ7VVz1RWIk1PSugrJuHiycl99gfYI1fPIA/out.png",
380575
380973
  "default_example": {
380576
380974
  "completed_at": "2023-02-19T15:41:22.240657Z",
@@ -380808,7 +381206,7 @@
380808
381206
  "github_url": "https://github.com/chenxwh/T2I-Adapter",
380809
381207
  "paper_url": "https://arxiv.org/abs/2302.08453",
380810
381208
  "license_url": "https://github.com/TencentARC/T2I-Adapter/blob/main/LICENSE",
380811
- "run_count": 2568,
381209
+ "run_count": 2569,
380812
381210
  "cover_image_url": "https://replicate.delivery/pbxt/KlQ9UXTfyR3KPKw2497DmNwra9tr0FqTT7tfecr4gT6oie9BB/out_0.png",
380813
381211
  "default_example": {
380814
381212
  "completed_at": "2023-02-18T03:13:25.528567Z",
@@ -381440,7 +381838,7 @@
381440
381838
  "github_url": "https://github.com/replicate/controlnet",
381441
381839
  "paper_url": null,
381442
381840
  "license_url": "https://github.com/replicate/controlnet/blob/main/LICENSE",
381443
- "run_count": 197891,
381841
+ "run_count": 197945,
381444
381842
  "cover_image_url": "https://replicate.delivery/pbxt/t5zcnku5zfVSXiXfU3Ao9iAkfU030dm2oVTJzrWHE4UBiNeBB/output_1.png",
381445
381843
  "default_example": {
381446
381844
  "completed_at": "2023-02-16T23:20:33.056465Z",
@@ -381778,7 +382176,7 @@
381778
382176
  "github_url": "https://github.com/replicate/controlnet",
381779
382177
  "paper_url": null,
381780
382178
  "license_url": "https://github.com/replicate/controlnet/blob/main/LICENSE",
381781
- "run_count": 303398,
382179
+ "run_count": 303476,
381782
382180
  "cover_image_url": "https://replicate.delivery/pbxt/CCPUFqXwc2LZF5CVU13C8yPE03ENz9gMdnuvXf7Kb2abzhPIA/output_1.png",
381783
382181
  "default_example": {
381784
382182
  "completed_at": "2023-02-16T19:44:54.954858Z",
@@ -382667,7 +383065,7 @@
382667
383065
  "github_url": "https://github.com/replicate/controlnet",
382668
383066
  "paper_url": null,
382669
383067
  "license_url": "https://github.com/replicate/controlnet/blob/main/LICENSE",
382670
- "run_count": 7971432,
383068
+ "run_count": 7972380,
382671
383069
  "cover_image_url": "https://replicate.delivery/pbxt/kfbWmK9LnJRiOqqfOmnYrrbQ4X37kysVlAMllEKManE92aegA/output_1.png",
382672
383070
  "default_example": {
382673
383071
  "completed_at": "2023-02-14T21:23:10.058604Z",
@@ -383016,7 +383414,7 @@
383016
383414
  "github_url": "https://github.com/replicate/controlnet",
383017
383415
  "paper_url": null,
383018
383416
  "license_url": "https://github.com/replicate/controlnet/blob/main/LICENSE",
383019
- "run_count": 89344,
383417
+ "run_count": 89382,
383020
383418
  "cover_image_url": "https://replicate.delivery/pbxt/YKVetNkuroyWJC4mxzrgvQbJ2vS5eFOS1B8xkJMkAiXMbaegA/output_1.png",
383021
383419
  "default_example": {
383022
383420
  "completed_at": "2023-02-14T20:53:33.321081Z",
@@ -384641,7 +385039,7 @@
384641
385039
  "github_url": "https://github.com/replicate/controlnet",
384642
385040
  "paper_url": null,
384643
385041
  "license_url": "https://github.com/replicate/controlnet/blob/main/LICENSE",
384644
- "run_count": 31913309,
385042
+ "run_count": 31914914,
384645
385043
  "cover_image_url": "https://replicate.delivery/pbxt/3dbPD8n9bqbDLBZ6PwLbB23NFnmSLV3vhe6XLWpGEcvUODPIA/output_1.png",
384646
385044
  "default_example": {
384647
385045
  "completed_at": "2023-02-13T22:09:46.520767Z",
@@ -384960,7 +385358,7 @@
384960
385358
  "github_url": "https://github.com/replicate/controlnet",
384961
385359
  "paper_url": null,
384962
385360
  "license_url": "https://github.com/replicate/controlnet/blob/main/LICENSE",
384963
- "run_count": 240779,
385361
+ "run_count": 240837,
384964
385362
  "cover_image_url": "https://replicate.delivery/pbxt/XHe8yQpnaty6FaeFFTYFXUcE3wrnrofAzFyM473DR6DLQH8gA/output_1.png",
384965
385363
  "default_example": {
384966
385364
  "completed_at": "2023-02-13T18:57:09.782538Z",
@@ -385289,7 +385687,7 @@
385289
385687
  "github_url": "https://github.com/andreasjansson/tile-morph",
385290
385688
  "paper_url": null,
385291
385689
  "license_url": "https://github.com/andreasjansson/tile-morph/blob/main/LICENSE",
385292
- "run_count": 375978,
385690
+ "run_count": 376151,
385293
385691
  "cover_image_url": null,
385294
385692
  "default_example": {
385295
385693
  "completed_at": "2023-02-20T22:05:12.949739Z",
@@ -386520,7 +386918,7 @@
386520
386918
  "github_url": "https://github.com/chenxwh/pix2pix-zero",
386521
386919
  "paper_url": null,
386522
386920
  "license_url": "https://github.com/chenxwh/pix2pix-zero/blob/replicate/LICENSE",
386523
- "run_count": 3796,
386921
+ "run_count": 3799,
386524
386922
  "cover_image_url": "https://replicate.delivery/pbxt/NZMUartw9GapO9wfD83IDxbaQN1hyA4NspaGcBOj40O0irOIA/reconstruction.png",
386525
386923
  "default_example": {
386526
386924
  "completed_at": "2023-02-11T16:16:42.301405Z",
@@ -386806,7 +387204,7 @@
386806
387204
  "github_url": "https://github.com/GuyTevet/motion-diffusion-model",
386807
387205
  "paper_url": "https://arxiv.org/abs/2209.14916",
386808
387206
  "license_url": "https://github.com/GuyTevet/motion-diffusion-model/blob/main/LICENSE",
386809
- "run_count": 10904,
387207
+ "run_count": 10905,
386810
387208
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/93725dd6-2124-4211-bbce-59addf96c118/github.gif",
386811
387209
  "default_example": {
386812
387210
  "completed_at": "2022-12-18T08:45:19.353123Z",
@@ -387066,7 +387464,7 @@
387066
387464
  "github_url": "https://github.com/pollinations/MODNet-BGRemover",
387067
387465
  "paper_url": "https://arxiv.org/pdf/2011.11961.pdf",
387068
387466
  "license_url": null,
387069
- "run_count": 383386,
387467
+ "run_count": 383435,
387070
387468
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/bb0ab3e4-5efa-446f-939a-23e78f2b82de/output.png",
387071
387469
  "default_example": {
387072
387470
  "completed_at": "2022-11-19T09:46:35.991679Z",
@@ -391092,7 +391490,7 @@
391092
391490
  "github_url": "https://github.com/haoheliu/AudioLDM",
391093
391491
  "paper_url": "https://arxiv.org/abs/2301.12503",
391094
391492
  "license_url": "https://github.com/haoheliu/AudioLDM/blob/main/LICENSE",
391095
- "run_count": 27156,
391493
+ "run_count": 27157,
391096
391494
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/17f584de-98ae-489c-aea8-fdf366858ad6/640px-Spectrogram-19thC.png",
391097
391495
  "default_example": {
391098
391496
  "completed_at": "2023-02-03T01:46:46.411968Z",
@@ -391711,7 +392109,7 @@
391711
392109
  "github_url": "https://github.com/ArielReplicate/DeOldify",
391712
392110
  "paper_url": null,
391713
392111
  "license_url": "https://github.com/ArielReplicate/DeOldify/blob/master/LICENSE",
391714
- "run_count": 75201,
392112
+ "run_count": 75221,
391715
392113
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/38b752dd-5cc7-4640-9ec1-f1ed32ef6ffd/1.webp",
391716
392114
  "default_example": {
391717
392115
  "completed_at": "2023-01-18T15:54:11.067921Z",
@@ -392181,7 +392579,7 @@
392181
392579
  "github_url": null,
392182
392580
  "paper_url": null,
392183
392581
  "license_url": null,
392184
- "run_count": 62587,
392582
+ "run_count": 62608,
392185
392583
  "cover_image_url": "https://replicate.delivery/pbxt/p5SEzDoII2qdKVSuxx9Fe1z6qswFfKBRbGn7feov0f3fT3yGE/out-0.png",
392186
392584
  "default_example": {
392187
392585
  "completed_at": "2023-02-05T01:24:32.340061Z",
@@ -392710,7 +393108,7 @@
392710
393108
  "github_url": "https://github.com/pollinations/mmediting_video_superresolution",
392711
393109
  "paper_url": "https://arxiv.org/abs/2111.12704",
392712
393110
  "license_url": "https://github.com/pollinations/mmediting_video_superresolution/blob/master/LICENSE",
392713
- "run_count": 5616,
393111
+ "run_count": 5618,
392714
393112
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/1d074a2b-5c7e-4071-9648-c544c5ed8768/ezgif-5-7934ce2ce9.gif",
392715
393113
  "default_example": {
392716
393114
  "completed_at": "2023-01-29T18:27:15.032143Z",
@@ -394563,7 +394961,7 @@
394563
394961
  "github_url": null,
394564
394962
  "paper_url": null,
394565
394963
  "license_url": null,
394566
- "run_count": 242438,
394964
+ "run_count": 242439,
394567
394965
  "cover_image_url": "https://replicate.delivery/pbxt/j0ALfNdwwfvXG0wLdr69LlpW8TnbuH9M11xZMMWu4GGeqw4gA/out-0.png",
394568
394966
  "default_example": {
394569
394967
  "completed_at": "2023-02-08T16:52:47.560905Z",
@@ -394919,7 +395317,7 @@
394919
395317
  "github_url": "https://github.com/chenxwh/cog-themed-diffusion",
394920
395318
  "paper_url": "https://arxiv.org/abs/2211.09800",
394921
395319
  "license_url": "https://github.com/timothybrooks/instruct-pix2pix/blob/main/LICENSE",
394922
- "run_count": 593566,
395320
+ "run_count": 593672,
394923
395321
  "cover_image_url": "https://replicate.delivery/pbxt/kfL8fyBkHllh4kfEJbulrcnzWywUzZ2Fl1GkpXlb4n8xiaugA/out-0.png",
394924
395322
  "default_example": {
394925
395323
  "completed_at": "2023-01-24T00:12:09.338020Z",
@@ -395491,7 +395889,7 @@
395491
395889
  "github_url": null,
395492
395890
  "paper_url": null,
395493
395891
  "license_url": null,
395494
- "run_count": 1787542,
395892
+ "run_count": 1787635,
395495
395893
  "cover_image_url": "https://replicate.delivery/pbxt/qcrZfAJuW71mNyiN9MZh65WW8LkTKLQHAPtasZdE0RMXxZLIA/out-0.png",
395496
395894
  "default_example": {
395497
395895
  "completed_at": "2023-01-22T18:55:42.842415Z",
@@ -396922,7 +397320,7 @@
396922
397320
  "github_url": null,
396923
397321
  "paper_url": null,
396924
397322
  "license_url": null,
396925
- "run_count": 3041396,
397323
+ "run_count": 3041443,
396926
397324
  "cover_image_url": "https://replicate.delivery/pbxt/s7CafGeN2Nle1p4Ij2cjnodU1qFVjzPYhqeYq7hD80G63vRBB/out-0.png",
396927
397325
  "default_example": {
396928
397326
  "completed_at": "2023-01-15T14:28:14.946513Z",
@@ -397268,7 +397666,7 @@
397268
397666
  "github_url": "https://github.com/daanelson/cog-upscalers",
397269
397667
  "paper_url": null,
397270
397668
  "license_url": "https://github.com/daanelson/cog-upscalers/blob/main/LICENSE",
397271
- "run_count": 11428,
397669
+ "run_count": 11429,
397272
397670
  "cover_image_url": "https://replicate.delivery/pbxt/yfRfppmmAdoDJkna1COgo6hum3V400560U5UDb9UOGEzNVTQA/output.png",
397273
397671
  "default_example": {
397274
397672
  "completed_at": "2023-01-12T05:58:12.100319Z",
@@ -398860,7 +399258,7 @@
398860
399258
  "github_url": "https://github.com/andreasjansson/cog-stable-diffusion-inpainting",
398861
399259
  "paper_url": null,
398862
399260
  "license_url": "https://github.com/andreasjansson/cog-stable-diffusion-inpainting/blob/master/LICENSE",
398863
- "run_count": 846564,
399261
+ "run_count": 846613,
398864
399262
  "cover_image_url": "https://replicate.delivery/pbxt/RiurKSg4UNI4D1mwNeFH34k3NNDsxH6yK4m6XbpdEOH05M9HA/out-0.png",
398865
399263
  "default_example": {
398866
399264
  "completed_at": "2022-10-28T14:44:56.839271Z",
@@ -400317,7 +400715,7 @@
400317
400715
  "github_url": null,
400318
400716
  "paper_url": null,
400319
400717
  "license_url": null,
400320
- "run_count": 101752,
400718
+ "run_count": 101771,
400321
400719
  "cover_image_url": "https://replicate.delivery/pbxt/o8FfSTfc8QjGFEe7GRBvfG65WxhndCIknHFDAR8mrcRc8fxfD/out-0.png",
400322
400720
  "default_example": {
400323
400721
  "completed_at": "2022-11-09T06:50:47.730174Z",
@@ -401383,7 +401781,7 @@
401383
401781
  "github_url": null,
401384
401782
  "paper_url": null,
401385
401783
  "license_url": null,
401386
- "run_count": 44307,
401784
+ "run_count": 44310,
401387
401785
  "cover_image_url": "https://replicate.delivery/pbxt/bIWbbbvqXLbfTycr18idOmrZ1wjnswgmzKnlBM7DoxwCV7ePA/out-0.png",
401388
401786
  "default_example": {
401389
401787
  "completed_at": "2022-11-08T02:01:41.068201Z",
@@ -401739,7 +402137,7 @@
401739
402137
  "github_url": null,
401740
402138
  "paper_url": null,
401741
402139
  "license_url": null,
401742
- "run_count": 1163184,
402140
+ "run_count": 1163354,
401743
402141
  "cover_image_url": "https://replicate.delivery/pbxt/XVkw0hyb0moyBllYiKfyGRaJWrXeJSFmRHVZmBwQa3B4GKefA/out-0.png",
401744
402142
  "default_example": {
401745
402143
  "completed_at": "2022-11-09T00:09:28.454978Z",
@@ -409876,7 +410274,7 @@
409876
410274
  "github_url": "https://github.com/replicate/cog-stable-diffusion-img2img",
409877
410275
  "paper_url": null,
409878
410276
  "license_url": "https://huggingface.co/stabilityai/stable-diffusion-2/blob/main/LICENSE-MODEL",
409879
- "run_count": 815846,
410277
+ "run_count": 815905,
409880
410278
  "cover_image_url": "https://replicate.delivery/pbxt/ql3ndbIRkiZrChA31NxWt7kHMw9GM61lTrrqTIQcgtBI1gBE/out-0.png",
409881
410279
  "default_example": {
409882
410280
  "completed_at": "2022-12-02T22:58:41.057001Z",
@@ -412090,7 +412488,7 @@
412090
412488
  "github_url": "https://github.com/riffusion/riffusion",
412091
412489
  "paper_url": "https://www.riffusion.com/about",
412092
412490
  "license_url": "https://github.com/riffusion/riffusion/blob/main/LICENSE",
412093
- "run_count": 787756,
412491
+ "run_count": 787766,
412094
412492
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/4f67b4e2-4df3-4ce9-9b80-00bbf5a186d8/riffusion.gif",
412095
412493
  "default_example": {
412096
412494
  "completed_at": "2022-12-16T08:17:18.378786Z",
@@ -412753,7 +413151,7 @@
412753
413151
  "github_url": "https://github.com/LambdaLabsML/lambda-diffusers",
412754
413152
  "paper_url": null,
412755
413153
  "license_url": "https://github.com/LambdaLabsML/lambda-diffusers/blob/main/LICENSE",
412756
- "run_count": 153729,
413154
+ "run_count": 153754,
412757
413155
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/e9d10fb8-f59d-4cc0-9f5c-79178aaa7ab9/im-vars.jpg",
412758
413156
  "default_example": {
412759
413157
  "completed_at": "2022-12-13T15:14:28.551533Z",
@@ -413671,7 +414069,7 @@
413671
414069
  "github_url": "https://github.com/PeterL1n/RobustVideoMatting",
413672
414070
  "paper_url": "https://arxiv.org/abs/2108.11515",
413673
414071
  "license_url": "https://github.com/PeterL1n/RobustVideoMatting/blob/master/LICENSE",
413674
- "run_count": 22702,
414072
+ "run_count": 22716,
413675
414073
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/1f92fd8f-2b90-4998-b5ae-1e23678ab004/showreel.gif",
413676
414074
  "default_example": {
413677
414075
  "completed_at": "2022-11-25T14:17:06.618254Z",
@@ -414662,7 +415060,7 @@
414662
415060
  "github_url": null,
414663
415061
  "paper_url": null,
414664
415062
  "license_url": null,
414665
- "run_count": 85560,
415063
+ "run_count": 85578,
414666
415064
  "cover_image_url": "https://replicate.delivery/pbxt/LYci3SkbnCJMKdkjwBEYbXGGnE9x3Mn03xQkaXqq1NRRhACE/out-0.png",
414667
415065
  "default_example": {
414668
415066
  "completed_at": "2022-12-08T23:12:05.572668Z",
@@ -415438,7 +415836,7 @@
415438
415836
  "github_url": null,
415439
415837
  "paper_url": null,
415440
415838
  "license_url": null,
415441
- "run_count": 259217,
415839
+ "run_count": 259220,
415442
415840
  "cover_image_url": "https://replicate.delivery/pbxt/Z1qXRKCfPlXuXKl2nhfb3eL3Y1TfqGylycuig9eClEOsi8aAC/out-0.png",
415443
415841
  "default_example": {
415444
415842
  "completed_at": "2022-11-24T19:33:41.949967Z",
@@ -416561,7 +416959,7 @@
416561
416959
  "github_url": "https://github.com/danielgatis/rembg",
416562
416960
  "paper_url": null,
416563
416961
  "license_url": "https://github.com/danielgatis/rembg/blob/main/LICENSE.txt",
416564
- "run_count": 1878295,
416962
+ "run_count": 1881712,
416565
416963
  "cover_image_url": "https://replicate.delivery/pbxt/2hczaMwD9xrsIR8h3Cl8iYGbHaCdFhIOMZ0LfoYfHlKuuIBQA/out.png",
416566
416964
  "default_example": {
416567
416965
  "completed_at": "2022-11-18T01:02:38.869887Z",
@@ -420681,7 +421079,7 @@
420681
421079
  "github_url": "https://github.com/m1guelpf/cog-nsfw-filter",
420682
421080
  "paper_url": null,
420683
421081
  "license_url": "https://github.com/m1guelpf/cog-nsfw-filter/blob/main/LICENSE",
420684
- "run_count": 328965,
421082
+ "run_count": 329073,
420685
421083
  "cover_image_url": "https://replicate.delivery/pbxt/HopNzJn8F7MbMq47EpzTOubJgxT4N4DWZwb5dWURi885Zm6C/kid.jpeg",
420686
421084
  "default_example": {
420687
421085
  "completed_at": "2022-11-20T06:48:36.416366Z",
@@ -421459,7 +421857,7 @@
421459
421857
  "github_url": null,
421460
421858
  "paper_url": "https://huggingface.co/prompthero/funko-diffusion",
421461
421859
  "license_url": null,
421462
- "run_count": 5003,
421860
+ "run_count": 5004,
421463
421861
  "cover_image_url": "https://replicate.delivery/pbxt/AKYKbvhgl06rPdPdFq6nJYMJpzTsQOEQiiJWh8x5ncqNTHAE/out-0.png",
421464
421862
  "default_example": {
421465
421863
  "completed_at": "2022-11-15T23:31:03.176427Z",
@@ -422616,7 +423014,7 @@
422616
423014
  "github_url": null,
422617
423015
  "paper_url": null,
422618
423016
  "license_url": null,
422619
- "run_count": 1152091,
423017
+ "run_count": 1153060,
422620
423018
  "cover_image_url": "https://replicate.delivery/pbxt/XcklpSF1o7Z1I91xQQQHFvJfltWEa3HuQpoeVVTvN7GVJhffA/out-0.png",
422621
423019
  "default_example": {
422622
423020
  "completed_at": "2022-11-13T03:11:17.948447Z",
@@ -425292,7 +425690,7 @@
425292
425690
  "github_url": null,
425293
425691
  "paper_url": null,
425294
425692
  "license_url": null,
425295
- "run_count": 7267,
425693
+ "run_count": 7268,
425296
425694
  "cover_image_url": "https://replicate.delivery/pbxt/xAzrQYyfjMSINSG4O66vNRBgYebIbfN8EUIoioXfluyouc5fB/out-3.png",
425297
425695
  "default_example": {
425298
425696
  "completed_at": "2022-11-09T15:02:00.830127Z",
@@ -426037,7 +426435,7 @@
426037
426435
  "github_url": "https://github.com/andreasjansson/cog-stable-diffusion",
426038
426436
  "paper_url": null,
426039
426437
  "license_url": "https://github.com/CompVis/stable-diffusion/blob/main/LICENSE",
426040
- "run_count": 105947,
426438
+ "run_count": 105949,
426041
426439
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/9cef4bf5-a2d4-4e75-a409-dc9118fa4f94/Screen_Shot_2022-08-31_at_12.21.4.png",
426042
426440
  "default_example": {
426043
426441
  "completed_at": "2022-08-28T21:01:43Z",
@@ -427094,7 +427492,7 @@
427094
427492
  "github_url": "https://github.com/devxpy/cog-Wav2Lip",
427095
427493
  "paper_url": null,
427096
427494
  "license_url": null,
427097
- "run_count": 932616,
427495
+ "run_count": 932939,
427098
427496
  "cover_image_url": null,
427099
427497
  "default_example": {
427100
427498
  "completed_at": "2022-10-28T16:43:17.295095Z",
@@ -427520,7 +427918,7 @@
427520
427918
  "github_url": null,
427521
427919
  "paper_url": null,
427522
427920
  "license_url": null,
427523
- "run_count": 32962,
427921
+ "run_count": 32964,
427524
427922
  "cover_image_url": "https://replicate.delivery/pbxt/S3Vuk626HB6jHZOCZfBUx9Pfehj6rZWOZChTVlI1WLmknfqfB/out-0.png",
427525
427923
  "default_example": {
427526
427924
  "completed_at": "2022-10-29T15:46:58.334184Z",
@@ -427769,7 +428167,7 @@
427769
428167
  "github_url": "https://github.com/mv-lab/swin2sr",
427770
428168
  "paper_url": "https://arxiv.org/abs/2209.11345",
427771
428169
  "license_url": "https://github.com/mv-lab/swin2sr/blob/main/LICENSE",
427772
- "run_count": 2939100,
428170
+ "run_count": 2939217,
427773
428171
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/aabde67b-bf5c-4fc8-a4bd-8b2dcba60be6/swin2sr-cover3.png",
427774
428172
  "default_example": {
427775
428173
  "completed_at": "2023-02-23T09:15:29.660217Z",
@@ -432256,7 +432654,7 @@
432256
432654
  "github_url": "https://github.com/afiaka87/clip-guided-diffusion",
432257
432655
  "paper_url": "https://github.com/afiaka87/clip-guided-diffusion/issues/5",
432258
432656
  "license_url": "https://github.com/afiaka87/clip-guided-diffusion/blob/main/LICENSE",
432259
- "run_count": 39741,
432657
+ "run_count": 39743,
432260
432658
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/d17b5cb8-a608-4c32-afe2-c60a376877e1/photon.png",
432261
432659
  "default_example": {
432262
432660
  "completed_at": "2021-11-02T06:33:39.657304Z",
@@ -433304,7 +433702,7 @@
433304
433702
  "github_url": "https://github.com/orpatashnik/StyleCLIP",
433305
433703
  "paper_url": "https://arxiv.org/abs/2103.17249",
433306
433704
  "license_url": "https://github.com/orpatashnik/StyleCLIP/blob/main/LICENSE",
433307
- "run_count": 858690,
433705
+ "run_count": 858718,
433308
433706
  "cover_image_url": "https://replicate.delivery/mgxm/4c20b80a-2bd3-4d75-8483-d5b1e2413b08/out.jpg",
433309
433707
  "default_example": {
433310
433708
  "completed_at": "2021-08-24T16:03:59.894927Z",
@@ -433499,7 +433897,7 @@
433499
433897
  "github_url": "https://github.com/bfirsh/cog-segformer",
433500
433898
  "paper_url": null,
433501
433899
  "license_url": null,
433502
- "run_count": 204302,
433900
+ "run_count": 204340,
433503
433901
  "cover_image_url": "https://replicate.com/api/models/bfirsh/segformer-b0-finetuned-ade-512-512/files/4a2185f1-79c8-4bfd-a1a4-e8591ce58f60/image.png",
433504
433902
  "default_example": {
433505
433903
  "completed_at": "2022-10-13T20:36:22.326733Z",
@@ -433867,7 +434265,7 @@
433867
434265
  "github_url": "https://github.com/chenxwh/cog-waifu-diffusion",
433868
434266
  "paper_url": null,
433869
434267
  "license_url": null,
433870
- "run_count": 1062972,
434268
+ "run_count": 1062983,
433871
434269
  "cover_image_url": "https://replicate.com/api/models/cjwbw/waifu-diffusion/files/1c8bf05e-f1ed-4ab7-8297-ddc4eaa90935/out-0.png",
433872
434270
  "default_example": {
433873
434271
  "completed_at": "2022-09-14T11:57:09.886038Z",
@@ -434857,7 +435255,7 @@
434857
435255
  "github_url": "https://github.com/pvitoria/ChromaGAN",
434858
435256
  "paper_url": "https://www.arxiv-vanity.com/papers/1907.09837/",
434859
435257
  "license_url": "https://github.com/pvitoria/ChromaGAN/blob/master/LICENCE",
434860
- "run_count": 68636,
435258
+ "run_count": 68639,
434861
435259
  "cover_image_url": "https://replicate.delivery/mgxm/f73ef115-ab8a-43ab-9beb-ef52b797006e/output.png",
434862
435260
  "default_example": {
434863
435261
  "completed_at": "2021-08-23T04:01:06.315169Z",
@@ -435194,7 +435592,7 @@
435194
435592
  "github_url": "https://github.com/ekgren/StructuredDreaming",
435195
435593
  "paper_url": null,
435196
435594
  "license_url": null,
435197
- "run_count": 3895,
435595
+ "run_count": 3896,
435198
435596
  "cover_image_url": "https://replicate.delivery/mgxm/12a407bb-0374-4f8a-9141-6dedd2c2eb59/out.png",
435199
435597
  "default_example": {
435200
435598
  "completed_at": "2021-10-05T21:41:00.795314Z",
@@ -436155,7 +436553,7 @@
436155
436553
  "github_url": "https://github.com/YoadTew/zero-shot-image-to-text",
436156
436554
  "paper_url": "https://arxiv.org/abs/2111.14447",
436157
436555
  "license_url": null,
436158
- "run_count": 5775,
436556
+ "run_count": 5777,
436159
436557
  "cover_image_url": "https://replicate.delivery/mgxm/0958ab0c-8d26-45f8-a5f1-a27a1f2259cc/baby.jpg",
436160
436558
  "default_example": {
436161
436559
  "completed_at": "2021-12-08T13:21:53.131201Z",
@@ -437161,7 +437559,7 @@
437161
437559
  "github_url": "https://github.com/wonjongg/StyleCariGAN",
437162
437560
  "paper_url": "https://arxiv.org/abs/2107.04331",
437163
437561
  "license_url": "https://github.com/wonjongg/StyleCariGAN/blob/master/LICENSE",
437164
- "run_count": 4733,
437562
+ "run_count": 4740,
437165
437563
  "cover_image_url": "https://replicate.delivery/mgxm/064978a7-5bcc-46aa-9de3-8580728caf91/out.png",
437166
437564
  "default_example": {
437167
437565
  "completed_at": "2021-09-26T12:54:10.229799Z",
@@ -437359,7 +437757,7 @@
437359
437757
  "github_url": "https://github.com/RaoUmer/SRResCGAN",
437360
437758
  "paper_url": "https://arxiv.org/abs/2005.00953",
437361
437759
  "license_url": "https://github.com/RaoUmer/SRResCGAN/blob/master/LICENSE",
437362
- "run_count": 34203,
437760
+ "run_count": 34205,
437363
437761
  "cover_image_url": "https://replicate.delivery/mgxm/b110cc62-0c0f-4022-9e9b-465665c10c1d/out.png",
437364
437762
  "default_example": {
437365
437763
  "completed_at": "2021-08-23T04:08:18.176268Z",
@@ -437518,7 +437916,7 @@
437518
437916
  "github_url": "https://github.com/ptran1203/pytorch-animeGAN",
437519
437917
  "paper_url": "https://github.com/TachibanaYoshino/AnimeGAN/blob/master/doc/Chen2020_Chapter_AnimeGAN.pdf",
437520
437918
  "license_url": null,
437521
- "run_count": 10143,
437919
+ "run_count": 10149,
437522
437920
  "cover_image_url": "https://replicate.delivery/mgxm/cfc9360c-a94c-432f-bb10-5c662d18c1de/out.png",
437523
437921
  "default_example": {
437524
437922
  "completed_at": "2021-08-23T03:55:55.103228Z",
@@ -437697,7 +438095,7 @@
437697
438095
  "github_url": "https://github.com/Huage001/AdaAttN",
437698
438096
  "paper_url": "https://arxiv.org/abs/2108.03647",
437699
438097
  "license_url": "https://github.com/Huage001/AdaAttN/blob/main/LICENSE",
437700
- "run_count": 42682,
438098
+ "run_count": 42708,
437701
438099
  "cover_image_url": "https://replicate.delivery/mgxm/088e9652-042e-4a67-85c9-98d668ffcbaa/out.png",
437702
438100
  "default_example": {
437703
438101
  "completed_at": "2021-10-28T17:34:27.604541Z",
@@ -437865,7 +438263,7 @@
437865
438263
  "github_url": "https://github.com/codeslake/IFAN",
437866
438264
  "paper_url": "https://arxiv.org/pdf/2108.13610.pdf",
437867
438265
  "license_url": "https://github.com/codeslake/IFAN/blob/main/LICENSE",
437868
- "run_count": 83648,
438266
+ "run_count": 83662,
437869
438267
  "cover_image_url": "https://replicate.delivery/mgxm/d2d8381b-0c38-4be1-a625-fe84ba63885a/out.png",
437870
438268
  "default_example": {
437871
438269
  "completed_at": "2021-10-06T06:25:07.577529Z",
@@ -439490,7 +439888,7 @@
439490
439888
  "github_url": "https://github.com/JingyunLiang/HCFlow",
439491
439889
  "paper_url": "https://arxiv.org/pdf/2108.05301.pdf",
439492
439890
  "license_url": "https://github.com/JingyunLiang/HCFlow/blob/main/LICENSE",
439493
- "run_count": 165196,
439891
+ "run_count": 165227,
439494
439892
  "cover_image_url": "https://replicate.delivery/mgxm/88ee0f71-4356-4c77-9af4-58fcd21d3847/out.png",
439495
439893
  "default_example": {
439496
439894
  "completed_at": "2021-09-11T19:35:37.337732Z",
@@ -439669,7 +440067,7 @@
439669
440067
  "github_url": "https://github.com/xinntao/ESRGAN",
439670
440068
  "paper_url": "https://arxiv.org/abs/1809.00219",
439671
440069
  "license_url": "https://github.com/xinntao/ESRGAN/blob/master/LICENSE",
439672
- "run_count": 53701,
440070
+ "run_count": 53711,
439673
440071
  "cover_image_url": "https://replicate.delivery/mgxm/f3d56217-cf86-4bce-8e0f-151ae9578215/out.png",
439674
440072
  "default_example": {
439675
440073
  "completed_at": "2021-08-25T16:52:06.199996Z",
@@ -439828,7 +440226,7 @@
439828
440226
  "github_url": "https://github.com/kyrick/cog-prompt-parrot",
439829
440227
  "paper_url": null,
439830
440228
  "license_url": "https://github.com/kyrick/cog-prompt-parrot/blob/main/LICENSE",
439831
- "run_count": 166852,
440229
+ "run_count": 166862,
439832
440230
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/fb50cae7-d951-4bc5-a750-32f56cbac42f/parrot2.png",
439833
440231
  "default_example": {
439834
440232
  "completed_at": "2022-10-02T18:38:29.055789Z",
@@ -439979,7 +440377,7 @@
439979
440377
  "github_url": "https://github.com/google-research/frame-interpolation",
439980
440378
  "paper_url": "https://arxiv.org/pdf/2202.04901.pdf",
439981
440379
  "license_url": "https://github.com/google-research/frame-interpolation/blob/main/LICENSE",
439982
- "run_count": 176103,
440380
+ "run_count": 176121,
439983
440381
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/76b830b7-275f-46bf-9cf1-5ad7e7ec4bd4/ezgif-4-738f126aea.gif",
439984
440382
  "default_example": {
439985
440383
  "completed_at": "2022-02-13T17:21:32Z",
@@ -440347,7 +440745,7 @@
440347
440745
  "github_url": "https://github.com/Tengfei-Wang/HFGI",
440348
440746
  "paper_url": "https://arxiv.org/abs/2109.06590",
440349
440747
  "license_url": null,
440350
- "run_count": 20283,
440748
+ "run_count": 20284,
440351
440749
  "cover_image_url": "https://replicate.delivery/mgxm/bd5bccb0-b834-4f03-817b-393c7d30175d/out.png",
440352
440750
  "default_example": {
440353
440751
  "completed_at": "2021-11-04T13:43:28.781826Z",
@@ -440721,7 +441119,7 @@
440721
441119
  "github_url": "https://github.com/yuval-alaluf/restyle-encoder",
440722
441120
  "paper_url": "https://arxiv.org/abs/2104.02699",
440723
441121
  "license_url": "https://github.com/yuval-alaluf/restyle-encoder/blob/main/LICENSE",
440724
- "run_count": 59480,
441122
+ "run_count": 59481,
440725
441123
  "cover_image_url": "https://replicate.delivery/mgxm/0245cab7-1ed2-40fe-a3b4-e7b81471135f/output.png",
440726
441124
  "default_example": {
440727
441125
  "completed_at": "2021-09-14T18:35:48.827568Z",
@@ -440918,7 +441316,7 @@
440918
441316
  "github_url": "https://github.com/mchong6/JoJoGAN",
440919
441317
  "paper_url": "https://www.arxiv-vanity.com/papers/2112.11641/",
440920
441318
  "license_url": "https://github.com/mchong6/JoJoGAN/blob/main/LICENSE",
440921
- "run_count": 63400,
441319
+ "run_count": 63403,
440922
441320
  "cover_image_url": "https://replicate.delivery/mgxm/ea4f0533-01f1-4331-b0f4-410174df5d8e/out.jpg",
440923
441321
  "default_example": {
440924
441322
  "completed_at": "2022-02-04T17:28:10.189331Z",
@@ -441155,7 +441553,7 @@
441155
441553
  "github_url": "https://github.com/rinongal/StyleGAN-nada",
441156
441554
  "paper_url": "https://arxiv.org/abs/2108.00946",
441157
441555
  "license_url": "https://github.com/rinongal/StyleGAN-nada/blob/main/LICENSE",
441158
- "run_count": 74115,
441556
+ "run_count": 74117,
441159
441557
  "cover_image_url": "https://replicate.delivery/mgxm/35b6cee8-6416-4dad-bd9e-335252e44959/out.jpg",
441160
441558
  "default_example": {
441161
441559
  "completed_at": "2021-10-03T14:20:20.180675Z",
@@ -441403,7 +441801,7 @@
441403
441801
  "github_url": "https://github.com/CJWBW/rudalle-sr",
441404
441802
  "paper_url": "https://arxiv.org/abs/2107.10833",
441405
441803
  "license_url": "https://github.com/chenxwh/rudalle-sr/blob/main/LICENSE.txt",
441406
- "run_count": 358497,
441804
+ "run_count": 358501,
441407
441805
  "cover_image_url": "https://replicate.delivery/mgxm/588170af-559f-454e-967d-8fb6c7f8304b/out.png",
441408
441806
  "default_example": {
441409
441807
  "completed_at": "2021-11-04T18:48:42.011574Z",
@@ -441583,7 +441981,7 @@
441583
441981
  "github_url": "https://github.com/facebookresearch/Detic",
441584
441982
  "paper_url": "https://arxiv.org/abs/2201.02605",
441585
441983
  "license_url": "https://github.com/facebookresearch/Detic/blob/main/LICENSE",
441586
- "run_count": 21854,
441984
+ "run_count": 21855,
441587
441985
  "cover_image_url": "https://replicate.delivery/mgxm/20b554e3-da67-4c80-ad38-b17b9ca84bb5/out.png",
441588
441986
  "default_example": {
441589
441987
  "completed_at": "2022-01-17T23:55:16Z",
@@ -441772,7 +442170,7 @@
441772
442170
  "github_url": "https://github.com/JingyunLiang/SwinIR",
441773
442171
  "paper_url": "https://arxiv.org/abs/2108.10257",
441774
442172
  "license_url": "https://github.com/JingyunLiang/SwinIR/blob/main/LICENSE",
441775
- "run_count": 4705642,
442173
+ "run_count": 4705943,
441776
442174
  "cover_image_url": "https://replicate.delivery/mgxm/1e3c0b87-01a7-4795-abac-aaf17479cf84/out.png",
441777
442175
  "default_example": {
441778
442176
  "completed_at": "2021-09-15T13:53:55Z",
@@ -441983,7 +442381,7 @@
441983
442381
  "github_url": "https://github.com/salesforce/BLIP",
441984
442382
  "paper_url": "https://arxiv.org/abs/2201.12086",
441985
442383
  "license_url": "https://github.com/salesforce/BLIP/blob/main/LICENSE.txt",
441986
- "run_count": 50476468,
442384
+ "run_count": 50482050,
441987
442385
  "cover_image_url": "https://replicate.delivery/mgxm/f4e50a7b-e8ca-432f-8e68-082034ebcc70/demo.jpg",
441988
442386
  "default_example": {
441989
442387
  "completed_at": "2022-02-06T17:53:43.900562Z",
@@ -442174,7 +442572,7 @@
442174
442572
  "github_url": "https://github.com/yangxy/GPEN",
442175
442573
  "paper_url": "https://arxiv.org/abs/2105.06070",
442176
442574
  "license_url": null,
442177
- "run_count": 113852,
442575
+ "run_count": 113861,
442178
442576
  "cover_image_url": "https://replicate.delivery/mgxm/a79d403f-ab71-4a23-a976-59a25341dcb3/out.png",
442179
442577
  "default_example": {
442180
442578
  "completed_at": "2021-10-06T18:35:41.982517Z",
@@ -442373,7 +442771,7 @@
442373
442771
  "github_url": "https://github.com/yuval-alaluf/SAM",
442374
442772
  "paper_url": "https://www.arxiv-vanity.com/papers/2102.02754/",
442375
442773
  "license_url": "https://github.com/yuval-alaluf/SAM/blob/master/LICENSE",
442376
- "run_count": 429307,
442774
+ "run_count": 429465,
442377
442775
  "cover_image_url": "https://replicate.delivery/mgxm/eb97d0ed-1d6c-4460-ba34-0e265a720974/output.gif",
442378
442776
  "default_example": {
442379
442777
  "completed_at": "2021-08-23T22:22:48.361358Z",
@@ -442540,7 +442938,7 @@
442540
442938
  "github_url": "https://github.com/rmokady/CLIP_prefix_caption",
442541
442939
  "paper_url": null,
442542
442940
  "license_url": "https://github.com/rmokady/CLIP_prefix_caption/blob/main/LICENSE",
442543
- "run_count": 1215736,
442941
+ "run_count": 1215881,
442544
442942
  "cover_image_url": "https://replicate.delivery/mgxm/4dc7763a-f234-4a7c-a85f-cb9e05e37cf8/COCO_val2014_000000579664.jpg",
442545
442943
  "default_example": {
442546
442944
  "completed_at": "2021-10-09T20:10:21.250045Z",
@@ -442726,7 +443124,7 @@
442726
443124
  "github_url": "https://github.com/onion-liu/BlendGAN",
442727
443125
  "paper_url": "https://arxiv.org/abs/2110.11728",
442728
443126
  "license_url": "https://github.com/onion-liu/BlendGAN/blob/main/LICENSE",
442729
- "run_count": 6728,
443127
+ "run_count": 6730,
442730
443128
  "cover_image_url": "https://replicate.delivery/mgxm/79ccc9ff-82f5-49f6-94b2-d295ce8198d4/out.png",
442731
443129
  "default_example": {
442732
443130
  "completed_at": "2021-11-20T21:07:30.701748Z",
@@ -442894,7 +443292,7 @@
442894
443292
  "github_url": "https://github.com/microsoft/Bringing-Old-Photos-Back-to-Life",
442895
443293
  "paper_url": "https://arxiv.org/abs/2004.09484",
442896
443294
  "license_url": "https://github.com/microsoft/Bringing-Old-Photos-Back-to-Life/blob/master/LICENSE",
442897
- "run_count": 643162,
443295
+ "run_count": 643262,
442898
443296
  "cover_image_url": "https://replicate.delivery/mgxm/18b02ad9-ae81-4044-800e-65732df6bdc7/out.png",
442899
443297
  "default_example": {
442900
443298
  "completed_at": "2021-09-20T16:27:51.532784Z",
@@ -443246,7 +443644,7 @@
443246
443644
  "github_url": "https://github.com/openai/whisper",
443247
443645
  "paper_url": "https://cdn.openai.com/papers/whisper.pdf",
443248
443646
  "license_url": "https://github.com/openai/whisper/blob/main/LICENSE",
443249
- "run_count": 33767,
443647
+ "run_count": 33768,
443250
443648
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/6378eee6-393c-4152-b7cf-ee9961bcca96/social.png",
443251
443649
  "default_example": {
443252
443650
  "completed_at": "2022-09-26T17:32:04.098952Z",
@@ -443474,7 +443872,7 @@
443474
443872
  "github_url": "https://github.com/chenxwh/cog-sd-txt2imghd",
443475
443873
  "paper_url": null,
443476
443874
  "license_url": "https://github.com/jquesnelle/txt2imghd/blob/master/LICENSE.md",
443477
- "run_count": 65690,
443875
+ "run_count": 65692,
443478
443876
  "cover_image_url": "https://replicate.com/api/models/cjwbw/stable-diffusion-high-resolution/files/e1b194af-e903-4efb-8bb2-8016b0863507/out.png",
443479
443877
  "default_example": {
443480
443878
  "completed_at": "2022-09-14T20:59:35.485772Z",
@@ -444116,7 +444514,7 @@
444116
444514
  "github_url": "https://github.com/chenxwh/cog-clip",
444117
444515
  "paper_url": null,
444118
444516
  "license_url": null,
444119
- "run_count": 2847479,
444517
+ "run_count": 2847712,
444120
444518
  "cover_image_url": "https://replicate.delivery/mgxm/36b04aec-efe2-4dea-9c9d-a5faca68b2b2/000000039769.jpg",
444121
444519
  "default_example": {
444122
444520
  "completed_at": "2022-09-22T07:26:25.937198Z",
@@ -444488,7 +444886,7 @@
444488
444886
  "github_url": "https://github.com/ariel415el/GPDM",
444489
444887
  "paper_url": "https://arxiv.org/abs/2203.11862",
444490
444888
  "license_url": "https://github.com/ariel415el/GPDM/blob/main/LICENSE",
444491
- "run_count": 5054,
444889
+ "run_count": 5055,
444492
444890
  "cover_image_url": "https://replicate.delivery/mgxm/6e6ea32c-abbc-478b-9a31-af5e3b7702c6/output.png",
444493
444891
  "default_example": {
444494
444892
  "completed_at": "2022-07-06T14:30:27.971318Z",
@@ -445014,7 +445412,7 @@
445014
445412
  "github_url": "https://github.com/TencentARC/GFPGAN",
445015
445413
  "paper_url": "https://arxiv.org/abs/2101.04061",
445016
445414
  "license_url": "https://github.com/TencentARC/GFPGAN/blob/master/LICENSE",
445017
- "run_count": 50518484,
445415
+ "run_count": 50522445,
445018
445416
  "cover_image_url": "https://replicate.delivery/mgxm/85f53415-0dc7-4703-891f-1e6f912119ad/output.png",
445019
445417
  "default_example": {
445020
445418
  "completed_at": "2022-09-04T15:41:29.906994Z",
@@ -445199,7 +445597,7 @@
445199
445597
  "github_url": "https://github.com/TencentARC/GFPGAN",
445200
445598
  "paper_url": "https://arxiv.org/abs/2101.04061",
445201
445599
  "license_url": "https://github.com/TencentARC/GFPGAN/blob/master/LICENSE",
445202
- "run_count": 1720308,
445600
+ "run_count": 1720505,
445203
445601
  "cover_image_url": "https://replicate.delivery/mgxm/f81248a3-d02a-4194-938b-dba0c6246a14/out.png",
445204
445602
  "default_example": {
445205
445603
  "completed_at": "2022-09-04T15:39:41.243256Z",
@@ -446043,7 +446441,7 @@
446043
446441
  "github_url": "https://github.com/sczhou/CodeFormer",
446044
446442
  "paper_url": "https://arxiv.org/abs/2206.11253",
446045
446443
  "license_url": "https://github.com/sczhou/CodeFormer/blob/master/LICENSE",
446046
- "run_count": 20634566,
446444
+ "run_count": 20641499,
446047
446445
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/7fe190b7-0fca-4abe-8749-0ffd664c1b22/012.png",
446048
446446
  "default_example": {
446049
446447
  "completed_at": "2023-05-10T17:12:27.596216Z",
@@ -446449,7 +446847,7 @@
446449
446847
  "github_url": "https://github.com/xinntao/Real-ESRGAN",
446450
446848
  "paper_url": "https://arxiv.org/abs/2107.10833",
446451
446849
  "license_url": "https://github.com/xinntao/Real-ESRGAN/blob/master/LICENSE",
446452
- "run_count": 2609464,
446850
+ "run_count": 2609803,
446453
446851
  "cover_image_url": "https://replicate.delivery/mgxm/64bfb221-6b36-4e5d-8f81-77d7b2adecf9/out..jpg",
446454
446852
  "default_example": {
446455
446853
  "completed_at": "2022-09-04T15:45:11.273918Z",
@@ -446940,7 +447338,7 @@
446940
447338
  "github_url": "https://github.com/deforum/stable-diffusion",
446941
447339
  "paper_url": null,
446942
447340
  "license_url": "https://github.com/deforum/stable-diffusion/blob/main/LICENSE",
446943
- "run_count": 180833,
447341
+ "run_count": 180845,
446944
447342
  "cover_image_url": null,
446945
447343
  "default_example": {
446946
447344
  "completed_at": "2022-09-01T01:41:27Z",
@@ -447195,7 +447593,7 @@
447195
447593
  "github_url": "https://github.com/XPixelGroup/HAT",
447196
447594
  "paper_url": "https://arxiv.org/abs/2205.04437",
447197
447595
  "license_url": "https://github.com/XPixelGroup/HAT/blob/main/LICENSE",
447198
- "run_count": 19599,
447596
+ "run_count": 19602,
447199
447597
  "cover_image_url": "https://replicate.delivery/mgxm/83101122-3778-41ff-80be-4f7a1a59b727/output.png",
447200
447598
  "default_example": {
447201
447599
  "completed_at": "2022-08-28T18:09:44.858968Z",
@@ -448814,7 +449212,7 @@
448814
449212
  "github_url": "https://github.com/pharmapsychotic/clip-interrogator",
448815
449213
  "paper_url": null,
448816
449214
  "license_url": "https://github.com/pharmapsychotic/clip-interrogator/blob/main/LICENSE",
448817
- "run_count": 1921807,
449215
+ "run_count": 1921919,
448818
449216
  "cover_image_url": "https://replicate.delivery/mgxm/8b4d747d-feca-477d-8069-ee4d5f89ad8e/a_high_detail_shot_of_a_cat_wearing_a_suit_realism_8k_-n_9_.png",
448819
449217
  "default_example": {
448820
449218
  "completed_at": "2022-08-24T09:37:25.636676Z",
@@ -451442,7 +451840,7 @@
451442
451840
  "github_url": "https://github.com/Taeu/Style-Your-Hair",
451443
451841
  "paper_url": "https://arxiv.org/abs/2208.07765",
451444
451842
  "license_url": null,
451445
- "run_count": 6263,
451843
+ "run_count": 6264,
451446
451844
  "cover_image_url": "https://replicate.delivery/mgxm/c9f54dd4-66fe-4379-b9e5-64e29fb5827d/output.png",
451447
451845
  "default_example": {
451448
451846
  "completed_at": "2022-08-20T21:13:16.015283Z",
@@ -452719,7 +453117,7 @@
452719
453117
  "github_url": "https://github.com/jinyeying/night-enhancement",
452720
453118
  "paper_url": "https://arxiv.org/pdf/2207.10564.pdf",
452721
453119
  "license_url": "https://github.com/jinyeying/night-enhancement/blob/main/LICENSE",
452722
- "run_count": 18963,
453120
+ "run_count": 18964,
452723
453121
  "cover_image_url": "https://replicate.delivery/mgxm/60c4c0d8-c82f-42e0-96ee-71392d32b6fe/output.png",
452724
453122
  "default_example": {
452725
453123
  "completed_at": "2022-08-13T17:15:29.898541Z",
@@ -455399,7 +455797,7 @@
455399
455797
  "github_url": "https://github.com/NightmareAI/latent-diffusion",
455400
455798
  "paper_url": null,
455401
455799
  "license_url": "https://github.com/NightmareAI/latent-diffusion/blob/main/LICENSE",
455402
- "run_count": 62688,
455800
+ "run_count": 62692,
455403
455801
  "cover_image_url": "https://replicate.delivery/mgxm/01fafc3e-3436-49ba-a8ce-57766a2b2f43/0-latent-3.png",
455404
455802
  "default_example": {
455405
455803
  "completed_at": "2022-08-05T16:43:36.186474Z",
@@ -455563,7 +455961,7 @@
455563
455961
  "github_url": "https://github.com/LAION-AI/ldm-finetune",
455564
455962
  "paper_url": null,
455565
455963
  "license_url": "https://github.com/LAION-AI/ldm-finetune/blob/main/LICENSE",
455566
- "run_count": 123197,
455964
+ "run_count": 123225,
455567
455965
  "cover_image_url": "https://replicate.delivery/mgxm/9696c825-c8b3-4940-ab70-0717af035d9d/current_2.png",
455568
455966
  "default_example": {
455569
455967
  "completed_at": "2022-07-17T07:44:30.683816Z",
@@ -455867,7 +456265,7 @@
455867
456265
  "github_url": "https://github.com/LAION-AI/ldm-finetune",
455868
456266
  "paper_url": null,
455869
456267
  "license_url": "https://github.com/LAION-AI/ldm-finetune/blob/main/LICENSE",
455870
- "run_count": 318685,
456268
+ "run_count": 318708,
455871
456269
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/6371bff8-c3ae-43cb-9f8f-ed6d363d12c8/lvzj.png",
455872
456270
  "default_example": {
455873
456271
  "completed_at": "2022-08-05T14:40:21.390360Z",
@@ -456628,7 +457026,7 @@
456628
457026
  "github_url": "https://github.com/wuqiuche/micromotion-styleGAN",
456629
457027
  "paper_url": "https://arxiv.org/abs/2204.12696",
456630
457028
  "license_url": "https://github.com/wuqiuche/micromotion-styleGAN/blob/main/LICENSE",
456631
- "run_count": 6244,
457029
+ "run_count": 6245,
456632
457030
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/2293178e-5443-422e-83e4-6d93f3f1c5cf/output.gif",
456633
457031
  "default_example": {
456634
457032
  "completed_at": "2022-08-04T12:27:31.322243Z",
@@ -456977,7 +457375,7 @@
456977
457375
  "github_url": "https://github.com/KIMGEONUNG/BigColor",
456978
457376
  "paper_url": "https://arxiv.org/abs/2207.09685",
456979
457377
  "license_url": "https://github.com/KIMGEONUNG/BigColor/blob/main/LICENSE",
456980
- "run_count": 244223,
457378
+ "run_count": 244246,
456981
457379
  "cover_image_url": "https://replicate.delivery/mgxm/7c716bfc-2b84-4192-9127-0d58e187011c/output.png",
456982
457380
  "default_example": {
456983
457381
  "completed_at": "2022-08-03T21:38:43.388871Z",
@@ -457343,7 +457741,7 @@
457343
457741
  "github_url": "https://github.com/TencentARC/VQFR",
457344
457742
  "paper_url": "https://arxiv.org/abs/2205.06803",
457345
457743
  "license_url": "https://github.com/TencentARC/VQFR/blob/main/LICENSE",
457346
- "run_count": 95277,
457744
+ "run_count": 95287,
457347
457745
  "cover_image_url": "https://replicate.delivery/mgxm/bc7a348f-60f5-40fb-89e4-ed3dd250cb31/output_0.png",
457348
457746
  "default_example": {
457349
457747
  "completed_at": "2022-08-03T21:12:21.503235Z",
@@ -458076,7 +458474,7 @@
458076
458474
  "github_url": "https://github.com/afiaka87/tortoise-tts",
458077
458475
  "paper_url": "https://github.com/neonbjb/tortoise-tts",
458078
458476
  "license_url": "https://github.com/afiaka87/tortoise-tts/blob/main/LICENSE",
458079
- "run_count": 113063,
458477
+ "run_count": 113079,
458080
458478
  "cover_image_url": null,
458081
458479
  "default_example": {
458082
458480
  "completed_at": "2022-08-11T13:14:11.831680Z",
@@ -458428,7 +458826,7 @@
458428
458826
  "github_url": "https://github.com/TencentARC/VQFR",
458429
458827
  "paper_url": "https://arxiv.org/abs/2205.06803",
458430
458828
  "license_url": "https://github.com/TencentARC/VQFR/blob/main/LICENSE",
458431
- "run_count": 73888,
458829
+ "run_count": 73898,
458432
458830
  "cover_image_url": "https://replicate.delivery/mgxm/1efed0ec-ff65-45bf-81a3-77018c870485/output.png",
458433
458831
  "default_example": {
458434
458832
  "completed_at": "2022-08-01T18:02:00.056658Z",
@@ -459329,7 +459727,7 @@
459329
459727
  "github_url": "https://github.com/jina-ai/discoart",
459330
459728
  "paper_url": null,
459331
459729
  "license_url": "https://github.com/jina-ai/discoart/blob/main/LICENSE",
459332
- "run_count": 62952,
459730
+ "run_count": 62953,
459333
459731
  "cover_image_url": "https://replicate.delivery/mgxm/eb8dc56a-1e37-4e6a-8fd7-51ad12b399f5/ba70ca3b-8ed1-4ac4-a09f-3cc046dd3dea0_0.png",
459334
459732
  "default_example": {
459335
459733
  "completed_at": "2022-07-10T11:17:36.820113Z",
@@ -460199,7 +460597,7 @@
460199
460597
  "github_url": "https://github.com/NightmareAI/CogVideo",
460200
460598
  "paper_url": "https://arxiv.org/abs/2205.15868",
460201
460599
  "license_url": "https://github.com/NightmareAI/CogVideo/blob/main/LICENSE",
460202
- "run_count": 30419,
460600
+ "run_count": 30421,
460203
460601
  "cover_image_url": "https://replicate.delivery/mgxm/6c3a4e36-2332-4280-a506-a4bfd4197f7b/0.gif",
460204
460602
  "default_example": {
460205
460603
  "completed_at": "2022-07-26T06:14:48.029302Z",
@@ -460917,7 +461315,7 @@
460917
461315
  "github_url": "https://github.com/NightmareAI/latent-diffusion",
460918
461316
  "paper_url": null,
460919
461317
  "license_url": "https://github.com/NightmareAI/latent-diffusion/blob/main/LICENSE",
460920
- "run_count": 103985,
461318
+ "run_count": 103990,
460921
461319
  "cover_image_url": "https://replicate.delivery/mgxm/62ca1b90-9ec2-4303-94f0-92206ea75459/tmpmtljfr8t.png",
460922
461320
  "default_example": {
460923
461321
  "completed_at": "2022-07-13T14:57:32.718149Z",
@@ -463095,7 +463493,7 @@
463095
463493
  "github_url": "https://github.com/StoryMY/take-off-eyeglasses",
463096
463494
  "paper_url": null,
463097
463495
  "license_url": null,
463098
- "run_count": 9182,
463496
+ "run_count": 9183,
463099
463497
  "cover_image_url": "https://replicate.delivery/mgxm/a3e386e9-e6af-42da-b667-d7c65e55573c/output.png",
463100
463498
  "default_example": {
463101
463499
  "completed_at": "2022-06-24T00:18:56.379574Z",
@@ -463672,7 +464070,7 @@
463672
464070
  "github_url": "https://github.com/NightmareAI/Real-ESRGAN",
463673
464071
  "paper_url": null,
463674
464072
  "license_url": "https://github.com/NightmareAI/Real-ESRGAN/blob/master/LICENSE",
463675
- "run_count": 19695430,
464073
+ "run_count": 19707497,
463676
464074
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/90563818-e1bc-4585-a626-62b5ab5ff22d/ApplicationFrameHost_3Bs5DdjGnX.png",
463677
464075
  "default_example": {
463678
464076
  "completed_at": "2023-05-10T17:04:31.540865Z",
@@ -463845,7 +464243,7 @@
463845
464243
  "github_url": "https://github.com/wzx0826/LBNet",
463846
464244
  "paper_url": "https://arxiv.org/abs/2204.13286",
463847
464245
  "license_url": null,
463848
- "run_count": 6107,
464246
+ "run_count": 6108,
463849
464247
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/06ecbea7-9fb0-4bd3-81d7-812b027cbfc3/zebracover.png",
463850
464248
  "default_example": {
463851
464249
  "completed_at": "2022-06-18T00:03:53.984621Z",
@@ -465555,7 +465953,7 @@
465555
465953
  "github_url": "https://github.com/j-min/CLIP-Caption-Reward",
465556
465954
  "paper_url": "https://arxiv.org/abs/2205.13115",
465557
465955
  "license_url": "https://github.com/j-min/CLIP-Caption-Reward/blob/main/LICENSE",
465558
- "run_count": 278191,
465956
+ "run_count": 278193,
465559
465957
  "cover_image_url": "https://replicate.delivery/mgxm/d452ef45-ce7e-4f8d-a63f-350d624fc95a/COCO_val2014_000000462565.jpeg",
465560
465958
  "default_example": {
465561
465959
  "completed_at": "2022-05-31T12:39:50.224370Z",
@@ -467090,7 +467488,7 @@
467090
467488
  "github_url": "https://github.com/pixray/pixray",
467091
467489
  "paper_url": null,
467092
467490
  "license_url": "https://github.com/pixray/pixray/blob/master/LICENSE",
467093
- "run_count": 1389135,
467491
+ "run_count": 1389169,
467094
467492
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/5167abcc-2dfc-427a-8b60-9c7abba7c429/replicate-prediction-bpmogp2wprab.png",
467095
467493
  "default_example": {
467096
467494
  "completed_at": "2022-01-04T06:40:21Z",
@@ -467675,7 +468073,7 @@
467675
468073
  "github_url": "https://github.com/replicate/cog-examples",
467676
468074
  "paper_url": null,
467677
468075
  "license_url": null,
467678
- "run_count": 6273,
468076
+ "run_count": 6277,
467679
468077
  "cover_image_url": "https://replicate.delivery/mgxm/64ae6640-b109-4484-9c45-2e6bae918f56/cat.jpg",
467680
468078
  "default_example": {
467681
468079
  "completed_at": "2022-05-17T02:17:27.651177Z",
@@ -467844,7 +468242,7 @@
467844
468242
  "github_url": "https://github.com/yoyo-nb/Thin-Plate-Spline-Motion-Model",
467845
468243
  "paper_url": "https://arxiv.org/abs/2203.14367",
467846
468244
  "license_url": "https://github.com/yoyo-nb/Thin-Plate-Spline-Motion-Model/blob/main/LICENSE",
467847
- "run_count": 301668,
468245
+ "run_count": 301736,
467848
468246
  "cover_image_url": null,
467849
468247
  "default_example": {
467850
468248
  "completed_at": "2022-05-06T21:45:46.543624Z",
@@ -470198,7 +470596,7 @@
470198
470596
  "github_url": "https://github.com/megvii-research/NAFNet",
470199
470597
  "paper_url": "https://arxiv.org/abs/2204.04676",
470200
470598
  "license_url": "https://github.com/megvii-research/NAFNet/blob/main/LICENSE",
470201
- "run_count": 201777,
470599
+ "run_count": 202353,
470202
470600
  "cover_image_url": "https://replicate.delivery/mgxm/60bdfe42-b179-40fb-81b0-fa3ec0090aea/output.png",
470203
470601
  "default_example": {
470204
470602
  "completed_at": "2022-04-27T09:09:57.708895Z",
@@ -470382,7 +470780,7 @@
470382
470780
  "github_url": "https://github.com/replicate/cog-examples",
470383
470781
  "paper_url": null,
470384
470782
  "license_url": null,
470385
- "run_count": 6468413,
470783
+ "run_count": 6470143,
470386
470784
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/9c1f748e-a9fc-4cfd-a497-68262ee6151a/replicate-prediction-caujujsgrng7.png",
470387
470785
  "default_example": {
470388
470786
  "completed_at": "2022-04-26T19:30:10.926419Z",
@@ -470699,7 +471097,7 @@
470699
471097
  "github_url": "https://github.com/google-research/maxim",
470700
471098
  "paper_url": "https://arxiv.org/abs/2201.02973",
470701
471099
  "license_url": "https://github.com/google-research/maxim/blob/main/LICENSE",
470702
- "run_count": 281268,
471100
+ "run_count": 281302,
470703
471101
  "cover_image_url": "https://replicate.delivery/mgxm/716ffa94-41f7-46b4-a2f0-287f0e907f9c/output.png",
470704
471102
  "default_example": {
470705
471103
  "completed_at": "2022-04-23T08:37:29.298497Z",
@@ -471037,7 +471435,7 @@
471037
471435
  "github_url": "https://github.com/codeslake/RefVSR",
471038
471436
  "paper_url": "https://arxiv.org/abs/2203.14537",
471039
471437
  "license_url": "https://github.com/codeslake/RefVSR/blob/main/LICENSE",
471040
- "run_count": 11554,
471438
+ "run_count": 11560,
471041
471439
  "cover_image_url": "https://tjzk.replicate.delivery/models_models_cover_image/36dc8d51-10f8-461e-9684-dc98ed8da1b7/RefVSR_teaser_cvpr.gif",
471042
471440
  "default_example": {
471043
471441
  "completed_at": "2022-04-19T14:12:34.841420Z",
@@ -471797,7 +472195,7 @@
471797
472195
  "github_url": "https://github.com/wty-ustc/HairCLIP",
471798
472196
  "paper_url": "https://arxiv.org/abs/2112.05142",
471799
472197
  "license_url": "https://github.com/wty-ustc/HairCLIP/blob/main/LICENSE",
471800
- "run_count": 43536,
472198
+ "run_count": 43542,
471801
472199
  "cover_image_url": "https://replicate.delivery/mgxm/2c45bef1-b58b-4b00-a413-fac0072e14ca/output.png",
471802
472200
  "default_example": {
471803
472201
  "completed_at": "2022-03-27T01:01:59.319704Z",
@@ -472773,7 +473171,7 @@
472773
473171
  "github_url": "https://github.com/paper11667/CLIPstyler",
472774
473172
  "paper_url": "https://arxiv.org/abs/2112.00374",
472775
473173
  "license_url": "https://github.com/cyclomon/CLIPstyler/blob/main/LICENSE",
472776
- "run_count": 17550,
473174
+ "run_count": 17551,
472777
473175
  "cover_image_url": "https://replicate.delivery/mgxm/59d6234b-3662-429d-93ba-637d849f1383/out.png",
472778
473176
  "default_example": {
472779
473177
  "completed_at": "2021-12-05T15:00:38.792184Z",