-
Notifications
You must be signed in to change notification settings - Fork 10
/
TensorFlowDelphi.dpr
80 lines (63 loc) · 2.91 KB
/
TensorFlowDelphi.dpr
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
program TensorFlowDelphi;
{$WARN DUPLICATE_CTOR_DTOR OFF}
uses
FastMM5,
Vcl.Forms,
untMain in 'untMain.pas' {frmMain},
Tensorflow in 'src\Tensorflow.pas',
Tensorflow.Utils in 'src\Tensorflow.Utils.pas',
NumPy.NDArray in 'src\NumpPy\NumPy.NDArray.pas',
Numpy.Axis in 'src\NumpPy\Numpy.Axis.pas',
TensorFlow.Ops in 'src\Operation\TensorFlow.Ops.pas',
TensorFlow.Variable in 'src\TensorFlow.Variable.pas',
Complex in 'src\lib\Complex.pas',
TensorFlow.DApi in 'src\Core\TensorFlow.DApi.pas',
TensorFlow.DApiBase in 'src\Core\TensorFlow.DApiBase.pas',
TF4D.Core.CApiEager in 'src\Core\TF4D.Core.CApiEager.pas',
TensorFlow.Tensor in 'src\TensorFlow.Tensor.pas',
TF4D.Core.CApi in 'src\Core\TF4D.Core.CApi.pas',
Numpy in 'src\NumpPy\Numpy.pas',
TensorFlow.OpDefLibrary in 'src\Operation\TensorFlow.OpDefLibrary.pas',
Tensorflow.Gradient in 'src\Gradient\Tensorflow.Gradient.pas',
TensorFlow.Slice in 'src\TensorFlow.Slice.pas',
Esempi in 'Esempi.pas',
Keras.Layer in 'src\Keras\Keras.Layer.pas',
TensorFlow.Initializer in 'src\Operation\TensorFlow.Initializer.pas',
TensorFlow.NnOps in 'src\Operation\NnOps\TensorFlow.NnOps.pas',
TensorFlow.Activation in 'src\Operation\TensorFlow.Activation.pas',
TensorFlow.Interfaces in 'src\TensorFlow.Interfaces.pas',
TensorFlow.Training in 'src\TensorFlow.Training.pas',
TensorFlow.math_grad in 'src\Gradient\TensorFlow.math_grad.pas',
Keras.Optimizer in 'src\Keras\Keras.Optimizer.pas',
Keras.Utils in 'src\Keras\Keras.Utils.pas',
Keras.KerasApi in 'src\Keras\Keras.KerasApi.pas',
TensorFlow.resource_variable_grad in 'src\Gradient\TensorFlow.resource_variable_grad.pas',
TensorFlow.array_grad in 'src\Gradient\TensorFlow.array_grad.pas',
Keras.Regularizers in 'src\Keras\Keras.Regularizers.pas',
Keras.LossFunc in 'src\Keras\Keras.LossFunc.pas',
Keras.Backend in 'src\Keras\Keras.Backend.pas',
Keras.Data in 'src\Keras\Keras.Data.pas',
Keras.Models in 'src\Keras\Keras.Models.pas',
Keras.Preprocessing in 'src\Keras\Keras.Preprocessing.pas',
Keras.LayersApi in 'src\Keras\Keras.LayersApi.pas',
Keras.MetricsApi in 'src\Keras\Keras.MetricsApi.pas',
Keras.Container in 'src\Keras\Keras.Container.pas',
TensorFlow.nn_grad in 'src\Gradient\TensorFlow.nn_grad.pas',
ProtoGen.Main in 'src\Proto\ProtoGen.Main.pas',
untModels in 'untModels.pas',
hdf5dll in 'src\lib\hdf5dll.pas',
Hdf5 in 'src\lib\Hdf5.pas',
Keras.Saving in 'src\Keras\Keras.Saving.pas',
Keras.Callbacks in 'src\Keras\Keras.Callbacks.pas',
Keras.Core in 'src\Keras\Keras.Core.pas',
TensorFlow.Core in 'src\TensorFlow.Core.pas',
TensorFlow.Proto in 'src\Proto\TensorFlow.Proto.pas',
TensorFlow.Operations in 'src\Operation\TensorFlow.Operations.pas';
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.Title := 'TensorFlow-Keras for Delphi - Test Unit';
Application.CreateForm(TfrmMain, frmMain);
Application.Run;
end.