Skip to content

Latest commit

 

History

History
45 lines (32 loc) · 904 Bytes

README.md

File metadata and controls

45 lines (32 loc) · 904 Bytes

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}/>
}