Skip to content

This is my summer project: A website to showcase my prints and projects.




Art only exists because of technology. What’s the first art in human history? Cave drawings. What’s the technology? Fire. They couldn’t do that without fire and the burnt stick. There is no art without technology. Art and technology are symbiotic.

Intro image

Current Projects — Current Projects — Current Projects — Current Projects — Current Projects — Current Projects — Current Projects — Current Projects —

Prints

Projects

Digit Recognizer

MNIST Digit Classifier

A convolutional neural network built with Keras that recognizes handwritten digits from the MNIST dataset.

MNIST Digit Classifier — Model Code
model2 = Sequential([
        keras.layers.Conv2D(32, (3, 3), activation='relu', input_shape=(28, 28, 1)),
        keras.layers.Flatten(),
        keras.layers.Dense(256, activation='relu'),
        keras.layers.Dense(128, activation='relu'),
        keras.layers.Dense(num_labels, activation='softmax')
    ])

Other

More coming soon…

JOIN MY MAILING LIST