-
Notifications
You must be signed in to change notification settings - Fork 10
/
untMain.dfm
102 lines (102 loc) · 2.02 KB
/
untMain.dfm
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
object frmMain: TfrmMain
Left = 0
Top = 0
Caption = 'TensorFlow for Delphi'
ClientHeight = 568
ClientWidth = 768
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OnShow = FormShow
TextHeight = 13
object pnl1: TPanel
Left = 0
Top = 527
Width = 768
Height = 41
Align = alBottom
TabOrder = 0
ExplicitTop = 526
ExplicitWidth = 764
object btnModels: TBitBtn
Left = 678
Top = 8
Width = 75
Height = 25
Caption = 'Test Models'
TabOrder = 0
OnClick = btnModelsClick
end
object btnPreProcess: TBitBtn
Left = 551
Top = 8
Width = 113
Height = 25
Caption = 'PreProcessing'
TabOrder = 1
OnClick = btnPreProcessClick
end
object btnKerasLayers: TBitBtn
Left = 439
Top = 6
Width = 106
Height = 25
Caption = 'Keras Layers'
TabOrder = 2
OnClick = btnKerasLayersClick
end
object btnLinReg1: TBitBtn
Left = 271
Top = 8
Width = 162
Height = 25
Caption = 'Linear Regression -Eager mode-'
TabOrder = 3
OnClick = btnLinReg1Click
end
object btnLinReg: TBitBtn
Left = 103
Top = 8
Width = 162
Height = 25
Caption = 'Linear Regression -Graph mode-'
TabOrder = 4
OnClick = btnLinRegClick
end
object btnTest: TBitBtn
Left = 8
Top = 8
Width = 89
Height = 25
Caption = 'Test'
TabOrder = 5
OnClick = btnTestClick
end
end
object pnl2: TPanel
Left = 0
Top = 0
Width = 768
Height = 527
Align = alClient
TabOrder = 1
ExplicitWidth = 764
ExplicitHeight = 526
object mmo1: TMemo
Left = 1
Top = 1
Width = 766
Height = 525
Align = alClient
Lines.Strings = (
'mmo1')
ScrollBars = ssVertical
TabOrder = 0
ExplicitWidth = 762
ExplicitHeight = 524
end
end
end