-
Notifications
You must be signed in to change notification settings - Fork 0
/
train-deployment.yaml
113 lines (112 loc) · 2.34 KB
/
train-deployment.yaml
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
###
### A complete description of a Prefect Deployment for flow 'train'
###
name: iris-train
description: null
version: bf6dbd296f6b59a229b97c1103942565
# The work queue that will handle this deployment's runs
work_queue_name: default
tags: []
parameters: {}
schedule: null
infra_overrides: {}
###
### DO NOT EDIT BELOW THIS LINE
###
flow_name: train
manifest_path: null
infrastructure:
type: process
env: {}
labels: {}
name: null
command: null
stream_output: true
working_dir: null
_block_document_id: e7f2eabe-6e0f-475f-8086-3340bfa9423f
_block_document_name: anonymous-024d2045-529b-4c76-8d9e-87a7f88bd42f
_is_anonymous: true
block_type_slug: process
_block_type_slug: process
storage: null
path: C:\Users\91982\Desktop\GOKU\iris-prefect
entrypoint: src\train_model.py:train
parameter_openapi_schema:
title: Parameters
type: object
properties:
data_location:
title: data_location
default:
raw_location: data/raw
raw_file: iris.csv
process_location: data/processed
allOf:
- $ref: '#/definitions/DataLocation'
svc_params:
title: svc_params
default:
C:
- 0.1
- 1
- 10
- 100
- 1000
gamma:
- 1
- 0.1
- 0.01
- 0.001
- 0.0001
allOf:
- $ref: '#/definitions/SVC_Params'
required: null
definitions:
DataLocation:
title: DataLocation
type: object
properties:
raw_location:
title: Raw Location
default: data/raw
enum:
- data/raw
- data/processed
type: string
raw_file:
title: Raw File
default: iris.csv
type: string
process_location:
title: Process Location
default: data/processed
enum:
- data/raw
- data/processed
type: string
SVC_Params:
title: SVC_Params
type: object
properties:
C:
title: C
default:
- 0.1
- 1
- 10
- 100
- 1000
type: array
items:
type: number
gamma:
title: Gamma
default:
- 1
- 0.1
- 0.01
- 0.001
- 0.0001
type: array
items:
type: number