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
<h3>Stack overflow Repuration</h3> | |
<div id="stack-rep">Value</div> | |
<script> | |
function getJSON(url) { | |
var resp ; | |
var xmlHttp ; | |
resp = '' ; | |
xmlHttp = new XMLHttpRequest(); |
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
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 |
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
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 \ |
OlderNewer