|
a |
|
b/README.md |
|
|
1 |
# ML |
|
|
2 |
Apply machine learning algorithm and artificial intelligence methods for precision medicine |
|
|
3 |
|
|
|
4 |
4/8 initial successful run with tensorflow2 |
|
|
5 |
1. encountered issue when running on HPC cloud, used docker tensorflow image instead. In order to access the my data, need to run image with |
|
|
6 |
docker run -v mylocal:/tf -it -p 8888:8888 tensorflow/tensorflow:latest-jupyter |
|
|
7 |
2. since this image doesn't have pandas and numpy, need to run following to install those successfully: |
|
|
8 |
Docker exec CONAINER_name pip3 install pandas, numpy |
|
|
9 |
Commit the docker container for next use. |
|
|
10 |
Docker commit CONAINER_name new_container_name |
|
|
11 |
|