@sophiazhi -- this might be a good time to rename the modules that end with _analysis as well (just axing the final _analysis bit of the module name).
Seems unwieldy to write, e.g.,
from gender_analysis.analysis.instance_distance_analysis import some_function
... instead of just ...
from gender_analysis.analysis.instance_distance import some_function
@sophiazhi -- this might be a good time to rename the modules that end with
_analysis
as well (just axing the final_analysis
bit of the module name).Seems unwieldy to write, e.g.,
from gender_analysis.analysis.instance_distance_analysis import some_function
... instead of just ...from gender_analysis.analysis.instance_distance import some_function