CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
index.d.ts15 linesDownload Raw Back to encoding
1import type { EncodingName, Match } from '../match';2export interface Recogniser {3    match(input: Context): Match | null;4    name(input?: Context): EncodingName;5    language?(): string | undefined;6}7export interface Context {8    byteStats: number[];9    c1Bytes: boolean;10    rawInput: Uint8Array;11    rawLen: number;12    inputBytes: Uint8Array;13    inputLen: number;14}15 
basant307/AI_Governance_Project · CoolFace