/** * **spm** - Unsupervised text tokenizer for Neural Network-based text generation. * * @domain `google.com/sentencepiece` * @programs `spm_decode`, `spm_encode`, `spm_export_vocab`, `spm_normalize`, `spm_train` * @version `0.2.1` (5 versions available) * @versions From newest version to oldest. * * @install `launchpad install google.com/sentencepiece` * @buildDependencies `cmake.org@^3`, `python.org@~3.11`, `pip.pypa.io`, ... (+1 more) - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.googlecomsentencepiece * console.log(pkg.name) // "spm" * console.log(pkg.description) // "Unsupervised text tokenizer for Neural Network-..." * console.log(pkg.programs) // ["spm_decode", "spm_encode", ...] * console.log(pkg.versions[0]) // "0.2.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/google-com/sentencepiece.md * @see https://ts-pkgx.netlify.app/usage */ export declare const googlecomsentencepiecePackage: { /** * The display name of this package. */ name: 'spm'; /** * The canonical domain name for this package. */ domain: 'google.com/sentencepiece'; /** * Brief description of what this package does. */ description: 'Unsupervised text tokenizer for Neural Network-based text generation.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/google.com/sentencepiece/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/google/sentencepiece'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install google.com/sentencepiece'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +google.com/sentencepiece -- $SHELL -i'; launchpadInstallCommand: 'launchpad install google.com/sentencepiece'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['spm_decode', 'spm_encode', 'spm_export_vocab', 'spm_normalize', 'spm_train']; companions: readonly []; dependencies: readonly []; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['cmake.org@^3', 'python.org@~3.11', 'pip.pypa.io', 'protobuf.dev@25']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.2.1', '0.2.0', '0.1.99', '0.1.98', '0.1.97']; aliases: readonly [] }; export type GooglecomsentencepiecePackage = typeof googlecomsentencepiecePackage