This has been moved to the
model-zoo
.
Meta-learning sine waves. See this post for details.
Example usage:
using MetaLearning, Flux
m = Chain(Linear(1, 64, tanh), Linear(64, 64, tanh), Linear(64, 1))
fomaml(m, epochs=50_000)
# OR
reptile(m, epochs=50_000)