When coding as a Machine Learning Engineer, there are some annoying small things that can cause frustration.One common issue is when files located in the same folder or one level up/down from the main script cannot be found by Python.It is necessary to add the project directory to the sys.path or use absolute imports to ensure that modules can be found.Organizing files into folders as Python packages can also be done by including an empty __init__.py file in each folder.