-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontainer.yml
63 lines (56 loc) · 1.25 KB
/
container.yml
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
62
63
# Container.yml for this `brane_visualize` package
# Basic information about this package
name: brane_visualize
version: 1.0.0
kind: ecu
# These files are part of this package
files:
- visualize.py
# Defines the file to call whenever a function is called
entrypoint:
# 'task' means the script should be run synchronously (i.e., blocking)
kind: task
exec: visualize.py
# Define the dependencies (as Ubuntu packages)
dependencies:
- python3
- python3-yaml
- python3-pip
# Python packages required for this package
install:
- pip3 install pandas numpy seaborn matplotlib scikit-learn
# details of functions of the package with input and output details
actions:
# Creates the image folder
create_img:
command:
args:
- create_img
input:
output:
- name: status
type: string
# Creates the graph for EDA tasks
visualize_EDA:
command:
args:
- visualize_EDA
input:
- name: name
type: string
output:
- name: status
type: integer
# Creates the graph for visualization
visualize_results:
command:
args:
- visualize_results
input:
- name: name
type: string
- name: mode
type: string
output:
- name: status
type: integer