Skip to content

Commit

Permalink
🎨 lessen dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Keisuke Ogaki committed Oct 14, 2023
1 parent 1290070 commit d267b2b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 4 additions & 1 deletion pqkmeans/evaluation.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
import os
import six.moves.urllib
import tarfile
import texmex_python
try:
import texmex_python
except ImportError:
pass


def get_gmm_random_dataset(k, dimension=100, test_size=5000, train_size=500):
Expand Down
5 changes: 2 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
numpy
numpy<1.21
scikit-learn
pipe
pipe<2.0
scipy
six
texmex_python==1.0.0

0 comments on commit d267b2b

Please sign in to comment.