Skip to content

Instantly share code, notes, and snippets.

View rcr1994's full-sized avatar

Rohit Choudhary rcr1994

  • University of Konstanz
  • Konstanz
View GitHub Profile
@rcr1994
rcr1994 / tensorboard_logging.py
Created April 2, 2020 10:51 — forked from gyglim/tensorboard_logging.py
Logging to tensorboard without tensorflow operations. Uses manually generated summaries instead of summary ops
"""Simple example on how to log scalars and images to tensorboard without tensor ops.
License: BSD License 2.0
"""
__author__ = "Michael Gygli"
import tensorflow as tf
from StringIO import StringIO
import matplotlib.pyplot as plt
import numpy as np
@rcr1994
rcr1994 / .prettierrc.json
Created July 16, 2023 16:58
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.4.17+commit.bdeb9e52.js&optimize=false&runs=200&gist=
{
"overrides": [
{
"files": "*.sol",
"options": {
"printWidth": 80,
"tabWidth": 4,
"useTabs": false,
"singleQuote": false,
"bracketSpacing": false