llm regression
1.0.0
llm-regression 包演示了如何使用 LLM 来解决经典回归问题,并公开这些功能供您进行实验。例子:
from llm_regression import OpenAiRegressor
llm_regressor = OpenAiRegressor ( model = "gpt-3.5-turbo" )
llm_regressor . fit ( X_train , y_train )
y_pred = llm_regressor . predict ( X_test )
这项工作的动机是论文,
“从文字到数字:你的法学硕士是一位秘密的回归者”,作者:Vacareanu 等人。 (2024)。
值得一读!
您可以直接从此存储库安装 llm_regression 包以及运行示例笔记本所需的依赖项,
pip install -U pip
pip install "llm-regression[examples] @ git+https://github.com/AlexIoannides/llm-regression.git"
查看 basic_demo 笔记本。
如果您想修改或扩展此存储库中的工作,那么本节中的信息适合您。
将包安装为可编辑的依赖项,以及格式化代码、检查类型和运行测试所需的所有开发人员工具:
pip install -e ".[dev]"
我们使用 Nox 来编写开发人员任务的脚本,例如格式化代码、检查类型和运行测试。这些任务在noxfile.py
中定义,可以在命令行上返回其列表,
$ nox --list
Sessions defined in /Users/.../noxfile.py:
* run_tests-3.12 -> Run unit tests.
- format_code-3.12 -> Lint code and re-format where necessary.
* check_code_formatting-3.12 -> Check code for formatting errors.
* check_types-3.12 -> Run static type checking.
- build_and_deploy-3.12 -> Build wheel and deploy to PyPI.
sessions marked with * are selected, sessions marked with - are skipped.
可以轻松执行单个任务 - 例如,
$ nox -s run_tests
nox > Running session run_tests-3.12
nox > Creating virtual environment (virtualenv) using python3.12 in .nox/run_tests-3-10
nox > python -m pip install '.[dev]'
nox > pytest
======================================== test session starts ========================================
platform darwin -- Python 3.12.2, pytest-7.4.2, pluggy-1.3.0
rootdir: /Users/.../llm_regression
configfile: pyproject.toml
testpaths: tests
collected 1 item
tests/test_hello_world.py [100%]
========================================== 1 passed in 0.00s =========================================
nox > Session run_tests-3.12 was successful.
此存储库配置为运行两个 GitHub Actions 工作流程:
.github/workflows/python-package-ci.yml
中定义.github/workflows/python-package-cd.yml
中定义CI 工作流程已配置为在创建对main
分支的拉取请求时运行。 CD 工作流程已配置为在 GitHub 上创建版本时运行。