-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.yaml
More file actions
61 lines (57 loc) · 1.69 KB
/
Copy pathopenapi.yaml
File metadata and controls
61 lines (57 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
openapi: 3.0.1
info:
title: Random Augmentation
description: |
## Description
Random Augmentation helps you with augmenting images for your machine learning projects.<br>
It converts a set of input images into a new, much larger set of slightly altered images.
---
## How to use
* Pick image what you want to augment
* Excute and wait until the result shows up
---
Can`t download zipfile under swagger api.<br>
Try in [WebDemo](https://master-random-augmentation-wook-2.endpoint.ainize.ai)
version: 1.0.0
license:
name: "MIT"
url: ""
servers:
- url: 'https://master-random-augmentation-wook-2.endpoint.ainize.ai'
paths:
/augment:
post:
tags:
- Augmentor
requestBody:
required: true
description: "Pick images and number"
content:
multipart/form-data:
schema:
type: object
properties:
file:
description: Import Image Here
type: array
items:
type: string
format: binary
number:
description: How many augmented images you need (each input)
type: integer
format: int32
minimum: 1
maximum: 20
responses:
'200':
description: success
content:
application/octet-stream:
schema:
type: string
format: binary
'400':
description: Bad request (Can not load images)
'500':
description: Server Side Error