๐งโ๐ผ
This file contains hidden or 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
| $(SRCROOT)/Carthage/Build/iOS/Mapbox.framework | |
| $(SRCROOT)/Carthage/Build/iOS/MapboxNavigation.framework | |
| $(SRCROOT)/Carthage/Build/iOS/MapboxDirections.framework | |
| $(SRCROOT)/Carthage/Build/iOS/MapboxCoreNavigation.framework | |
| $(SRCROOT)/Carthage/Build/iOS/MapboxNavigationNative.framework | |
| $(SRCROOT)/Carthage/Build/iOS/MapboxMobileEvents.framework | |
| $(SRCROOT)/Carthage/Build/iOS/MapboxSpeech.framework | |
| $(SRCROOT)/Carthage/Build/iOS/Turf.framework | |
| $(SRCROOT)/Carthage/Build/iOS/Solar.framework | |
| $(SRCROOT)/Carthage/Build/iOS/Polyline.framework |
This file contains hidden or 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
| $(BUILT_PRODUCTS_DIR)/$(FRAMEWORKS_FOLDER_PATH)/Mapbox.framework | |
| $(BUILT_PRODUCTS_DIR)/$(FRAMEWORKS_FOLDER_PATH)/MapboxNavigation.framework | |
| $(BUILT_PRODUCTS_DIR)/$(FRAMEWORKS_FOLDER_PATH)/MapboxSpeech.framework | |
| $(BUILT_PRODUCTS_DIR)/$(FRAMEWORKS_FOLDER_PATH)/MapboxDirections.framework | |
| $(BUILT_PRODUCTS_DIR)/$(FRAMEWORKS_FOLDER_PATH)/MapboxCoreNavigation.framework | |
| $(BUILT_PRODUCTS_DIR)/$(FRAMEWORKS_FOLDER_PATH)/MapboxNavigationNative.framework | |
| $(BUILT_PRODUCTS_DIR)/$(FRAMEWORKS_FOLDER_PATH)/MapboxMobileEvents.framework | |
| $(BUILT_PRODUCTS_DIR)/$(FRAMEWORKS_FOLDER_PATH)/Polyline.framework | |
| $(BUILT_PRODUCTS_DIR)/$(FRAMEWORKS_FOLDER_PATH)/Turf.framework | |
| $(BUILT_PRODUCTS_DIR)/$(FRAMEWORKS_FOLDER_PATH)/Solar.framework |
This file contains hidden or 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
| import React, {Fragment} from 'react'; | |
| import {SafeAreaView, StyleSheet, NativeModules} from 'react-native'; | |
| var navDemo = NativeModules.NavDemo; | |
| navDemo.renderNaviDemo( | |
| (originLat = -37.8182668), | |
| (originLon = 144.9648731), | |
| (originName = 'Flinder Station'), | |
| (destinationLat = -37.8165647), | |
| (destinationLon = 144.9475055), |
This file contains hidden or 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
| # Define your project name | |
| export PROJECT=FashionDetector | |
| # Under your project workspace | |
| # Create your project root directory | |
| mkdir $PROJECT | |
| cd $PROJECT | |
| # Create directory to store your model data | |
| mkdir data | |
| # Create directory to store your pre trained models and their related config files | |
| mkdir models |
This file contains hidden or 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
| # Install Tensorflow (tensorflow-gpu for GPU) | |
| pip install tensorflow --upgrade | |
| # Install dependencies | |
| pip install Cython --upgrade | |
| pip install contextlib2 --upgrade | |
| pip install pillow --upgrade | |
| pip install lxml --upgrade | |
| pip install jupyter --upgrade | |
| pip install matplotlib --upgrade |
This file contains hidden or 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
| """ | |
| Usage: | |
| # From tensorflow/models/ | |
| # Create train data: | |
| python generate_tfrecord.py --csv_input=data/train_labels.csv --output_path=data/train.record | |
| # Create test data: | |
| python generate_tfrecord.py --csv_input=data/test_labels.csv --output_path=data/test.record | |
| """ | |
| from __future__ import division | |
| from __future__ import print_function |
This file contains hidden or 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
| python generate_tfrecord.py --csv_input=data/train_labels.csv --image_dir=data --output_path=data/train.record | |
| python generate_tfrecord.py --csv_input=data/test_labels.csv --image_dir=data --output_path=data/test.record |
OlderNewer