Skip to content

Instantly share code, notes, and snippets.

@n-taku
n-taku / MnistInference.cs
Last active August 8, 2020 13:31
UnityのBarracudaで推論するサンプル
using Unity.Barracuda;
public class MnistInference
{
readonly IWorker worker;
public MnistInference(NNModel modelAsset)
{
var runtimeModel = ModelLoader.Load(modelAsset);
worker = WorkerFactory.CreateWorker(WorkerFactory.Type.CSharpBurst, runtimeModel);
@n-taku
n-taku / DropoutSample.ipynb
Last active April 16, 2020 14:37
Dropoutを使った学習のサンプル
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@n-taku
n-taku / DropoutModelSample.ipynb
Created April 16, 2020 14:23
DropoutModelのSample
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@n-taku
n-taku / CIFAR10GAP.ipynb
Created April 12, 2020 17:41
CIFAR10でGAPを使ったSample
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@n-taku
n-taku / GAPModelSample.ipynb
Created April 12, 2020 17:35
GAPのサンプル
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@n-taku
n-taku / CIFAR10BN_model2.ipynb
Created March 29, 2020 04:23
BatchNormalizationのモデルのサンプル
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@n-taku
n-taku / CIFAR10BN_model1.ipynb
Created March 29, 2020 04:21
BatchNormalizationのモデルサンプル1
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@n-taku
n-taku / CIFIR10.ipynb
Last active March 28, 2020 09:22
CIFIR10のサンプル
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@n-taku
n-taku / CIFIR10_Model.ipynb
Created March 28, 2020 08:37
CIFIR10のモデルサンプル
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@n-taku
n-taku / CIFIR10_Sample.ipynb
Last active March 28, 2020 08:25
CIFIR10の表示サンプル
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.