Skip to content

Commit

Permalink
shell script to create requirements.txt for all directories and their…
Browse files Browse the repository at this point in the history
… results
  • Loading branch information
FaisalAlnahhas committed Jul 20, 2021
1 parent 07f0e97 commit 3a825b2
Show file tree
Hide file tree
Showing 17 changed files with 58 additions and 0 deletions.
5 changes: 5 additions & 0 deletions azure-ml-stack/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
azureml==0.2.7
joblib==1.0.1
numpy==1.21.1
pandas==1.3.0
scikit_learn==0.24.2
1 change: 1 addition & 0 deletions batch-vs-stream/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions clustering/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

6 changes: 6 additions & 0 deletions collaborative-filtering/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
matplotlib==3.4.2
numpy==1.21.1
pandas==1.3.0
scipy==1.7.0
seaborn==0.11.1
surprise==0.1
1 change: 1 addition & 0 deletions datasets/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

10 changes: 10 additions & 0 deletions deeplearning/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
autokeras==1.0.15
keras==2.4.3
matplotlib==3.4.2
numpy==1.21.1
pandas==1.3.0
pandasql==0.7.3
Pillow==8.3.1
scikit_learn==0.24.2
scipy==1.7.0
wget==3.2
14 changes: 14 additions & 0 deletions engage-project/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
h5py==3.3.0
joblib==1.0.1
keras==2.4.3
matplotlib==3.4.2
numba==0.53.1
numpy==1.21.1
pandas==1.3.0
pandasql==0.7.3
patsy==0.5.1
scikit_learn==0.24.2
scipy==1.7.0
statsmodels==0.12.2
tensorflow==2.5.0
tqdm==4.61.2
1 change: 1 addition & 0 deletions null-values/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

3 changes: 3 additions & 0 deletions outlier/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
numpy==1.21.1
pandas==1.3.0
pandasql==0.7.3
8 changes: 8 additions & 0 deletions req.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash

for d in */ ; do
echo "$d"
cd $d
pipreqs .
cd -
done
1 change: 1 addition & 0 deletions statistics/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions stepwise/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions structured_data_classifier/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions structured_data_regressor/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

2 changes: 2 additions & 0 deletions text-cleaning/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
nltk==3.6.2
scikit_learn==0.24.2
1 change: 1 addition & 0 deletions train-test/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions trees/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

0 comments on commit 3a825b2

Please sign in to comment.