update requirements
This commit is contained in:
parent
211dce1b9d
commit
9bfb75aa47
|
@ -1,5 +1,5 @@
|
||||||
"""Install Compacter."""
|
"""Install Compacter."""
|
||||||
import os
|
import os
|
||||||
import setuptools
|
import setuptools
|
||||||
from torch.utils.cpp_extension import BuildExtension, CUDAExtension
|
from torch.utils.cpp_extension import BuildExtension, CUDAExtension
|
||||||
|
|
||||||
|
@ -29,17 +29,10 @@ def setup_package():
|
||||||
'Programming Language :: Python :: 3.7.10',
|
'Programming Language :: Python :: 3.7.10',
|
||||||
],
|
],
|
||||||
keywords='text nlp machinelearning',
|
keywords='text nlp machinelearning',
|
||||||
# ext_modules=[
|
|
||||||
# CUDAExtension('seq2seq.projections.fwh_cuda',
|
|
||||||
# sources=[
|
|
||||||
# 'seq2seq/projections/fwh_cuda/fwh_cpp.cpp',
|
|
||||||
# 'seq2seq/projections/fwh_cuda/fwh_cu.cu',
|
|
||||||
# ]
|
|
||||||
# )
|
|
||||||
# ]
|
|
||||||
# ,
|
|
||||||
cmdclass={"build_ext": BuildExtension},
|
cmdclass={"build_ext": BuildExtension},
|
||||||
install_requires=[
|
install_requires=[
|
||||||
|
"pyarrow==7.0.0",
|
||||||
|
"datasets==1.17.0"
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
torch>=1.8.0
|
torch>=1.8.0
|
||||||
transformers>=4.10.0
|
transformers>=4.10.0
|
||||||
datasets>=1.17.0
|
datasets==1.17.0
|
||||||
sentencepiece>=0.1.96
|
sentencepiece>=0.1.96
|
||||||
tqdm>=4.62.2
|
tqdm>=4.62.2
|
||||||
loralib
|
loralib
|
||||||
|
|
Loading…
Reference in New Issue