1
0
Fork 0
mirror of https://github.com/prise6/smart-iss-posts synced 2024-05-22 07:16:32 +02:00

test du makefile

This commit is contained in:
François Vieille 2018-08-09 01:24:30 +02:00
parent ded9753af9
commit 945372f908
5 changed files with 10 additions and 3 deletions

View file

@ -30,12 +30,18 @@ data: requirements
$(PYTHON_INTERPRETER) src/data/make_dataset.py $(PYTHON_INTERPRETER) src/data/make_dataset.py
## Sync photos with my refs ## Sync photos with my refs
sync_collections: sync_collections: src/data/sync_collections.py
$(PYTHON_INTERPRETER) src/data/sync_collections.py $(PYTHON_INTERPRETER) src/data/sync_collections.py
touch sync_collections
## Resize collection ## Resize collection
resize_collections: resize_collections: src/data/resize_collections.py
$(PYTHON_INTERPRETER) src/data/resize_collections.py $(PYTHON_INTERPRETER) src/data/resize_collections.py
touch resize_collections
build_tfrecords: sync_collections resize_collections src/features/build_tfrecords.py
$(PYTHON_INTERPRETER) src/features/build_tfrecords.py
touch build_tfrecords
## Delete all compiled Python files ## Delete all compiled Python files

View file

@ -46,3 +46,4 @@ if __name__ == '__main__':
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
main() main()

View file

View file

View file

@ -65,4 +65,4 @@ if __name__ == '__main__':
project_dir = Path(__file__).resolve().parents[2] project_dir = Path(__file__).resolve().parents[2]
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
main() main()