You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
509 B

7 years ago
7 years ago
  1. # galdric
  2. machine learning server, for image classification
  3. - Reads all the datasets in the folder /dataset
  4. - Each image is resized to the same size, configured in the config.json
  5. - For the input images, calculates the euclidean distances
  6. - Gets the nearest neighbour
  7. - Show the result, that is the label of the object in the image
  8. -------------
  9. send file over ssh:
  10. ```
  11. scp dataset.tar.gz root@51.255.193.106:/root/galdric
  12. ```
  13. on the server, untar file:
  14. ```
  15. tar -xvzf dataset.tar.gz
  16. ```