mirror of
https://github.com/facebookresearch/blt.git
synced 2025-01-18 16:37:46 +00:00
12 lines
371 B
Python
12 lines
371 B
Python
|
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"],
|
||
|
)
|