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
#------------------------------------------------------------------------------- | |
# Template configuration for compiling mxnet | |
# | |
# If you want to change the configuration, please use the following | |
# steps. Assume you are on the root directory of mxnet. First copy the this | |
# file so that any local changes will be ignored by git | |
# | |
# $ cp make/config.mk . | |
# | |
# Next modify the according entries, and then compile by |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
path: /media/psf/Backup/dataset-2-2.bag | |
version: 2.0 | |
duration: 58:53s (3533s) | |
start: Oct 04 2016 02:53:10.30 (1475520790.30) | |
end: Oct 04 2016 03:52:03.91 (1475524323.91) | |
size: 182.8 GB | |
messages: 5800842 | |
compression: none [211980/211980 chunks] | |
types: dataspeed_can_msgs/CanMessageStamped [33747cb98e223cafb806d7e94cb4071f] | |
dbw_mkz_msgs/BrakeInfoReport [fc88af128b5b3213ea25ab325a9b3bbb] |
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
path: dataset.bag | |
version: 2.0 | |
duration: 12:40s (760s) | |
start: Sep 30 2016 06:09:25.49 (1475186965.49) | |
end: Sep 30 2016 06:22:06.30 (1475187726.30) | |
size: 39.4 GB | |
messages: 1248992 | |
compression: none [45637/45637 chunks] | |
types: dataspeed_can_msgs/CanMessageStamped [33747cb98e223cafb806d7e94cb4071f] | |
dbw_mkz_msgs/BrakeInfoReport [fc88af128b5b3213ea25ab325a9b3bbb] |
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
# coding: utf-8 | |
import requests | |
import time | |
import os | |
store_url = 'https://reserve-prime.apple.com/CN/zh_CN/reserve/iPhoneX/stores.json' | |
stores = [('R388', '西单'), ('R448', '王府井')] | |
product = 'MQA82CH/A' | |
availability_url = 'https://reserve-prime.apple.com/CN/zh_CN/reserve/iPhoneX/availability.json' |
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
javascript:setInterval('$("[disabled]").removeAttr("disabled");$(".unavailable").removeClass("unavailable");',100); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
/* | |
The "hello world" of neural networks: a simple 3-layer feed-forward | |
network that implements an XOR logic gate. | |
The first layer is the input layer. It has two neurons a and b, which | |
are the two inputs to the XOR gate. | |
The middle layer is the hidden layer. This has two neurons h1, h2 that | |
will learn what it means to be an XOR gate. | |
NewerOlder