Install kaggle CLI.
pip install kaggle
Then make sure that you have kaggle.json
obtained from kaggle.com under $HOME/.kaggle/
.
sudo vi /etc/wpa_supplicant/wpa_supplicant.conf
, then add network={}
with your SSID and password (you can have more than one network section).sudo wpa_cli -i wlan0 reconfigure
wlan0
. (Later used to identify IP address from your laptop)ifconfig
to learn your subnet broadcast address (e.g. 10.0.0.255)const ndarray = require("ndarray"); | |
const ops = require("ndarray-ops"); | |
// Softmax in-place | |
const softmax = (() => { | |
function denom(arr, C) { | |
const tmp = ndarray(new Float32Array(arr.size)); | |
ops.assign(tmp, arr); | |
ops.addseq(tmp, -C); | |
ops.expeq(tmp); |
// Copyright 2016, Google, Inc. | |
// Licensed under the Apache License, Version 2.0 (the "License"); | |
// you may not use this file except in compliance with the License. | |
// You may obtain a copy of the License at | |
// | |
// http://www.apache.org/licenses/LICENSE-2.0 | |
// | |
// Unless required by applicable law or agreed to in writing, software | |
// distributed under the License is distributed on an "AS IS" BASIS, | |
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |