├── LICENSE ├── P4DTensorflowDemos ├── Demos │ ├── Machine_Learning_with_TensorFlow │ │ ├── Chapter02 │ │ │ ├── E00_overview.rtf │ │ │ ├── E01_types.py │ │ │ ├── E01_types_desc.rtf │ │ │ ├── E02_main.py │ │ │ ├── E02_main_desc.rtf │ │ │ ├── E03_interactive_session.py │ │ │ ├── E03_interactive_session_desc.rtf │ │ │ ├── E04_log_example.py │ │ │ ├── E04_log_example_desc.rtf │ │ │ ├── E05_spikes.py │ │ │ ├── E05_spikes_desc.rtf │ │ │ ├── E06_saving_vars.py │ │ │ ├── E06_saving_vars_desc.rtf │ │ │ ├── E06_saving_vars_dlg.xml │ │ │ ├── E07_loading_vars.py │ │ │ ├── E07_loading_vars_desc.rtf │ │ │ ├── E07_loading_vars_dlg.xml │ │ │ ├── E08_moving_avg.py │ │ │ ├── E08_moving_avg_desc.rtf │ │ │ ├── E09_using_queues.py │ │ │ ├── E09_using_queues_desc.rtf │ │ │ ├── E10_queue_text_from_file.py │ │ │ └── E10_queue_text_from_file_desc.rtf │ │ ├── Chapter03 │ │ │ ├── E00_overview.rtf │ │ │ ├── E01_linear_regression.py │ │ │ ├── E01_linear_regression.rtf │ │ │ ├── E02_polynomial_regression.py │ │ │ ├── E02_polynomial_regression.rtf │ │ │ ├── E03_regularization.py │ │ │ ├── E03_regularization.rtf │ │ │ └── data_reader.py │ │ ├── Chapter04 │ │ │ ├── E00_overview.rtf │ │ │ ├── E01_linear_regression_classification.py │ │ │ ├── E01_linear_regression_classification.rtf │ │ │ ├── E02_logistic_regression.py │ │ │ ├── E02_logistic_regression.rtf │ │ │ ├── E03_logistic_regression_2d.py │ │ │ ├── E03_logistic_regression_2d.rtf │ │ │ ├── E04_softmax classification.py │ │ │ └── E04_softmax classification.rtf │ │ ├── Chapter05 │ │ │ ├── E00_overview.rtf │ │ │ ├── E01_clustering.py │ │ │ ├── E01_clustering.rtf │ │ │ ├── E02_segmentation.py │ │ │ ├── E02_segmentation.rtf │ │ │ ├── E03_self_org_map.py │ │ │ └── E03_self_org_map.rtf │ │ ├── Chapter06 │ │ │ ├── E00_overview.rtf │ │ │ ├── E01_forward_algorithm.py │ │ │ ├── E01_forward_algorithm.rtf │ │ │ ├── E02_viterbi_decode.py │ │ │ └── E02_viterbi_decode.rtf │ │ └── Chapter07 │ │ │ ├── E00_overview.rtf │ │ │ ├── E01_autoencoder.py │ │ │ ├── E01_autoencoder.rtf │ │ │ ├── E02_autoencoder_with_images.py │ │ │ ├── E02_autoencoder_with_images.rtf │ │ │ ├── E03_denoising_autoencoder.py │ │ │ ├── E03_denoising_autoencoder.rtf │ │ │ └── autoencoder.py │ └── TFDelphiProps │ │ ├── E00_overview.rtf │ │ ├── E01_props.py │ │ ├── E01_props_desc.rtf │ │ ├── E01_props_dlg.xml │ │ ├── E02_props.py │ │ ├── E02_props_desc.rtf │ │ ├── E02_props_dlg.xml │ │ ├── E03_props.py │ │ ├── E03_props_desc.rtf │ │ ├── E03_props_dlg.xml │ │ ├── E04_props.py │ │ ├── E04_props_desc.rtf │ │ ├── E04_props_dlg.xml │ │ ├── E05_props.py │ │ ├── E05_props_desc.rtf │ │ ├── E05_props_dlg.xml │ │ ├── E06_props.py │ │ ├── E06_props_desc.rtf │ │ ├── E06_props_dlg.xml │ │ ├── E07_props.py │ │ ├── E07_props_desc.rtf │ │ └── E07_props_dlg.xml ├── P4DDemoControl │ ├── P4DDemoControl.dpr │ ├── P4DDemoControl.dproj │ ├── P4DDemoControl.ico │ ├── P4DDemoControl.res │ ├── fmMain.dfm │ └── fmMain.pas ├── audio_cough_1.wav ├── big.txt ├── runP4DDemoControl_for_TFDelphiProps.bat ├── runP4DDemoControl_for_TF_Chapter02.bat ├── runP4DDemoControl_for_TF_Chapter03.bat ├── runP4DDemoControl_for_TF_Chapter04.bat ├── runP4DDemoControl_for_TF_Chapter05.bat ├── runP4DDemoControl_for_TF_Chapter06.bat └── runP4DDemoControl_for_TF_Chapter07.bat ├── README.md ├── api ├── TensorFlow.DApi.pas ├── TensorFlow.DApiBase.pas ├── TensorFlow.DApiOperations.pas ├── TensorFlow.LowLevelAPI.pas └── TensorFlow._Helpers.pas ├── api_tests ├── TensorFlow.DApiUnitTests.pas ├── TensorFlow.LowLevelUnitTests.pas ├── TensorFlow.LowLevelUnitTestsUtil.pas ├── TestWithConsoleDUnitX │ ├── ConsoleTestTensorFlow.dpr │ ├── ConsoleTestTensorFlow.dproj │ ├── ConsoleTestTensorFlow.res │ └── TestTensorFlow.res ├── TestWithFMXUnitX │ ├── DUNitX.Loggers.GUIX.fmx │ ├── DUNitX.Loggers.GUIX.pas │ ├── DUnitX.MemoryLeaks.inc │ ├── DUnitX.Stacktrace.inc │ ├── DUnitX.inc │ ├── FMXTestTensorFlow.dpr │ ├── FMXTestTensorFlow.dproj │ ├── FMXTestTensorFlow.res │ └── TestTensorFlow.res └── TestWithVCLUnitX │ ├── DUnitX.Loggers.GUI.VCL.RichEdit.pas │ ├── DUnitX.Loggers.GUI.VCL.dfm │ ├── DUnitX.Loggers.GUI.VCL.pas │ ├── DUnitX.MemoryLeakMonitor.FastMM4.pas │ ├── DUnitX.ResStrs.pas │ ├── DUnitX.Stacktrace.inc │ ├── DUnitX.inc │ ├── HexDataInterpreter.dfm │ ├── HexDataInterpreter.pas │ ├── VCLTestTensorFlow.dpr │ ├── VCLTestTensorFlow.dproj │ └── VCLTestTensorFlow.res ├── bin ├── FastMM_FullDebugMode64.dll ├── SavedModels │ ├── half_plus_two │ │ └── 00000123 │ │ │ ├── assets │ │ │ └── foo.txt │ │ │ ├── saved_model.pb │ │ │ └── variables │ │ │ ├── variables.data-00000-of-00001 │ │ │ └── variables.index │ ├── half_plus_two_main_op │ │ └── 00000123 │ │ │ ├── assets │ │ │ └── foo.txt │ │ │ ├── saved_model.pb │ │ │ └── variables │ │ │ ├── variables.data-00000-of-00001 │ │ │ └── variables.index │ └── half_plus_two_pbtxt │ │ └── 00000123 │ │ ├── assets │ │ └── foo.txt │ │ ├── saved_model.pbtxt │ │ └── variables │ │ ├── variables.data-00000-of-00001 │ │ └── variables.index └── tensorflow.dll ├── c_api_extensions ├── c_api_ex.cc └── c_api_ex.h ├── clean.bat └── third_party ├── ATViewer ├── ATBinHex.pas ├── ATBinHexOptions.inc ├── ATBinHexPrint.inc ├── ATBinHexResources.res ├── ATFileNotification.pas ├── ATFileNotificationSimple.pas ├── ATStreamSearch.pas ├── ATStreamSearchOptions.inc ├── ATViewerMsg.pas ├── ATViewerOptions.inc ├── ATxClipboard.pas ├── ATxCodepageList.pas ├── ATxCodepages.pas ├── ATxFProc.pas ├── ATxSHex.pas ├── ATxSProc.pas ├── ATxTimer.pas └── ATxUtf8Detect.pas └── FastMM4 ├── FastMM4.pas ├── FastMM4Messages.pas └── FastMM4Options.inc /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/LICENSE -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E00_overview.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E00_overview.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E01_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E01_types.py -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E01_types_desc.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E01_types_desc.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E02_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E02_main.py -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E02_main_desc.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E02_main_desc.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E03_interactive_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E03_interactive_session.py -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E03_interactive_session_desc.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E03_interactive_session_desc.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E04_log_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E04_log_example.py -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E04_log_example_desc.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E04_log_example_desc.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E05_spikes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E05_spikes.py -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E05_spikes_desc.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E05_spikes_desc.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E06_saving_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E06_saving_vars.py -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E06_saving_vars_desc.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E06_saving_vars_desc.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E06_saving_vars_dlg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E06_saving_vars_dlg.xml -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E07_loading_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E07_loading_vars.py -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E07_loading_vars_desc.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E07_loading_vars_desc.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E07_loading_vars_dlg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E07_loading_vars_dlg.xml -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E08_moving_avg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E08_moving_avg.py -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E08_moving_avg_desc.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E08_moving_avg_desc.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E09_using_queues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E09_using_queues.py -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E09_using_queues_desc.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E09_using_queues_desc.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E10_queue_text_from_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E10_queue_text_from_file.py -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E10_queue_text_from_file_desc.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter02/E10_queue_text_from_file_desc.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter03/E00_overview.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter03/E00_overview.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter03/E01_linear_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter03/E01_linear_regression.py -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter03/E01_linear_regression.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter03/E01_linear_regression.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter03/E02_polynomial_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter03/E02_polynomial_regression.py -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter03/E02_polynomial_regression.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter03/E02_polynomial_regression.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter03/E03_regularization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter03/E03_regularization.py -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter03/E03_regularization.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter03/E03_regularization.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter03/data_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter03/data_reader.py -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter04/E00_overview.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter04/E00_overview.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter04/E01_linear_regression_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter04/E01_linear_regression_classification.py -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter04/E01_linear_regression_classification.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter04/E01_linear_regression_classification.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter04/E02_logistic_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter04/E02_logistic_regression.py -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter04/E02_logistic_regression.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter04/E02_logistic_regression.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter04/E03_logistic_regression_2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter04/E03_logistic_regression_2d.py -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter04/E03_logistic_regression_2d.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter04/E03_logistic_regression_2d.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter04/E04_softmax classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter04/E04_softmax classification.py -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter04/E04_softmax classification.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter04/E04_softmax classification.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter05/E00_overview.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter05/E00_overview.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter05/E01_clustering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter05/E01_clustering.py -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter05/E01_clustering.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter05/E01_clustering.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter05/E02_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter05/E02_segmentation.py -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter05/E02_segmentation.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter05/E02_segmentation.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter05/E03_self_org_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter05/E03_self_org_map.py -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter05/E03_self_org_map.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter05/E03_self_org_map.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter06/E00_overview.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter06/E00_overview.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter06/E01_forward_algorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter06/E01_forward_algorithm.py -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter06/E01_forward_algorithm.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter06/E01_forward_algorithm.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter06/E02_viterbi_decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter06/E02_viterbi_decode.py -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter06/E02_viterbi_decode.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter06/E02_viterbi_decode.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter07/E00_overview.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter07/E00_overview.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter07/E01_autoencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter07/E01_autoencoder.py -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter07/E01_autoencoder.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter07/E01_autoencoder.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter07/E02_autoencoder_with_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter07/E02_autoencoder_with_images.py -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter07/E02_autoencoder_with_images.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter07/E02_autoencoder_with_images.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter07/E03_denoising_autoencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter07/E03_denoising_autoencoder.py -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter07/E03_denoising_autoencoder.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter07/E03_denoising_autoencoder.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter07/autoencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/Machine_Learning_with_TensorFlow/Chapter07/autoencoder.py -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/TFDelphiProps/E00_overview.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/TFDelphiProps/E00_overview.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/TFDelphiProps/E01_props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/TFDelphiProps/E01_props.py -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/TFDelphiProps/E01_props_desc.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/TFDelphiProps/E01_props_desc.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/TFDelphiProps/E01_props_dlg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/TFDelphiProps/E01_props_dlg.xml -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/TFDelphiProps/E02_props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/TFDelphiProps/E02_props.py -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/TFDelphiProps/E02_props_desc.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/TFDelphiProps/E02_props_desc.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/TFDelphiProps/E02_props_dlg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/TFDelphiProps/E02_props_dlg.xml -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/TFDelphiProps/E03_props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/TFDelphiProps/E03_props.py -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/TFDelphiProps/E03_props_desc.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/TFDelphiProps/E03_props_desc.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/TFDelphiProps/E03_props_dlg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/TFDelphiProps/E03_props_dlg.xml -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/TFDelphiProps/E04_props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/TFDelphiProps/E04_props.py -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/TFDelphiProps/E04_props_desc.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/TFDelphiProps/E04_props_desc.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/TFDelphiProps/E04_props_dlg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/TFDelphiProps/E04_props_dlg.xml -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/TFDelphiProps/E05_props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/TFDelphiProps/E05_props.py -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/TFDelphiProps/E05_props_desc.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/TFDelphiProps/E05_props_desc.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/TFDelphiProps/E05_props_dlg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/TFDelphiProps/E05_props_dlg.xml -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/TFDelphiProps/E06_props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/TFDelphiProps/E06_props.py -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/TFDelphiProps/E06_props_desc.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/TFDelphiProps/E06_props_desc.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/TFDelphiProps/E06_props_dlg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/TFDelphiProps/E06_props_dlg.xml -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/TFDelphiProps/E07_props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/TFDelphiProps/E07_props.py -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/TFDelphiProps/E07_props_desc.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/TFDelphiProps/E07_props_desc.rtf -------------------------------------------------------------------------------- /P4DTensorflowDemos/Demos/TFDelphiProps/E07_props_dlg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/Demos/TFDelphiProps/E07_props_dlg.xml -------------------------------------------------------------------------------- /P4DTensorflowDemos/P4DDemoControl/P4DDemoControl.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/P4DDemoControl/P4DDemoControl.dpr -------------------------------------------------------------------------------- /P4DTensorflowDemos/P4DDemoControl/P4DDemoControl.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/P4DDemoControl/P4DDemoControl.dproj -------------------------------------------------------------------------------- /P4DTensorflowDemos/P4DDemoControl/P4DDemoControl.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/P4DDemoControl/P4DDemoControl.ico -------------------------------------------------------------------------------- /P4DTensorflowDemos/P4DDemoControl/P4DDemoControl.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/P4DDemoControl/P4DDemoControl.res -------------------------------------------------------------------------------- /P4DTensorflowDemos/P4DDemoControl/fmMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/P4DDemoControl/fmMain.dfm -------------------------------------------------------------------------------- /P4DTensorflowDemos/P4DDemoControl/fmMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/P4DDemoControl/fmMain.pas -------------------------------------------------------------------------------- /P4DTensorflowDemos/audio_cough_1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/audio_cough_1.wav -------------------------------------------------------------------------------- /P4DTensorflowDemos/big.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/P4DTensorflowDemos/big.txt -------------------------------------------------------------------------------- /P4DTensorflowDemos/runP4DDemoControl_for_TFDelphiProps.bat: -------------------------------------------------------------------------------- 1 | P4DDemoControl.exe -Dir Demos\TFDelphiProps 2 | Pause -------------------------------------------------------------------------------- /P4DTensorflowDemos/runP4DDemoControl_for_TF_Chapter02.bat: -------------------------------------------------------------------------------- 1 | P4DDemoControl.exe -Dir Demos\Machine_Learning_with_TensorFlow\Chapter02 2 | Pause -------------------------------------------------------------------------------- /P4DTensorflowDemos/runP4DDemoControl_for_TF_Chapter03.bat: -------------------------------------------------------------------------------- 1 | P4DDemoControl.exe -Dir Demos\Machine_Learning_with_TensorFlow\Chapter03 2 | Pause -------------------------------------------------------------------------------- /P4DTensorflowDemos/runP4DDemoControl_for_TF_Chapter04.bat: -------------------------------------------------------------------------------- 1 | P4DDemoControl.exe -Dir Demos\Machine_Learning_with_TensorFlow\Chapter04 2 | Pause -------------------------------------------------------------------------------- /P4DTensorflowDemos/runP4DDemoControl_for_TF_Chapter05.bat: -------------------------------------------------------------------------------- 1 | P4DDemoControl.exe -Dir Demos\Machine_Learning_with_TensorFlow\Chapter05 2 | Pause -------------------------------------------------------------------------------- /P4DTensorflowDemos/runP4DDemoControl_for_TF_Chapter06.bat: -------------------------------------------------------------------------------- 1 | P4DDemoControl.exe -Dir Demos\Machine_Learning_with_TensorFlow\Chapter06 2 | Pause -------------------------------------------------------------------------------- /P4DTensorflowDemos/runP4DDemoControl_for_TF_Chapter07.bat: -------------------------------------------------------------------------------- 1 | P4DDemoControl.exe -Dir Demos\Machine_Learning_with_TensorFlow\Chapter07 2 | Pause -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/README.md -------------------------------------------------------------------------------- /api/TensorFlow.DApi.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/api/TensorFlow.DApi.pas -------------------------------------------------------------------------------- /api/TensorFlow.DApiBase.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/api/TensorFlow.DApiBase.pas -------------------------------------------------------------------------------- /api/TensorFlow.DApiOperations.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/api/TensorFlow.DApiOperations.pas -------------------------------------------------------------------------------- /api/TensorFlow.LowLevelAPI.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/api/TensorFlow.LowLevelAPI.pas -------------------------------------------------------------------------------- /api/TensorFlow._Helpers.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/api/TensorFlow._Helpers.pas -------------------------------------------------------------------------------- /api_tests/TensorFlow.DApiUnitTests.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/api_tests/TensorFlow.DApiUnitTests.pas -------------------------------------------------------------------------------- /api_tests/TensorFlow.LowLevelUnitTests.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/api_tests/TensorFlow.LowLevelUnitTests.pas -------------------------------------------------------------------------------- /api_tests/TensorFlow.LowLevelUnitTestsUtil.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/api_tests/TensorFlow.LowLevelUnitTestsUtil.pas -------------------------------------------------------------------------------- /api_tests/TestWithConsoleDUnitX/ConsoleTestTensorFlow.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/api_tests/TestWithConsoleDUnitX/ConsoleTestTensorFlow.dpr -------------------------------------------------------------------------------- /api_tests/TestWithConsoleDUnitX/ConsoleTestTensorFlow.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/api_tests/TestWithConsoleDUnitX/ConsoleTestTensorFlow.dproj -------------------------------------------------------------------------------- /api_tests/TestWithConsoleDUnitX/ConsoleTestTensorFlow.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/api_tests/TestWithConsoleDUnitX/ConsoleTestTensorFlow.res -------------------------------------------------------------------------------- /api_tests/TestWithConsoleDUnitX/TestTensorFlow.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/api_tests/TestWithConsoleDUnitX/TestTensorFlow.res -------------------------------------------------------------------------------- /api_tests/TestWithFMXUnitX/DUNitX.Loggers.GUIX.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/api_tests/TestWithFMXUnitX/DUNitX.Loggers.GUIX.fmx -------------------------------------------------------------------------------- /api_tests/TestWithFMXUnitX/DUNitX.Loggers.GUIX.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/api_tests/TestWithFMXUnitX/DUNitX.Loggers.GUIX.pas -------------------------------------------------------------------------------- /api_tests/TestWithFMXUnitX/DUnitX.MemoryLeaks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/api_tests/TestWithFMXUnitX/DUnitX.MemoryLeaks.inc -------------------------------------------------------------------------------- /api_tests/TestWithFMXUnitX/DUnitX.Stacktrace.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/api_tests/TestWithFMXUnitX/DUnitX.Stacktrace.inc -------------------------------------------------------------------------------- /api_tests/TestWithFMXUnitX/DUnitX.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/api_tests/TestWithFMXUnitX/DUnitX.inc -------------------------------------------------------------------------------- /api_tests/TestWithFMXUnitX/FMXTestTensorFlow.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/api_tests/TestWithFMXUnitX/FMXTestTensorFlow.dpr -------------------------------------------------------------------------------- /api_tests/TestWithFMXUnitX/FMXTestTensorFlow.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/api_tests/TestWithFMXUnitX/FMXTestTensorFlow.dproj -------------------------------------------------------------------------------- /api_tests/TestWithFMXUnitX/FMXTestTensorFlow.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/api_tests/TestWithFMXUnitX/FMXTestTensorFlow.res -------------------------------------------------------------------------------- /api_tests/TestWithFMXUnitX/TestTensorFlow.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/api_tests/TestWithFMXUnitX/TestTensorFlow.res -------------------------------------------------------------------------------- /api_tests/TestWithVCLUnitX/DUnitX.Loggers.GUI.VCL.RichEdit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/api_tests/TestWithVCLUnitX/DUnitX.Loggers.GUI.VCL.RichEdit.pas -------------------------------------------------------------------------------- /api_tests/TestWithVCLUnitX/DUnitX.Loggers.GUI.VCL.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/api_tests/TestWithVCLUnitX/DUnitX.Loggers.GUI.VCL.dfm -------------------------------------------------------------------------------- /api_tests/TestWithVCLUnitX/DUnitX.Loggers.GUI.VCL.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/api_tests/TestWithVCLUnitX/DUnitX.Loggers.GUI.VCL.pas -------------------------------------------------------------------------------- /api_tests/TestWithVCLUnitX/DUnitX.MemoryLeakMonitor.FastMM4.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/api_tests/TestWithVCLUnitX/DUnitX.MemoryLeakMonitor.FastMM4.pas -------------------------------------------------------------------------------- /api_tests/TestWithVCLUnitX/DUnitX.ResStrs.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/api_tests/TestWithVCLUnitX/DUnitX.ResStrs.pas -------------------------------------------------------------------------------- /api_tests/TestWithVCLUnitX/DUnitX.Stacktrace.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/api_tests/TestWithVCLUnitX/DUnitX.Stacktrace.inc -------------------------------------------------------------------------------- /api_tests/TestWithVCLUnitX/DUnitX.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/api_tests/TestWithVCLUnitX/DUnitX.inc -------------------------------------------------------------------------------- /api_tests/TestWithVCLUnitX/HexDataInterpreter.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/api_tests/TestWithVCLUnitX/HexDataInterpreter.dfm -------------------------------------------------------------------------------- /api_tests/TestWithVCLUnitX/HexDataInterpreter.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/api_tests/TestWithVCLUnitX/HexDataInterpreter.pas -------------------------------------------------------------------------------- /api_tests/TestWithVCLUnitX/VCLTestTensorFlow.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/api_tests/TestWithVCLUnitX/VCLTestTensorFlow.dpr -------------------------------------------------------------------------------- /api_tests/TestWithVCLUnitX/VCLTestTensorFlow.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/api_tests/TestWithVCLUnitX/VCLTestTensorFlow.dproj -------------------------------------------------------------------------------- /api_tests/TestWithVCLUnitX/VCLTestTensorFlow.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/api_tests/TestWithVCLUnitX/VCLTestTensorFlow.res -------------------------------------------------------------------------------- /bin/FastMM_FullDebugMode64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/bin/FastMM_FullDebugMode64.dll -------------------------------------------------------------------------------- /bin/SavedModels/half_plus_two/00000123/assets/foo.txt: -------------------------------------------------------------------------------- 1 | asset-file-contents -------------------------------------------------------------------------------- /bin/SavedModels/half_plus_two/00000123/saved_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/bin/SavedModels/half_plus_two/00000123/saved_model.pb -------------------------------------------------------------------------------- /bin/SavedModels/half_plus_two/00000123/variables/variables.data-00000-of-00001: -------------------------------------------------------------------------------- 1 | ?@@@ -------------------------------------------------------------------------------- /bin/SavedModels/half_plus_two/00000123/variables/variables.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/bin/SavedModels/half_plus_two/00000123/variables/variables.index -------------------------------------------------------------------------------- /bin/SavedModels/half_plus_two_main_op/00000123/assets/foo.txt: -------------------------------------------------------------------------------- 1 | asset-file-contents -------------------------------------------------------------------------------- /bin/SavedModels/half_plus_two_main_op/00000123/saved_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/bin/SavedModels/half_plus_two_main_op/00000123/saved_model.pb -------------------------------------------------------------------------------- /bin/SavedModels/half_plus_two_main_op/00000123/variables/variables.data-00000-of-00001: -------------------------------------------------------------------------------- 1 | ?@@@ -------------------------------------------------------------------------------- /bin/SavedModels/half_plus_two_main_op/00000123/variables/variables.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/bin/SavedModels/half_plus_two_main_op/00000123/variables/variables.index -------------------------------------------------------------------------------- /bin/SavedModels/half_plus_two_pbtxt/00000123/assets/foo.txt: -------------------------------------------------------------------------------- 1 | asset-file-contents -------------------------------------------------------------------------------- /bin/SavedModels/half_plus_two_pbtxt/00000123/saved_model.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/bin/SavedModels/half_plus_two_pbtxt/00000123/saved_model.pbtxt -------------------------------------------------------------------------------- /bin/SavedModels/half_plus_two_pbtxt/00000123/variables/variables.data-00000-of-00001: -------------------------------------------------------------------------------- 1 | ?@@@ -------------------------------------------------------------------------------- /bin/SavedModels/half_plus_two_pbtxt/00000123/variables/variables.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/bin/SavedModels/half_plus_two_pbtxt/00000123/variables/variables.index -------------------------------------------------------------------------------- /bin/tensorflow.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/bin/tensorflow.dll -------------------------------------------------------------------------------- /c_api_extensions/c_api_ex.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/c_api_extensions/c_api_ex.cc -------------------------------------------------------------------------------- /c_api_extensions/c_api_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/c_api_extensions/c_api_ex.h -------------------------------------------------------------------------------- /clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/clean.bat -------------------------------------------------------------------------------- /third_party/ATViewer/ATBinHex.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/third_party/ATViewer/ATBinHex.pas -------------------------------------------------------------------------------- /third_party/ATViewer/ATBinHexOptions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/third_party/ATViewer/ATBinHexOptions.inc -------------------------------------------------------------------------------- /third_party/ATViewer/ATBinHexPrint.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/third_party/ATViewer/ATBinHexPrint.inc -------------------------------------------------------------------------------- /third_party/ATViewer/ATBinHexResources.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/third_party/ATViewer/ATBinHexResources.res -------------------------------------------------------------------------------- /third_party/ATViewer/ATFileNotification.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/third_party/ATViewer/ATFileNotification.pas -------------------------------------------------------------------------------- /third_party/ATViewer/ATFileNotificationSimple.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/third_party/ATViewer/ATFileNotificationSimple.pas -------------------------------------------------------------------------------- /third_party/ATViewer/ATStreamSearch.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/third_party/ATViewer/ATStreamSearch.pas -------------------------------------------------------------------------------- /third_party/ATViewer/ATStreamSearchOptions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/third_party/ATViewer/ATStreamSearchOptions.inc -------------------------------------------------------------------------------- /third_party/ATViewer/ATViewerMsg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/third_party/ATViewer/ATViewerMsg.pas -------------------------------------------------------------------------------- /third_party/ATViewer/ATViewerOptions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/third_party/ATViewer/ATViewerOptions.inc -------------------------------------------------------------------------------- /third_party/ATViewer/ATxClipboard.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/third_party/ATViewer/ATxClipboard.pas -------------------------------------------------------------------------------- /third_party/ATViewer/ATxCodepageList.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/third_party/ATViewer/ATxCodepageList.pas -------------------------------------------------------------------------------- /third_party/ATViewer/ATxCodepages.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/third_party/ATViewer/ATxCodepages.pas -------------------------------------------------------------------------------- /third_party/ATViewer/ATxFProc.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/third_party/ATViewer/ATxFProc.pas -------------------------------------------------------------------------------- /third_party/ATViewer/ATxSHex.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/third_party/ATViewer/ATxSHex.pas -------------------------------------------------------------------------------- /third_party/ATViewer/ATxSProc.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/third_party/ATViewer/ATxSProc.pas -------------------------------------------------------------------------------- /third_party/ATViewer/ATxTimer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/third_party/ATViewer/ATxTimer.pas -------------------------------------------------------------------------------- /third_party/ATViewer/ATxUtf8Detect.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/third_party/ATViewer/ATxUtf8Detect.pas -------------------------------------------------------------------------------- /third_party/FastMM4/FastMM4.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/third_party/FastMM4/FastMM4.pas -------------------------------------------------------------------------------- /third_party/FastMM4/FastMM4Messages.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/third_party/FastMM4/FastMM4Messages.pas -------------------------------------------------------------------------------- /third_party/FastMM4/FastMM4Options.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hartmutdavid/TensorFlow4Delphi/HEAD/third_party/FastMM4/FastMM4Options.inc --------------------------------------------------------------------------------