Last active
September 4, 2023 02:01
-
-
Save hibi-myzk/be398d4d4323f3c5456d7931fb2e141b to your computer and use it in GitHub Desktop.
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 |
Author
hibi-myzk
commented
Sep 1, 2023
•
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment