-
Notifications
You must be signed in to change notification settings - Fork 3
Description
While running the implementation on the main branch on sherwood with the command ./tmfpython.sh -p '1532' -t 2012 2>&1 | tee out_1532_2024_08_14_all.txt, I ran into a warning message:
/usr/lib/python3.10/functools.py:889: DataOrientationWarning: Row orientation inferred during DataFrame construction. Explicitly specify the orientation by passing
orient="row"to silence this warning.
return dispatch(args[0].class)(*args, **kw)
Although I have encountered the same warning message before, it didn't stop the implementation run, whereas this time it did. (At least it stopped after the warning appeared, which doesn't necessarily imply causation.)
The message occurred after the calculate_k step was completed, during the find_potential_matches step, at the end of part of the output that goes as below:
......
61137/61153
61138/61153
61139/61153
61140/61153
61141/61153
61142/61153
61143/61153
61144/61153
61145/61153
61146/61153
61147/61153
61148/61153
61149/61153
61150/61153
61151/61153
61152/61153
/usr/lib/python3.10/functools.py:889: DataOrientationWarning: Row orientation inferred during DataFrame construction. Explicitly specify the orientation by passingorient="row"to silence this warning.
return dispatch(args[0].class)(*args, **kw)