- Eva Icons: MIT
- Clarity Icons (MIT License)
- Feather Icons (MIT License)
- BallIcons (Commercial, not FOSS)
- Glyphish
- IconBros: Nice icons for commercial use
- DevIcons: Icons for programming languages and tools (Java, Atom etc)
- FontAwesome: SVGs and iconfont
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
| const withLess = require('@zeit/next-less') | |
| const withTypescript = require('@zeit/next-typescript') | |
| const resolve = require('resolve') | |
| module.exports = withTypescript(withLess({ | |
| lessLoaderOptions: { | |
| javascriptEnabled: true, | |
| // theme antd here | |
| modifyVars: {'@primary-color': '#1Dd57A'} |
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
| package opt.test; | |
| import func.nn.backprop.BackPropagationNetwork; | |
| import func.nn.backprop.BackPropagationNetworkFactory; | |
| import func.nn.backprop.BatchBackPropagationTrainer; | |
| import func.nn.backprop.RPROPUpdateRule; | |
| import opt.OptimizationAlgorithm; | |
| import opt.RandomizedHillClimbing; | |
| import opt.SimulatedAnnealing; | |
| import opt.example.NeuralNetworkOptimizationProblem; |