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
Person | |
Car | |
Bicycle | |
Bus | |
Motorbike | |
Train | |
Aeroplane | |
Chair | |
Bottle | |
Dining Table |
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
rm -rf `find -type d -name .ipynb_checkpoints` |
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
import json | |
import asyncio | |
import websockets | |
def _check_mode(msg): | |
return "Auto" if msg and msg[:2] == '42' else "Manual" | |
def _parse_telemetry(msg): | |
msg_json = msg[2:] | |
parsed = json.loads(msg_json) |
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
""" | |
I was having a problem of CUDNN HANDLE ERROR IN CONVOLUTIONAL NEURAL NETWORK USING TENSORFLOW 1.14 GPU | |
MY ENVIRONMENT, Corei7, Ubuntu 18.04, RTX 2070 Super | |
The following is a test code . The solution is under ###SOLUTION comment. | |
""" | |
from tensorflow.examples.tutorials.mnist import input_data | |
import tensorflow as tf | |
### SOLUTION STARTS | |
config = tf.ConfigProto() | |
config.gpu_options.allow_growth = True |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.