Added README to vcxproj
This commit is contained in:
parent
a7c0fb8b33
commit
953db0a17e
3 changed files with 9 additions and 1 deletions
|
@ -88,6 +88,9 @@
|
||||||
<ClInclude Include="Net.h" />
|
<ClInclude Include="Net.h" />
|
||||||
<ClInclude Include="Neuron.h" />
|
<ClInclude Include="Neuron.h" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="README.md" />
|
||||||
|
</ItemGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
<ImportGroup Label="ExtensionTargets">
|
<ImportGroup Label="ExtensionTargets">
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
|
|
|
@ -39,4 +39,7 @@
|
||||||
<Filter>Header Files</Filter>
|
<Filter>Header Files</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="README.md" />
|
||||||
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
|
@ -1,2 +1,4 @@
|
||||||
# Neuro
|
# Neuro
|
||||||
This is my neural net sandbox. Mainly I'm following David Miller's tutorial at https://vimeo.com/19569529 while trying to wrap my brain around back-propagation, hyperplanes and life.
|
This is my neural net sandbox. Mostly, I'm following David Miller's
|
||||||
|
(http://www.millermattson.com/) tutorial at https://vimeo.com/19569529 while trying
|
||||||
|
to wrap my brain around back-propagation, hyperplanes and life itself.
|
||||||
|
|
Loading…
Reference in a new issue