diff --git a/Dockerfile.tmpl b/Dockerfile.tmpl index 1528230f..fcaec877 100644 --- a/Dockerfile.tmpl +++ b/Dockerfile.tmpl @@ -274,14 +274,11 @@ RUN pip install scipy \ scikit-learn-intelex>=2023.0.1 \ # HDF5 support h5py \ - biopython \ # PUDB, for local debugging convenience pudb \ imbalanced-learn \ # Profiling and other utilities line_profiler \ - orderedmultidict \ - smhasher \ bokeh \ numba \ datashader \ @@ -326,9 +323,7 @@ RUN pip install mpld3 \ hyperopt \ fitter \ langid \ - # Delorean. Useful for dealing with datetime - delorean \ - trueskill \ + trueskill \ # Useful data exploration libraries (for missing data and generating reports) missingno \ pandas-profiling \ @@ -351,7 +346,6 @@ RUN pip install mpld3 \ wavio \ SimpleITK \ hmmlearn \ - bayespy \ gplearn \ PyAstronomy \ squarify \ @@ -396,17 +390,13 @@ RUN pip install tensorpack && \ pip install librosa \ polyglot \ mmh3 \ - fbpca \ sentencepiece \ cufflinks \ lime \ memory_profiler && \ /tmp/clean-layer.sh -# install cython & cysignals before pyfasttext RUN pip install cython \ - cysignals \ - pyfasttext \ fasttext && \ apt-get install -y libhunspell-dev && pip install hunspell RUN pip install annoy \ @@ -530,7 +520,6 @@ RUN pip install flashtext \ # b/214080882 blake3 0.3.0 is not compatible with vaex. blake3==0.2.1 \ vaex \ - marisa-trie \ pyemd \ pyupset \ pympler \ diff --git a/tests/test_pyfasttext.py b/tests/test_pyfasttext.py deleted file mode 100644 index 1ebf5211..00000000 --- a/tests/test_pyfasttext.py +++ /dev/null @@ -1,9 +0,0 @@ -import unittest - -from pyfasttext import FastText - -class TestPyFasttext(unittest.TestCase): - def test_vector(self): - model = FastText() - - model.supervised(input='/input/tests/data/text.txt', output='model', epoch=1, lr=0.7)