Darya Filippova

Results 4 comments of Darya Filippova

I see the dilemma now. Well, maybe then a simple "Dependencies" section would help the poor souls with installation :) Thanks!

That sounds like a good solution (making the release download / yaggo more visible). Thanks!

Also running into this issue. My pip requirements file has these versions: ``` torch==2.0.1 notebook==6.5.4 transformers==4.30.0 matplotlib==3.7.1 scikit-learn==1.2.2 pandas==2.0.2 xformers==0.0.20 ``` and I am running in a venv with py3.10....

It seems that `datefinder` can not extract the date if there is a digit following it: ``` >>> list(datefinder.find_dates("11/20/1972")) [datetime.datetime(1972, 11, 20, 0, 0)] >>> list(datefinder.find_dates("11/20/1972 4")) [] ``` datefinder...