Packages
neural_net
1.0.0
NeuralNet is an A.I. library that allows for the construction and training of complex recurrent neural networks. Architectures such as LSTM or GRU can be specified in under 20 lines of code. Any neural network that can be built with the NeuralNet DSL can be trainined with automatically implemente...
Current section
Files
Jump to
Current section
Files
lib/mix/tasks/sentence_complete.ex
defmodule Mix.Tasks.SentenceComplete do
@moduledoc false
use Mix.Task
def run(_) do
SampleProjects.Language.SentenceComplete.run()
end
end