Job Description | Actual meaning |
---|---|
A fast-paced environment | Your job will be constant firefighting |
A market leader | Recently started making a profit |
Able to work with minimal spervision | You'll be the one we blame when something goes wrong |
An Agile team | We have daily stand-ups |
Dynamic environment | Our leadership keeps changing priorities |
Must be a team player | Must not question authority |
Ninja | You do all the work alone |
Passionate | You wil |
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
#/bin/bash | |
# Installs libfreetype6 2.8.0 into affected electron app. | |
# For more details ee: | |
# https://github.com/atom/atom/issues/15737 | |
# https://github.com/Microsoft/vscode/issues/35675 | |
CRT=$(dpkg-query --showformat='${Version}' --show libfreetype6) | |
CRT=$(echo $CRT | sed -e 's/-.*$//g') |
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
##################################################################### | |
# | |
# Installation Anaconda Tensorflow PyTorch Jupyter Notebook Ubuntu 18.04 Server Xfce4 VM Virtualbox | |
# https://ftp-stud.hs-esslingen.de/pub/Mirrors/releases.ubuntu.com/18.04/ | |
# | |
# Install | |
# ubuntu-18.04.2-live-server-amd64.iso | |
# sudo apt update && sudo apt upgrate && sudo apt install xfce4 | |
# 20:21 - 20:36 = 15 min ~ |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<!-- Load TFJS | |
loaded from https://github.com/tensorflow/tfjs --> | |
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs/dist/tf.min.js"> </script> | |
<title>Hello TFJS</title> | |
</head> | |
<body> |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs/dist/tf.min.js"> </script> | |
</head> | |
<body> | |
<p id="prediction">Prediction(100): </p> | |
<script> | |
async function run(){ | |
const model=tf.sequential(); |
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
a = tf.Constant(1.0, dtype=tf.float32) | |
b = tf.Constant(3.0, dtype=tf.float32) | |
c = a + b |
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 __future__ import absolute_import | |
from __future__ import division | |
from __future__ import print_function | |
from tensorflow.keras.layers import Lambda, Input, Dense | |
from tensorflow.keras.models import Model | |
from tensorflow.keras.losses import mse, binary_crossentropy | |
from tensorflow.keras.utils import plot_model | |
from tensorflow.keras import backend as K |
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 keras.layers import Input, Dense | |
from keras.models import Model | |
import matplotlib.pyplot as plt | |
import numpy as np | |
from sklearn.neighbors import LSHForest | |
import matplotlib.pyplot as plt | |
from keras.datasets import fashion_mnist | |
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 keras.datasets import mnist | |
import numpy as np | |
import matplotlib.pyplot as plt | |
from tensorflow.keras.layers import InputLayer, Conv2D, MaxPooling2D, Conv2DTranspose, Flatten, Dense, Reshape | |
from tensorflow.keras import Model, Sequential | |
import random | |
from scipy.ndimage.interpolation import zoom | |
from tensorflow.keras.models import load_model | |
from sklearn.metrics.pairwise import cosine_similarity |
OlderNewer