Skip to content

wolanx/react-netron

Repository files navigation

react-netron

netron via react

Intro

View Neural Network model with graphs.

Install

# https://www.npmjs.com/package/@wolanx/react-netron
npm i @wolanx/react-netron

Prepare file

Demo - open with button

export default function Demo1 () {
    const ref = useRef(null)

    return (
        <div>
            <button onClick={() => ref.current?.open()}>Open Model...</button>
            <ReactOnnx ref={ref} width={'100%'} height={600} file={null}/>
        </div>
    )
}

Demo - open with link

export default function Demo2 () {
    const file = useOnnx('./model/demo.onnx')
    return <ReactOnnx width={'100%'} height={600} file={file}/>
}

About

View Neural Network model with graphs.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published