Metadata-Version: 2.4
Name: psalm-eu
Version: 1.0.0
Summary: Probing Stylistic Appropriation in Large Language Models (PSALM): An LLM-as-a-Judge Framework for Evaluating Copyright Infringement under EU Law.
Project-URL: Homepage, https://nscharrenberg.github.io/psalm/
Project-URL: Repository, https://github.com/nscharrenberg/psalm
Project-URL: Documentation, https://nscharrenberg.github.io/psalm/
Author-email: Noah Scharrenberg <noah@contractuo.com>
License-File: LICENSE
Keywords: python
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: <3.13,>=3.11
Requires-Dist: accelerate>=1.10.1
Requires-Dist: aiohttp>=3.13.0
Requires-Dist: bitsandbytes>=0.47.0
Requires-Dist: boto3>=1.38.36
Requires-Dist: datasets>=3.6.0
Requires-Dist: deepeval>=3.6.6
Requires-Dist: deepspeed==0.16.5
Requires-Dist: hf-transfer>=0.1.9
Requires-Dist: hf-xet>=1.1.9
Requires-Dist: huggingface-hub>=0.34.4
Requires-Dist: hydra-core>=1.3.2
Requires-Dist: langchain-community>=0.3.31
Requires-Dist: langchain-huggingface>=0.3.1
Requires-Dist: langchain-openai>=0.3.35
Requires-Dist: langchain-text-splitters>=0.3.11
Requires-Dist: langchain>=0.3.27
Requires-Dist: mlflow>=3.4.0
Requires-Dist: nest-asyncio>=1.6.0
Requires-Dist: ninja>=1.11.1.4
Requires-Dist: nltk>=3.9.2
Requires-Dist: notebook>=7.4.7
Requires-Dist: nvidia-ml-py>=12.575.51
Requires-Dist: openai>=2.3.0
Requires-Dist: openpyxl>=3.1.5
Requires-Dist: pandas>=2.3.3
Requires-Dist: peft>=0.17.1
Requires-Dist: polars>=1.34.0
Requires-Dist: protobuf>=6.32.0
Requires-Dist: pydantic>=2.12.0
Requires-Dist: pydash>=8.0.5
Requires-Dist: python-dotenv>=1.1.0
Requires-Dist: rich[jupyter]>=14.2.0
Requires-Dist: rouge-score>=0.1.2
Requires-Dist: scipy>=1.15.3
Requires-Dist: seaborn>=0.13.2
Requires-Dist: sentencepiece>=0.2.1
Requires-Dist: setuptools>=80.8.0
Requires-Dist: statsmodels>=0.14.5
Requires-Dist: tensorboard>=2.19.0
Requires-Dist: tiktoken>=0.11.0
Requires-Dist: torch>=2.7.0
Requires-Dist: torchvision>=0.22.0
Requires-Dist: transformers>=4.55.4
Requires-Dist: triton-windows>=3.4.0.post20; sys_platform == 'win32'
Requires-Dist: triton>=3.3.0; sys_platform == 'linux'
Requires-Dist: trl>=0.22.2
Requires-Dist: unsloth>=2025.10.1
Requires-Dist: wheel>=0.45.1
Requires-Dist: xformers>=0.0.30
Description-Content-Type: text/markdown

# Probing Stylistic Appropriation in Large Language Models (PSALM): An LLM-as-a-Judge Framework for Evaluating Copyright Infringement under EU Law.

<!-- [![Release](https://img.shields.io/github/v/release/nscharrenberg/psalm)](https://img.shields.io/github/v/release/nscharrenberg/psalm)
[![Build status](https://img.shields.io/github/actions/workflow/status/nscharrenberg/psalm/main.yml?branch=main)](https://github.com/nscharrenberg/psalm/actions/workflows/main.yml?query=branch%3Amain)
[![codecov](https://codecov.io/gh/nscharrenberg/psalm/branch/main/graph/badge.svg)](https://codecov.io/gh/nscharrenberg/psalm)
[![Commit activity](https://img.shields.io/github/commit-activity/m/nscharrenberg/psalm)](https://img.shields.io/github/commit-activity/m/nscharrenberg/psalm)
[![License](https://img.shields.io/github/license/nscharrenberg/psalm)](https://img.shields.io/github/license/nscharrenberg/psalm) -->



- **Git repository**: <https://codeberg.org/nscharrenberg/PSALM/>

## Getting started with your project

### 1. Create a New Repository

First, create a repository on GitHub with the same name as this project, and then run the following commands:

```bash
git init -b main
git add .
git commit -m "init commit"
git remote add origin git@codeberg.org/nscharrenberg/PSALM.git
git push -u origin main
```

### 2. Set Up Your Development Environment

Then, install the environment and the pre-commit hooks with

```bash
make install
```

This will also generate your `uv.lock` file

### 3. Run the pre-commit hooks

Initially, the CI/CD pipeline might be failing due to formatting issues. To resolve those run:

```bash
uv run pre-commit run -a
```

### 4. Commit the changes

Lastly, commit the changes made by the two steps above to your repository.

```bash
git add .
git commit -m 'Fix formatting issues'
git push origin main
```

You are now ready to start development on your project!
