saved_model_cli show --dir resnet/1
saved_model_cli show --dir resnet/1 --tag_set serve
# how to setup mingw + msysgit + cmake | |
## MinGW | |
http://www.mingw.org/wiki/InstallationHOWTOforMinGW | |
http://sourceforge.net/projects/mingw/files/MinGW/ | |
download and execute | |
mingw-get-inst-20120426.exe |
FirefoxProfile fxProfile = new FirefoxProfile(); | |
fxProfile.setPreference("browser.download.folderList",2); | |
fxProfile.setPreference("browser.download.manager.showWhenStarting",false); | |
fxProfile.setPreference("browser.download.dir","c:\\mydownloads"); | |
fxProfile.setPreference("browser.helperApps.neverAsk.saveToDisk","text/csv"); | |
WebDriver driver = new FirefoxDriver(fxProfile); | |
driver.navigate().to("http://www.foo.com/bah.csv"); |
TimeZone | UTC offset | name | |
---|---|---|---|
Pacific/Midway | UTC-11:00 | Midway Island, American Samoa | |
Pacific/Honolulu | UTC-10:00 | Hawaii | |
America/Anchorage | UTC-08:00 | Alaska | |
America/Tijuana | UTC-07:00 | Baja California | |
America/Los_Angeles | UTC-07:00 | Pacific Time US and Canada) | |
America/Phoenix | UTC-07:00 | Arizona | |
America/Chihuahua | UTC-06:00 | Chihuahua, La Paz, Mazatlan | |
America/Denver | UTC-06:00 | Mountain Time US and Canada) | |
America/Belize | UTC-06:00 | Central America |
#!/bin/bash | |
# | |
FS_CONFIG_PATH=/etc/freeswitch | |
FS_CONF_PATH=/usr/src/newfies-dialer/install/freeswitch-conf | |
#Set branch to install develop / default: master | |
if [ -z "${INSTALL_FS}" ]; then | |
INSTALL_FS='yes' | |
fi |
### https://raw.github.com/github/gitignore/80a8803b004013d17291196825a327b9e871f009/Android.gitignore | |
# Built application files | |
*.apk | |
*.ap_ | |
# Files for the ART/Dalvik VM | |
*.dex | |
# Java class files |
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file | |
// for details. All rights reserved. Use of this source code is governed by a | |
// BSD-style license that can be found in the LICENSE file. | |
import 'package:flutter/material.dart'; | |
void main() => runApp(MyApp()); | |
class MyApp extends StatelessWidget { | |
@override |
saved_model_cli show --dir resnet/1
saved_model_cli show --dir resnet/1 --tag_set serve
bottomNavigationBar: Padding( | |
padding: const EdgeInsets.all(8.0), | |
child: Container( | |
decoration: BoxDecoration(boxShadow: [ | |
BoxShadow( | |
blurRadius: 4.0, | |
offset: Offset(0.0, 0.0), | |
color: Colors.grey, | |
), | |
], borderRadius: BorderRadius.circular(36.0)), |