import { fetchOrThrow } from './fetchOrThrow'; export async function fetchNetWeights(uri: string): Promise { return new Float32Array(await (await fetchOrThrow(uri)).arrayBuffer()) }