YAML Metadata Warning: empty or missing yaml metadata in repo card (https://huggingface.co/docs/hub/model-cards#model-card-metadata)
const tf = require('@tensorflow/tfjs');
const tfnode = require('@tensorflow/tfjs-node');

async function loadModel(){
    const handler = tfnode.io.fileSystem('checkpoint/model.json');
    const model = await tf.loadGraphModel(handler);
    console.log("Model loaded")

    const zeros = tf.randomNormal([8, 3, 224, 224]);
    const out = model.predict(zeros);
    console.log(out);
    out.print();
}

loadModel();
Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model is not currently available via any of the supported Inference Providers.
The model cannot be deployed to the HF Inference API: The model has no library tag.