-
Notifications
You must be signed in to change notification settings - Fork 66
/
climin.pyproj
81 lines (81 loc) · 3.31 KB
/
climin.pyproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{1e8caaee-4a8c-48ad-aa51-f7f049f13552}</ProjectGuid>
<ProjectHome>.</ProjectHome>
<StartupFile>
</StartupFile>
<SearchPath>
</SearchPath>
<WorkingDirectory>.</WorkingDirectory>
<OutputPath>.</OutputPath>
<Name>climin</Name>
<RootNamespace>climin</RootNamespace>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DebugSymbols>true</DebugSymbols>
<EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DebugSymbols>true</DebugSymbols>
<EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
</PropertyGroup>
<ItemGroup>
<Folder Include="climin\" />
<Folder Include="climin\stops\" />
<Folder Include="examples\" />
<Folder Include="test\" />
</ItemGroup>
<ItemGroup>
<Compile Include="climin\asgd.py" />
<Compile Include="climin\base.py" />
<Compile Include="climin\bfgs.py" />
<Compile Include="climin\cg.py" />
<Compile Include="climin\gd.py" />
<Compile Include="climin\initialize.py" />
<Compile Include="climin\lbfgs.py" />
<Compile Include="climin\linesearch.py" />
<Compile Include="climin\mathadapt.py" />
<Compile Include="climin\ncg.py" />
<Compile Include="climin\nes.py" />
<Compile Include="climin\nesterov.py" />
<Compile Include="climin\project.py" />
<Compile Include="climin\rmsprop.py" />
<Compile Include="climin\rprop.py" />
<Compile Include="climin\sbfgs.py" />
<Compile Include="climin\schedule.py" />
<Compile Include="climin\smd.py" />
<Compile Include="climin\stops\stops.py" />
<Compile Include="climin\stops\__init__.py" />
<Compile Include="climin\util.py" />
<Compile Include="climin\__init__.py" />
<Compile Include="examples\nnlrMNIST.py" />
<Compile Include="examples\nnMNIST.py" />
<Compile Include="examples\numericalGradientChecker.py" />
<Compile Include="examples\stop_converged.py" />
<Compile Include="examples\stop_criterions.py" />
<Compile Include="examples\stop_iterations.py" />
<Compile Include="examples\stop_timeelapsed.py" />
<Compile Include="examples\tongaMNIST.py" />
<Compile Include="examples\tongaMNISTscript10.py" />
<Compile Include="test\losses.py" />
<Compile Include="test\test_asgd.py" />
<Compile Include="test\test_bfgs.py" />
<Compile Include="test\test_cg.py" />
<Compile Include="test\test_gd.py" />
<Compile Include="test\test_initialize.py" />
<Compile Include="test\test_lbfgs.py" />
<Compile Include="test\test_linesearch.py" />
<Compile Include="test\test_ncg.py" />
<Compile Include="test\test_nes.py" />
<Compile Include="test\test_nesterov.py" />
<Compile Include="test\test_rprop.py" />
<Compile Include="test\test_sbfgs.py" />
<Compile Include="test\test_smd.py" />
<Compile Include="test\test_stops.py" />
<Compile Include="test\__init__.py" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.Common.targets" />
</Project>