How to access CSV file (located in pc hdd) from a docker container with python pandas?
问题 I want to implement a Machine Learning algorithm which can operate on homomorphic data using PySEAL library. PySEAL library is released as a docker container with an 'examples.py' file which shows some homomorphic encryption example. I want to edit the 'examples.py' file to implement the ML algorithm. I trying to import a CSV file in this way - dataset = pd.read_csv ('Dataset.csv') I have imported pandas library successfully. I have tried many approaches to import the CSV file but failed. How