Skip to content

Instantly share code, notes, and snippets.

View iskyd's full-sized avatar

Mattia Careddu iskyd

View GitHub Profile
package main
import (
"net/http"
"database/sql"
"fmt"
"log"
"os"
)
@iskyd
iskyd / cifar10.jl
Created March 16, 2023 09:02
Flux Cifar-10
begin
using Flux, MLDatasets, Statistics
using Flux: onehotbatch, onecold, logitcrossentropy, params
using Base.Iterators: partition
using Printf, BSON
using CUDA
using ImageShow
using Images
CUDA.allowscalar(true)
end