├── Dataflow ├── CONTRIBUTING.md ├── README ├── README.md ├── jobs │ └── sample.yaml ├── pipeline │ ├── __init__.py │ ├── dataflow_helpers │ │ ├── __init__.py │ │ ├── gcs_copy_helper.py │ │ ├── image_schema_definitions.py │ │ ├── util.py │ │ ├── video_schema_definitions.py │ │ └── vision_helper.py │ ├── local_helpers │ │ ├── __init__.py │ │ ├── cm_helper.py │ │ ├── gcs_read_helper.py │ │ └── jobfile_helper.py │ ├── main.py │ ├── requirements.txt │ └── setup.py ├── presetup_virtualenv.sh ├── run.py └── setup_environment.sh ├── LICENSE ├── README.md └── colabs └── CM360 ├── [colab_1]_Creative_Extraction.ipynb ├── [colab_2]_Vision_API_for_Creative_Parsing.ipynb └── [colab_3]_Feature_Extraction_and_Modeling.ipynb /Dataflow/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/oculi/HEAD/Dataflow/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dataflow/README: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Dataflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/oculi/HEAD/Dataflow/README.md -------------------------------------------------------------------------------- /Dataflow/jobs/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/oculi/HEAD/Dataflow/jobs/sample.yaml -------------------------------------------------------------------------------- /Dataflow/pipeline/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/oculi/HEAD/Dataflow/pipeline/__init__.py -------------------------------------------------------------------------------- /Dataflow/pipeline/dataflow_helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/oculi/HEAD/Dataflow/pipeline/dataflow_helpers/__init__.py -------------------------------------------------------------------------------- /Dataflow/pipeline/dataflow_helpers/gcs_copy_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/oculi/HEAD/Dataflow/pipeline/dataflow_helpers/gcs_copy_helper.py -------------------------------------------------------------------------------- /Dataflow/pipeline/dataflow_helpers/image_schema_definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/oculi/HEAD/Dataflow/pipeline/dataflow_helpers/image_schema_definitions.py -------------------------------------------------------------------------------- /Dataflow/pipeline/dataflow_helpers/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/oculi/HEAD/Dataflow/pipeline/dataflow_helpers/util.py -------------------------------------------------------------------------------- /Dataflow/pipeline/dataflow_helpers/video_schema_definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/oculi/HEAD/Dataflow/pipeline/dataflow_helpers/video_schema_definitions.py -------------------------------------------------------------------------------- /Dataflow/pipeline/dataflow_helpers/vision_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/oculi/HEAD/Dataflow/pipeline/dataflow_helpers/vision_helper.py -------------------------------------------------------------------------------- /Dataflow/pipeline/local_helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/oculi/HEAD/Dataflow/pipeline/local_helpers/__init__.py -------------------------------------------------------------------------------- /Dataflow/pipeline/local_helpers/cm_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/oculi/HEAD/Dataflow/pipeline/local_helpers/cm_helper.py -------------------------------------------------------------------------------- /Dataflow/pipeline/local_helpers/gcs_read_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/oculi/HEAD/Dataflow/pipeline/local_helpers/gcs_read_helper.py -------------------------------------------------------------------------------- /Dataflow/pipeline/local_helpers/jobfile_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/oculi/HEAD/Dataflow/pipeline/local_helpers/jobfile_helper.py -------------------------------------------------------------------------------- /Dataflow/pipeline/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/oculi/HEAD/Dataflow/pipeline/main.py -------------------------------------------------------------------------------- /Dataflow/pipeline/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/oculi/HEAD/Dataflow/pipeline/requirements.txt -------------------------------------------------------------------------------- /Dataflow/pipeline/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/oculi/HEAD/Dataflow/pipeline/setup.py -------------------------------------------------------------------------------- /Dataflow/presetup_virtualenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/oculi/HEAD/Dataflow/presetup_virtualenv.sh -------------------------------------------------------------------------------- /Dataflow/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/oculi/HEAD/Dataflow/run.py -------------------------------------------------------------------------------- /Dataflow/setup_environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/oculi/HEAD/Dataflow/setup_environment.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/oculi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/oculi/HEAD/README.md -------------------------------------------------------------------------------- /colabs/CM360/[colab_1]_Creative_Extraction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/oculi/HEAD/colabs/CM360/[colab_1]_Creative_Extraction.ipynb -------------------------------------------------------------------------------- /colabs/CM360/[colab_2]_Vision_API_for_Creative_Parsing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/oculi/HEAD/colabs/CM360/[colab_2]_Vision_API_for_Creative_Parsing.ipynb -------------------------------------------------------------------------------- /colabs/CM360/[colab_3]_Feature_Extraction_and_Modeling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/oculi/HEAD/colabs/CM360/[colab_3]_Feature_Extraction_and_Modeling.ipynb --------------------------------------------------------------------------------