Skip to content

Commit

Permalink
added sentencepiece to requirements as it no longer comes with transf…
Browse files Browse the repository at this point in the history
…ormers
  • Loading branch information
laurahanu committed Dec 9, 2020
1 parent c8e66f8 commit 1da4222
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ kaggle >= 1.5.8
pandas >= 1.1.2
scikit-learn >= 0.23.2
datasets >= 1.0.2
tqdm == 4.41.0
tqdm == 4.41.0
sentencepiece >= 0.1.94
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,17 @@

setup(
name="detoxify",
version="0.1.0",
version="0.1.1",
description="A python library for detecting toxic comments",
long_description=long_description,
long_description_content_type="text/markdown",
author="Unitary",
author_email="[email protected]",
url="https://github.com/unitaryai/detoxify",
install_requires=[
"transformers",
"torch",
"transformers >= 3.2.0",
"torch >= 1.7.0",
"sentencepiece >= 0.1.94"
],
packages=find_packages(exclude=("tests", "src")),
classifiers=[
Expand Down

0 comments on commit 1da4222

Please sign in to comment.