Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
289 views
in Technique[技术] by (71.8m points)

javascript - Unable to load the teachablemachine pose model which is stored locally

Here is the code snippet::

    const URL = "./poseModel/";
    const modelURL = URL + "model.json";
    const metadataURL = URL + "metadata.json";
    let customModel;
    try {
      customModel = await tmPose.load(modelURL, metadataURL);
    } catch(e) {
      console.log(e, "line 219");
    }

I am seeing the following error: [TypeError: Network request failed] line 219

question from:https://stackoverflow.com/questions/65624257/unable-to-load-the-teachablemachine-pose-model-which-is-stored-locally

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...