diff --git a/src/captcha.ipynb b/src/captcha.ipynb index 7d6d774713e..4fb5052578e 100644 --- a/src/captcha.ipynb +++ b/src/captcha.ipynb @@ -111,7 +111,6 @@ "import numpy as np\n", "from pathlib import Path\n", "import tensorflow as tf\n", - "from captcha.GoogleDriveManager import GoogleDriveManager\n", "from captcha.CaptchaGenerator import CaptchaGenerator\n", "from captcha.CharNumConverter import CharNumConverter\n", "from captcha.DataSplitter import DataSplitter\n", diff --git a/src/captcha/GoogleDriveManager.py b/src/captcha/GoogleDriveManager.py deleted file mode 100644 index 3b622677801..00000000000 --- a/src/captcha/GoogleDriveManager.py +++ /dev/null @@ -1,27 +0,0 @@ -from pathlib import Path - - -class GoogleDriveManager: - - _googleDriveFolder = Path('/content/gdrive') - _baseFolder = _googleDriveFolder / 'MyDrive/CAPTCHA/models/' - - @staticmethod - def mount(): - from google.colab import drive - drive.mount(str(GoogleDriveManager._googleDriveFolder)) - - @staticmethod - def uploadFolderToGoogleDrive(folder): - pass - # FK-FIXME: - # !zip -r {folder}.zip {folder}/ - # !cp {folder}.zip {GoogleDriveManager._baseFolder} - - @staticmethod - def downloadFolderFromGoogleDrive(folder): - pass - # FK-FIXME: - # !cp {GoogleDriveManager._baseFolder}/{folder}.zip . - # !rm -rf {folder} - # !unzip {folder}.zip