Transformer architecture implemented in TypeScript with WebGPU.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
nn/src/bool.show.ts

7 lines
207 B

import { g, l, n } from './core';
import { iif } from './bool';
import { fromString as _s } from './string';
n('bool.show');
export const show = g('show', l('b', iif._('b')._(_s('True'))._(_s('False'))));