Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/TharinduDR/TransQuest.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTharinduDR <rhtdranasinghe@gmail.com>2021-03-19 23:23:41 +0300
committerTharinduDR <rhtdranasinghe@gmail.com>2021-03-19 23:23:41 +0300
commit8991b6607ca3a0a89ce8654da85061b2b41b3ab6 (patch)
treede6dda9ba0355aea4e058070ff73f72f0fe3cfa2
parent55988b4a36ada34b424455385e11a14eb350c6ce (diff)
056: Code Refactoringv1.0.1-beta
-rwxr-xr-xsetup.py27
1 files changed, 13 insertions, 14 deletions
diff --git a/setup.py b/setup.py
index 1634c5a..3f2953a 100755
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
setup(
name="transquest",
- version="1.0.0-beta",
+ version="1.0.1-beta",
author="Tharindu Ranasinghe",
author_email="rhtdranasinghe@gmail.com",
description="Transformer based translation quality estimation",
@@ -21,18 +21,17 @@ setup(
],
python_requires=">=3.6",
install_requires=[
- "numpy==1.19.0",
- "requests==2.24.0",
- "tqdm==4.47.0",
- "regex==2020.6.8",
- "transformers==3.0.1",
- "scipy==1.5.1",
- "scikit-learn==0.23.1",
- "tensorboardx==2.1",
- "pandas==1.0.5",
- "tokenizers==0.8.0",
- "matplotlib==3.2.2",
- "wandb==0.9.2",
- "googledrivedownloader==0.4"
+ "numpy",
+ "requests",
+ "tqdm>=4.47.0",
+ "regex",
+ "transformers>=4.0.0",
+ "scipy",
+ "scikit-learn",
+ "tensorboardx",
+ "pandas",
+ "tokenizers",
+ "matplotlib",
+ "wandb",
],
)