From 6699001e079e8e60addd85b47f9664a42e63dcd7 Mon Sep 17 00:00:00 2001 From: ramkrishna2910 Date: Fri, 8 Dec 2023 13:56:35 -0800 Subject: [PATCH] fix yaml path --- script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script.js b/script.js index b76c2dcaa..67d91c3da 100644 --- a/script.js +++ b/script.js @@ -52,7 +52,7 @@ document.addEventListener('DOMContentLoaded', function () { const parentDir = pathParts.slice(0, -1).join('/'); const yamlFile = yamlFiles.find(yaml => yaml.path === `${parentDir}/turnkey_stats.yaml`); if (yamlFile) { - return fetch(`https://raw.githubusercontent.com/onnx/models/raw/main/${yamlFile.path}`) + return fetch(`https://raw.githubusercontent.com/onnx/models/main/${yamlFile.path}`) .then(response => response.text()) .then(yamlText => ({ file, yamlText })) .catch(error => {