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
{"defaultProfile":"{7e110037-3c10-4af1-a44d-6f14f98a1fe4}","initialRows":30,"initialCols":120,"alwaysShowTabs":true,"showTerminalTitleInTitlebar":true,"experimental_showTabsInTitlebar":true,"profiles":[{"startingDirectory":"%USERPROFILE%","guid":"{7e110037-3c10-4af1-a44d-6f14f98a1fe4}","name":"PowerShell","background":"#012456","colorscheme":"Campbell","historySize":9001,"snapOnInput":true,"cursorColor":"#FFFFFF","cursorShape":"bar","commandline":"powershell.exe","fontFace":"Courier New","fontSize":14,"acrylicOpacity":0.5,"useAcrylic":false,"closeOnExit":true,"padding":"0, 0, 0, 0"},{"startingDirectory":"%USERPROFILE%","guid":"{54e6282e-3246-4dbf-878c-2e69f8b28f88}","name":"Command Prompt","colorscheme":"Solarized Dark","historySize":9001,"snapOnInput":true,"cursorColor":"#00FF00","cursorShape":"bar","commandline":"cmd.exe","fontFace":"Consolas","fontSize":16,"acrylicOpacity":0.75,"useAcrylic":true,"closeOnExit":true,"padding":"0, 0, 0, 0"},{"startingDirectory":"%USERPROFILE%","guid":"{88e99110-e69f-4de7-9632 |
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
<?xml version="1.0"?> | |
<configuration> | |
<appSettings> | |
<add key="WSGI_ALT_VIRTUALENV_HANDLER" value="main.app" /> | |
<add key="WSGI_ALT_VIRTUALENV_ACTIVATE_THIS" | |
value="d:\home\python354x64\python.exe" /> | |
<add key="WSGI_HANDLER" | |
value="ptvs_virtualenv_proxy.get_venv_handler()" /> | |
<add key="PYTHONPATH" value="D:\home\site\wwwroot" /> | |
</appSettings> |
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
numpy==1.11.3 | |
scikit-learn==0.18.1 | |
click==6.7 | |
Flask==0.12.2 | |
itsdangerous==0.24 | |
Jinja2==2.9.6 | |
MarkupSafe==1.0 | |
Werkzeug==0.12.2 | |
cntk-gpu==2.6 | |
scipy==1.0.0 |
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
# Lab 2 - Loading data into a dataframe | |
# Lab 3 - Data Processing and finding data correlations | |
# Lab 4 - Encoding and scaling the data | |
# Lab 5 - Creationg the ANN | |
# Lab 6 - Model training and Visualization |
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
from theano import function, config, shared, tensor | |
import numpy | |
import time | |
vlen = 10 * 30 * 768 # 10 x #cores x # threads per core | |
iters = 1000 | |
rng = numpy.random.RandomState(22) | |
x = shared(numpy.asarray(rng.rand(vlen), config.floatX)) | |
f = function([], tensor.exp(x)) |
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
// ==UserScript== | |
// @name Convert Gmail to Inbox | |
// @namespace http://tampermonkey.net/ | |
// @version 0.2 | |
// @description Take the link to gmail and convert it into a link to inbox | |
// @author Cameron Vetter | |
// @match https://*.google.com/* | |
// @match http://*.google.com/* | |
// @grant none | |
// ==/UserScript== |
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
az account set --subscription <MYSUBSCRIPTIONID> | |
az batchai job create --config job.json --name CatOrDog-$(Get-Date -UFormat "%Y_%m_%d-%H_%M_%S") --cluster-name <MYCLUSTERNAME> --resource-group <MYCLUSTERRESOURCEGROUP> --location <MYCLUSTERLOCATION> |
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
{ | |
"properties": { | |
"nodeCount": 1, | |
"tensorFlowSettings": { | |
"pythonScriptFilePath": "$AZ_BATCHAI_MOUNT_ROOT/afs/CatOrDog/catordog.py", | |
"masterCommandLineArgs": "-p" | |
}, | |
"stdOutErrPathPrefix": "$AZ_BATCHAI_MOUNT_ROOT/afs/CatOrDog", | |
"inputDirectories": [ | |
{ |
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
az batchai cluster create --name neuralnetwork --image UbuntuDSVM --vm-size Standrd_NC6 --min 0 --max 1 --afs-name data --user-name <MyUsername> --password <MyPassword> -c clusterconfig.json --resource-group tensorflow2 --location westus2 --storage-account-name tensorflowdata --storage-account-key <MyStorageAccountKey> |
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
<system.webServer> | |
<security> | |
<ipSecurity allowUnlisted="false" denyAction="Forbidden"> | |
<add ipAddress="52.162.XXX.XXX" allowed="true" /> | |
<add ipAddress="40.124.XXX.XXX" allowed="true" /> | |
<add ipAddress="40.68.30.66" allowed="true" /> | |
<add ipAddress="40.68.31.178" allowed="true" /> | |
<add ipAddress="137.135.80.149" allowed="true" /> | |
<add ipAddress="137.135.82.249" allowed="true" /> | |
<add ipAddress="23.96.236.252" allowed="true" /> |
NewerOlder