Environment info
I try
!git clone https://github.com/huggingface/transformers.git
%cd transformers/
!pip install -e .
on Colaboratory.
transformers version: 3.5.0 <- this seems strange.
- Platform: Linux-4.19.112+-x86_64-with-Ubuntu-18.04-bionic
- Python version: 3.6.9
- PyTorch version (GPU?): 1.7.0+cu101 (True)
- Tensorflow version (GPU?): 2.3.0 (True)
- Using GPU in script?:
- Using distributed or parallel set-up in script?:
Who can help
documentation: @sgugger
Information
"setup.py" does not seem to have been updated for v3.5.1.
When I install transformers by pip install -e ., the version of transformers is shown as v3.5.0.
To reproduce
Steps to reproduce the behavior:
I try
!git clone https://github.com/huggingface/transformers.git
%cd transformers/
!pip install -e .
on Colaboratory after v3.5.1 release.
Then,
import transformers
transformers.__version__
returns
Expected behavior
The return of transformers.__version__ is expected to be '3.5.1' now, if my understanding is not wrong.
Maybe, in
'3.5.0' should be changed to '3.5.1'.
Is my understanding correct? Sorry if I misunderstand your intension.
Environment info
I try
on Colaboratory.
transformersversion: 3.5.0 <- this seems strange.Who can help
documentation: @sgugger
Information
"setup.py" does not seem to have been updated for v3.5.1.
When I install transformers by
pip install -e ., the version of transformers is shown as v3.5.0.To reproduce
Steps to reproduce the behavior:
I try
on Colaboratory after v3.5.1 release.
Then,
returns
Expected behavior
The return of
transformers.__version__is expected to be '3.5.1' now, if my understanding is not wrong.Maybe, in
transformers/setup.py
Line 120 in afb50c6
'3.5.0' should be changed to '3.5.1'.
Is my understanding correct? Sorry if I misunderstand your intension.