Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 424 Bytes

README.md

File metadata and controls

17 lines (11 loc) · 424 Bytes

MetaLearning

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)