Skip to content

Instantly share code, notes, and snippets.

View seanshpark's full-sized avatar
🏠
Study dagre for netron ...

SaeHie Park seanshpark

🏠
Study dagre for netron ...
  • Samsung Electronics Co., Ltd.
  • Seoul
View GitHub Profile
@seanshpark
seanshpark / settings
Last active January 26, 2019 14:08
VSCode user settings
// Place your settings in this file to overwrite the default settings
{
// Controls the font size in pixels.
"editor.fontSize": 14.5,
"editor.tabSize": 2,
"editor.detectIndentation": false,
"editor.rulers": [80,100],
"editor.renderWhitespace": "all",
"editor.wordWrap": "off",
"editor.fontFamily": "Consolas, Menlo, Monaco, 'Courier New', monospace",
@seanshpark
seanshpark / how-to-install-latest-gcc-on-ubuntu-lts.txt
Created August 13, 2018 21:56 — forked from application2000/how-to-install-latest-gcc-on-ubuntu-lts.txt
How to install latest gcc on Ubuntu LTS (12.04, 14.04, 16.04)
These commands are based on a askubuntu answer http://askubuntu.com/a/581497
To install gcc-6 (gcc-6.1.1), I had to do more stuff as shown below.
USE THOSE COMMANDS AT YOUR OWN RISK. I SHALL NOT BE RESPONSIBLE FOR ANYTHING.
ABSOLUTELY NO WARRANTY.
If you are still reading let's carry on with the code.
sudo apt-get update && \
sudo apt-get install build-essential software-properties-common -y && \
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y && \
name: "GoogleNet"
layer {
name: "data"
type: "Input"
top: "data"
input_param { shape: { dim: 1 dim: 3 dim: 224 dim: 224 } }
}
layer {
name: "conv1/7x7_s2"
type: "Convolution"
Simple test ?