From 7f961461bd73aa2f88b5c09f148fc24ba4ad9d9d Mon Sep 17 00:00:00 2001 From: Gabriela Cervantes Date: Wed, 12 Jul 2023 16:37:15 +0000 Subject: [PATCH] tests: Add machine learning README This PR adds machine learning README. Signed-off-by: Gabriela Cervantes --- tests/metrics/README.md | 2 ++ tests/metrics/machine_learning/README.md | 29 ++++++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 tests/metrics/machine_learning/README.md diff --git a/tests/metrics/README.md b/tests/metrics/README.md index d017ed3fc6..d67904620c 100644 --- a/tests/metrics/README.md +++ b/tests/metrics/README.md @@ -79,6 +79,8 @@ Test relating to measure reading and writing against clusters. Tests relating with TensorFlow and Pytorch implementations of several popular convolutional models. +For further details see the [machine learning tests documentation](machine_learning). + ## Saving Results In order to ensure continuity, and thus testing and historical tracking of results, diff --git a/tests/metrics/machine_learning/README.md b/tests/metrics/machine_learning/README.md new file mode 100644 index 0000000000..8c62b1566f --- /dev/null +++ b/tests/metrics/machine_learning/README.md @@ -0,0 +1,29 @@ +# Kata Containers Tensorflow Metrics + +Kata Containers provides a series of performance tests using the +TensorFlow reference benchmarks (tf_cnn_benchmarks). +The tf_cnn_benchmarks containers TensorFlow implementations of several +popular convolutional models. + +## Running the test + +Individual tests can be run by hand, for example: + +``` +$ cd metrics/machine_learning +$ ./tensorflow.sh 25 60 +``` +# Kata Containers Pytorch Metrics + +Kata Containers provides a series of performance tests using Pytorch +benchmarks based on a suite of Python high performance computing +benchmarks. + +## Running the Pytorch test + +Individual tests can be run by hand, for example: + +``` +$ cd metrics/machine_learning +$ ./tensorflow.sh 40 100 +```