Skip to content

Commit

Permalink
Chore: publish package; Fix: hf hub required version
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanHeng committed May 22, 2023
1 parent cb3f07e commit 3ea4177
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ gdown==4.5.4
google-auth==2.15.0
google-auth-oauthlib==0.4.6
grpcio==1.51.1
huggingface-hub==0.14.1
huggingface-hub==0.4.0
icecream==2.1.3
idna==3.4
importlib-metadata==5.1.0
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

VERSION = '0.1.2'
VERSION = '0.2.1'
DESCRIPTION = """
code and data for the Findings of ACL'23 paper Label Agnostic Pre-training for Zero-shot Text Classification
by Christopher Clarke, Yuzhao Heng, Yiping Kang, Krisztian Flautner, Lingjia Tang and Jason Mars
Expand All @@ -15,14 +15,14 @@
description=DESCRIPTION,
long_description=DESCRIPTION,
url='https://github.com/ChrisIsKing/zero-shot-text-classification',
download_url='https://github.com/ChrisIsKing/zero-shot-text-classification/archive/refs/tags/v0.1.2.tar.gz',
download_url='https://github.com/ChrisIsKing/zero-shot-text-classification/archive/refs/tags/v0.2.1.tar.gz',
packages=find_packages(),
include_package_data=True,
install_requires=[
'gdown==4.5.4', 'openai==0.25.0', 'requests==2.28.1', 'tenacity==8.1.0',
'spacy==3.2.2', 'nltk==3.7', 'scikit-learn==1.1.3',
'torch==1.12.0', 'sentence-transformers==2.2.0', 'transformers==4.16.2',
'datasets==1.18.3',
'datasets==1.18.3', 'huggingface-hub==0.4.0',
'stefutils==0.22.2'
],
keywords=['python', 'nlp', 'machine-learning', 'deep-learning', 'text-classification', 'zero-shot-classification'],
Expand Down

0 comments on commit 3ea4177

Please sign in to comment.