Skip to content

Commit d18d7b5

Browse files
committed
Update A.Y. 2021/22
1 parent 758fc6e commit d18d7b5

File tree

86 files changed

+20701
-403
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+20701
-403
lines changed

CythonCompiler/compile_script.py

+2
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@
4343
include_dirs=[numpy.get_include(),],
4444
)
4545

46+
ext_modules.cython_directives = {'language_level': '3'}
47+
4648
setup(
4749
cmdclass={'build_ext': build_ext},
4850
ext_modules=[ext_modules]

CythonCompiler/run_compile_subprocess.py

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
import subprocess, os, sys, shutil
1010

11+
1112
def run_compile_subprocess(file_subfolder, file_to_compile_list):
1213

1314
# Run compile script setting the working directory to ensure the compiled file are contained in the

Data_manager/DataReader.py

+1
Original file line numberDiff line numberDiff line change
@@ -165,3 +165,4 @@ def load_data(self, save_folder_path = None):
165165

166166
loaded_dataset.print_statistics()
167167
return loaded_dataset
168+

Data_manager/DataReader_utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
import numpy as np
1010
import time, sys, os
11-
from Base.Recommender_utils import check_matrix
11+
from Recommenders.Recommender_utils import check_matrix
1212
import scipy.sparse as sps
1313

1414

0 commit comments

Comments
 (0)