Skip to content

Instantly share code, notes, and snippets.

View CristiFati's full-sized avatar

Cristi Fati CristiFati

  • Cluj-Napoca, Romania
View GitHub Profile
@applenob
applenob / load_from_pb.py
Last active April 26, 2023 18:37
Load tensorflow model from frozen pb file.
# coding=utf-8
import tensorflow as tf
def get_session():
"""load a new session"""
config = tf.ConfigProto()
config.gpu_options.allow_growth = True
return tf.Session(config=config)
@ernestkamara
ernestkamara / AdbCommands
Created June 26, 2018 08:42 — forked from Pulimet/AdbCommands
Adb useful commands list
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
== Shell
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active June 21, 2024 01:45
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname