Ink
Package `bytelatent` as a module (#7)
2fdc6f3 unverified
raw
history blame contribute delete
371 Bytes
from setuptools import find_packages, setup
setup(
name="bytelatent",
version="0.1.0",
description="Byte Latent Transformer: Patches Scale Better Than Tokens",
author="Meta Platforms, Inc. and affiliates.",
url="https://github.com/facebookresearch/blt",
packages=find_packages(),
install_requires=["sentencepiece", "tiktoken", "xformers"],
)