This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # for CNN test for Fashion-MNIST | |
| defnetwork init_network9(_x) do | |
| _x | |
| # |> visualizer(1,1) | |
| |> f(5, 5, 1, 12, {1, 1}, 1, 0.1, 0.001) | |
| |> pooling(2, 2) | |
| |> f(3, 3, 12, 12, {1, 1}, 1, 0.1, 0.001) | |
| |> f(2, 2, 12, 12, {1, 1}, 1, 0.1, 0.001) | |
| |> pooling(2, 2) | |
| |> f(3, 3, 12, 12, {1, 1}, 0, 0.1, 0.001) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| defmodule Midi do | |
| @moduledoc """ | |
| Documentation for `Midi`. | |
| """ | |
| @doc """ | |
| Tarai function music. | |
| ## Examples |
OlderNewer