Skip to content

Training using kagglepc

Barata Magnus edited this page Sep 17, 2021 · 1 revision

This page will guide you on how to train using lab's kagglepc.

Setup

  1. Download kagglepc's private key from OneDrive, and put it on .ssh directory of your PC.
  2. Modify/create .ssh/config as follows:
Host kagglepc
    HostName 192.168.1.28
    AddKeysToAgent yes
    User kaggler
    IdentityFile ~/.ssh/kagglepc
  1. Test your login using ssh kagglepc, entering the passphrase when prompted.

Easy training

You can train your model easily using the provided script. Before training, you need to put your data inside the /home/kaggler/Documents/data directory. After that, on the repository's root directory, you can execute script/remote_train.sh. Note that you need to enter the passphrase for kagglepc.

Advanced training

...

Clone this wiki locally