gitextract__bdmbe28/ ├── .gitattributes ├── .gitignore ├── .paket/ │ ├── Paket.Restore.targets │ └── paket.targets ├── Hype.sln ├── LICENSE.txt ├── README.md ├── Roadmap.txt ├── docs/ │ ├── .gitignore │ ├── BuildDocs.fsx │ └── input/ │ ├── FeedforwardNets.fsx │ ├── HMC.fsx │ ├── Optimization.fsx │ ├── RecurrentNets.fsx │ ├── Regression.fsx │ ├── Training.fsx │ ├── download.fsx │ ├── files/ │ │ └── misc/ │ │ ├── style.css │ │ ├── style_light.css │ │ └── tips.js │ ├── housing.data │ ├── index.fsx │ ├── resources/ │ │ └── Hype.pspimage │ └── templates/ │ ├── docpage.cshtml │ ├── reference/ │ │ ├── module.cshtml │ │ ├── namespaces.cshtml │ │ ├── part-members.cshtml │ │ ├── part-nested.cshtml │ │ └── type.cshtml │ ├── template.cshtml │ └── template.html ├── paket.dependencies └── src/ └── Hype/ ├── AssemblyInfo.fs ├── Classifier.fs ├── Hype.fs ├── Hype.fsproj ├── Inference.fs ├── NLP.fs ├── Neural.fs ├── Optimize.fs ├── app.config └── paket.references