mirror of
https://github.com/wassname/alpaca_convert.git
synced 2026-06-27 16:14:08 +08:00
9 lines
214 B
Python
9 lines
214 B
Python
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name='alpaca_convert',
|
|
packages=find_packages(),
|
|
version='0.1',
|
|
description='Convert alpaca lora models to ggml, gptq, and non lora hf models',
|
|
)
|