Skip to content

Instantly share code, notes, and snippets.

View bhachauk's full-sized avatar
🎮
https://bhachauk.github.io

Bhanuchander Udhayakumar bhachauk

🎮
https://bhachauk.github.io
View GitHub Profile
@bhachauk
bhachauk / stack-overflow-reputation.html
Created January 10, 2020 14:45
StackOverflow information
<h3>Stack overflow Repuration</h3>
<div id="stack-rep">Value</div>
<script>
function getJSON(url) {
var resp ;
var xmlHttp ;
resp = '' ;
xmlHttp = new XMLHttpRequest();
@bhachauk
bhachauk / Early_stopping
Created April 28, 2020 11:48
Stop training when the requirment done...
class myCallback(tf.keras.callbacks.Callback):
def on_epoch_end(self, epoch, logs={}):
if(logs.get('accuracy')>0.6):
print("\nReached 60% accuracy so cancelling training!")
self.model.stop_training = True
FROM debian:buster-slim
ENV LANG=en_EN.UTF-8
RUN apt-get update \
&& apt-get install --no-install-recommends --no-install-suggests --allow-unauthenticated -y \
gnupg \
ca-certificates \
wget \