- https://cloud.google.com/ml-engine/docs/tensorflow/getting-started-training-prediction
- https://cloud.google.com/ml-engine/docs/tensorflow/data-prep
- https://github.com/GoogleCloudPlatform/cloudml-samples
- https://github.com/GoogleCloudPlatform/cloudml-samples/blob/master/sklearn/notebooks/Online%20Prediction%20with%20scikit-learn.ipynb
- https://cloud.google.com/ml-engine/docs/tensorflow/
- https://cloud.google.com/ml-engine/docs/tensorflow/trainer-considerations
- https://cloud.google.com/ml-engine/docs/v1/predict-request
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
mkdir ~/Desktop/ScreenShots | |
defaults write com.apple.screencapture location ~/Desktop/ScreenShots/ | |
killall SystemUIServer |
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
def generate_path(self): | |
min_char = 8 | |
max_char = 12 | |
max_lookups = 100 | |
character_choices = string.ascii_letters | |
for _ in range(max_lookups): | |
url_path = ( | |
"".join(choice(character_choices) for x | |
in range(randint(min_char, max_char)))) |
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
[ | |
"Aleutians East", | |
"Aleutians West (CA)", | |
"Anchorage Municipality", | |
"Bethel Census Area", | |
"Bristol Bay", | |
"Denali", | |
"Dillingham (CA)", | |
"Fairbanks North Star", | |
"Haines", |
OlderNewer