Wednesday, September 12, 2018
Friday, April 6, 2018
Using Meshlab filters from command prompt
- Process a 3D file using a filter script created in the MeshLab GUI (Filters > Show current filter script > Save Script):
meshlabserver -i input.ply -o output.ply -s filter_script.mlx
- Process a 3D file using a filter script, writing the output of the filters into a log file:
meshlabserver -i input.x3d -o output.x3d -s filter_script.mlx -l logfileThursday, January 4, 2018
Art of Using GPU with MatLab
Choosing using GPU/CPU/multi-GPU/parallel-cluster:
trainingoptions();
Documenting the properties of the available GPU:
gpuDevice;
https://blogs.mathworks.com/loren/2012/02/06/using-gpus-in-matlab/
Subscribe to:
Comments (Atom)
Setting Jupyter and Tensorflow on Google Cloud Platform
https://towardsdatascience.com/running-jupyter-notebook-in-google-cloud-platform-in-15-min-61e16da34d52
-
Choosing using GPU/CPU/multi-GPU/parallel-cluster: trainingoptions(); Documenting the properties of the available GPU: gpuDevice; h...
-
https://towardsdatascience.com/running-jupyter-notebook-in-google-cloud-platform-in-15-min-61e16da34d52
-
You can build a dockerfile $docker build -t some-arbitrary-label You can cleanup your machine using; $docker rmi some-arbitrary-label...