Skip to content

Instantly share code, notes, and snippets.

View felixdae's full-sized avatar

Zhangqiu Yu felixdae

  • lemei tech
  • ShenZhen, China
View GitHub Profile
import io
import numpy as np
from PIL import Image
import tensorflow as tf
class Tensorboard:
def __init__(self, logdir):
self.writer = tf.summary.FileWriter(logdir)
def close(self):