1 Star 0 Fork 1

thinkerai/lit-llama

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 630 Bytes
一键复制 编辑 原始数据 按行查看 历史
Jirka Borovec 提交于 2023-03-30 09:18 . fix setup.py (#48)
import os
from setuptools import setup, find_packages
_PATH_ROOT = os.path.dirname(__file__)
with open(os.path.join(_PATH_ROOT, "README.md"), encoding="utf-8") as fo:
readme = fo.read()
setup(
name='lit-llama',
version='0.1.0',
description='Implementation of the LLaMA language model',
author='Lightning AI',
url='https://github.com/lightning-AI/lit-llama',
install_requires=[
"torch>=2.0.0",
"lightning>=2.0.0",
"sentencepiece",
"bitsandbytes",
],
packages=find_packages(),
long_description=readme,
long_description_content_type="text/markdown",
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/thinkerai/lit-llama.git
git@gitee.com:thinkerai/lit-llama.git
thinkerai
lit-llama
lit-llama
main

搜索帮助