Help Center> ModelArts> Troubleshooting> DevEnviron> Other Faults> Failed to Open the checkpoints Folder in Notebook
Updated on 2024-01-26 GMT+08:00

Failed to Open the checkpoints Folder in Notebook

checkpoints is a keyword in notebook. If a created folder is named checkpoints, the folder will not be opened, renamed, or deleted on JupyterLab. To access checkpoints, you have two options: either execute the command line in the terminal to load the checkpoint files, or create a folder and transfer the checkpoint data to that folder.

Figure 1 Unavailable checkpoints in the JupyterLab navigation pane

Procedure

Open the terminal and perform operations using the CLI.

Method 1: Run the cd checkpoints command to open the checkpoints folder.

Method 2: Create a folder and move the data in the checkpoints folder to that folder.

  1. Run the mkdir xxx command to create a folder, in which xxx is the folder name. Do not use checkpoints to name the folder.
  2. Move the data in the checkpoints folder to the new folder and delete the checkpoints folder in the root directory.
    mv checkpoints/* xxx
    rm -r checkpoints