From c55af5d78783205e3fcedfdf9347cf1ed1ffbb89 Mon Sep 17 00:00:00 2001 From: sam Date: Thu, 5 Dec 2024 11:14:48 +0000 Subject: [PATCH] add requirements.txt --- .github/workflows/pylint.yml | 1 + requirements.txt | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 requirements.txt diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 70e6d99..367fb42 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -17,6 +17,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip + python -m pip install -r requirements.txt pip install pylint - name: Analysing the code with pylint run: | diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..8cf8d68 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,4 @@ +torch~=2.5.1 +transformers~=4.46.3 +datasets~=3.1.0 +matplotlib~=3.9.3 \ No newline at end of file