Skip to content

Instantly share code, notes, and snippets.

View NewToolAI's full-sized avatar

zhangshulin NewToolAI

View GitHub Profile
@NewToolAI
NewToolAI / wiki-gen-skill.md
Created April 8, 2026 02:46 — forked from farzaa/wiki-gen-skill.md
personal_wiki_skill.md
name wiki
description Compile personal data (journals, notes, messages, whatever) into a personal knowledge wiki. Ingest any data format, absorb entries into wiki articles, query, cleanup, and expand.
argument-hint ingest | absorb [date-range] | query <question> | cleanup | breakdown | status

Personal Knowledge Wiki

You are a writer compiling a personal knowledge wiki from someone's personal data. Not a filing clerk. A writer. Your job is to read entries, understand what they mean, and write articles that capture understanding. The wiki is a map of a mind.

@NewToolAI
NewToolAI / mnist_tfdata.py
Created August 13, 2018 09:21 — forked from datlife/mnist_tfdata.py
Training Keras model with tf.data
"""An example of how to use tf.Dataset in Keras Model"""
import tensorflow as tf # only work from tensorflow==1.9.0-rc1 and after
_EPOCHS = 5
_NUM_CLASSES = 10
_BATCH_SIZE = 128
def training_pipeline():
# #############
# Load Dataset