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
| name: cs182_hw2 | |
| channels: | |
| - pytorch | |
| - defaults | |
| dependencies: | |
| - _libgcc_mutex=0.1=main | |
| - argon2-cffi=20.1.0=py37h7b6447c_1 | |
| - async_generator=1.10=py37h28b3542_0 | |
| - attrs=20.3.0=pyhd3eb1b0_0 | |
| - backcall=0.2.0=pyhd3eb1b0_0 |
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
| bind r source-file ~/.tmux.conf | |
| set -g prefix C-a | |
| set -g set-titles on | |
| set -g set-titles-string '#(whoami)::#h::#(curl ipecho.net/plain;echo)' | |
| set -g default-terminal "screen-256color" | |
| # Status bar customization |
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
| #!/usr/bin/env python | |
| from __future__ import division | |
| import argparse | |
| import numpy as np | |
| import os | |
| import tempfile | |
| import time |
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
| name: "miniplaces VGG" | |
| layer { | |
| name: "data" | |
| type: "ImageData" | |
| top: "data" | |
| transform_param { | |
| mirror: false | |
| crop_size: 112 | |
| mean_value: 104 | |
| mean_value: 117 |
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
| name: "Miniplaces AlexNet" | |
| layer { | |
| name: "data" | |
| type: "ImageData" | |
| top: "data" | |
| top: "label" | |
| transform_param { | |
| mirror: true | |
| crop_size: 96 | |
| mean_value: 104 |