kgeoffrey / IceCream.jl

🍨 Light-weight Deep Learning framework 🍨

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

IceCream

Icecream is a light-weight deep learning framework that I created to experiment with and prototype.

Example:

using IceCream
using Plots

X_train, y_train, X_test, y_test = TitanicDataSet()

model = icecream()

structure = layers(
    dense(4, fastsigmoid),
    dense(3, swish),
    dense(1, sigmoid))

compile(model,
    layers = structure,
    X_train = X_train,
    Y_train = y_train,
    loss = binarycrossentropy,
    batchsize = 100)

train!(model, optimizer = NADAM, Ξ± = 0.001, epochs = 20)
plot(model.model_loss)

example

About

🍨 Light-weight Deep Learning framework 🍨


Languages

Language:Julia 100.0%