├── .github ├── CODEOWNERS └── workflows │ └── cla.yml ├── CONTRIBUTING.md ├── LICENSE.md ├── MLPerf_Audit_Guidelines.adoc ├── README.md ├── inference_retraining_rules.adoc ├── inference_rules.adoc ├── model_ownership_guidelines.adoc ├── new_benchmark_checklist.md └── power_measurement.adoc /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlcommons/inference_policies/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/cla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlcommons/inference_policies/HEAD/.github/workflows/cla.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlcommons/inference_policies/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlcommons/inference_policies/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MLPerf_Audit_Guidelines.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlcommons/inference_policies/HEAD/MLPerf_Audit_Guidelines.adoc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlcommons/inference_policies/HEAD/README.md -------------------------------------------------------------------------------- /inference_retraining_rules.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlcommons/inference_policies/HEAD/inference_retraining_rules.adoc -------------------------------------------------------------------------------- /inference_rules.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlcommons/inference_policies/HEAD/inference_rules.adoc -------------------------------------------------------------------------------- /model_ownership_guidelines.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlcommons/inference_policies/HEAD/model_ownership_guidelines.adoc -------------------------------------------------------------------------------- /new_benchmark_checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlcommons/inference_policies/HEAD/new_benchmark_checklist.md -------------------------------------------------------------------------------- /power_measurement.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlcommons/inference_policies/HEAD/power_measurement.adoc --------------------------------------------------------------------------------