Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from google.colab import drive | |
def mount_drive(project_name): | |
drive.mount("/content/drive") | |
colab_dir_path = "/content/drive/MyDrive/Colab Notebooks" | |
project_dir_path = f"{colab_dir_path}/{project_name}" | |
data_path = f"{project_dir_path}/data" | |
return colab_dir_path, project_dir_path, data_path |