Get start

First of All

  1. Create user account with the administrator of lab servers.

  2. Acquire information of servers (ip, name, computing power)

Important !!!

  1. Ctrl-Z is used to put process in background. To terminate process, using Ctrl-C.

  2. DO NOT eat all of memory, it's very rare to do this, and should be able to avoid using too much memory in most of the cases. Like:

    1. If read a big file, read it line by line instead of read the whole file at once.

    2. Consider generator of python when dealing with large file or list.

    3. Avoid transform whole dataset into embeddings. Transform them in forward function of model.

  3. Feel free to ask questions! Even if some answer is on this guide, labmates are still willing to point out for you.

In case you don't know these

  • Other useful command

Last updated