From a2e9961ad6abf67d76a334f58f576b6105c102f5 Mon Sep 17 00:00:00 2001 From: Akhil Dhavala Date: Sun, 5 Feb 2023 12:25:48 -0800 Subject: [PATCH 1/3] Conflicts in versions nltk is listed twice with hard requirements nltk==3.5 and nltk==3.8 and so it results in conflicts. and huggingface-hub results in the following error, so change it ERROR: Cannot install huggingface-hub==0.0.12 and sentence-transformers==2.2.2 because these package versions have conflicting dependencies. --- requirements.txt | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/requirements.txt b/requirements.txt index 4c07da59..47f5d7e5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,12 +1,11 @@ -huggingface-hub==0.0.12 -nltk==3.5 +huggingface-hub>=0.4.0 +nltk>=3.5 numpy==1.23.2 openai==0.23.0 pandas==1.4.3 rouge==1.0.1 sentence-transformers==2.2.2 transformers==4.21.1 -nltk==3.8 evaluate==0.4.0 rouge==1.0.1 -rouge_score==0.1.2 \ No newline at end of file +rouge_score==0.1.2 From 66d622ded46f83a341039814a41e3cf7f29fab3d Mon Sep 17 00:00:00 2001 From: Akhil Dhavala Date: Sun, 5 Feb 2023 13:19:36 -0800 Subject: [PATCH 2/3] Update requirements.txt --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 47f5d7e5..83134c56 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,5 +7,6 @@ rouge==1.0.1 sentence-transformers==2.2.2 transformers==4.21.1 evaluate==0.4.0 +rich>=12.0.0 rouge==1.0.1 rouge_score==0.1.2 From 144b69904376847e7847bb0439abad73dcb14dda Mon Sep 17 00:00:00 2001 From: Akhil Dhavala Date: Sun, 5 Feb 2023 13:20:01 -0800 Subject: [PATCH 3/3] Update requirements.txt