shoukaku commited on
Commit
f7e46ad
1 Parent(s): f682c17

add all library that is needed to requirements.txt cuz i forget how to do it automatically

Browse files
.gitignore CHANGED
@@ -0,0 +1,3 @@
 
 
 
1
+ __pycache__
2
+ /venv
3
+ /flagged
models/recommendation_model.py CHANGED
@@ -2,6 +2,7 @@ import pickle
2
  import re
3
  import collections
4
  import math
 
5
  from tqdm import tqdm
6
 
7
 
2
  import re
3
  import collections
4
  import math
5
+ import pandas as pd
6
  from tqdm import tqdm
7
 
8
 
requirements.txt CHANGED
@@ -1,4 +1,10 @@
1
  numpy
2
  pandas
3
  gensim
 
 
 
 
 
 
4
  tqdm
1
  numpy
2
  pandas
3
  gensim
4
+ pickle
5
+ gradio
6
+ re
7
+ collections
8
+ math
9
+ ast
10
  tqdm