-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhew.pyproj
52 lines (52 loc) · 2.25 KB
/
hew.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
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{6103e542-8962-4af3-b752-b6e441bdffd6}</ProjectGuid>
<ProjectHome />
<StartupFile />
<SearchPath />
<WorkingDirectory>.</WorkingDirectory>
<OutputPath>.</OutputPath>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'" />
<PropertyGroup Condition="'$(Configuration)' == 'Release'" />
<ItemGroup>
<Compile Include="hew\classifiers\c45.py" />
<Compile Include="hew\classifiers\__init__.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="hew\clusters\k_means.py" />
<Compile Include="hew\clusters\__init__.py" />
<Compile Include="hew\normalizer.py" />
<Compile Include="hew\structures\bk_tree.py" />
<Compile Include="hew\structures\kd_tree.py" />
<Compile Include="hew\structures\monte_carlo.py" />
<Compile Include="hew\structures\node.py" />
<Compile Include="hew\structures\running_statistics.py" />
<Compile Include="hew\structures\vector.py" />
<Compile Include="hew\structures\__init__.py">
<SubType>Code</SubType>
</Compile>
<Compile Include="hew\__main__.py" />
<Compile Include="setup.py" />
<Compile Include="hew\__init__.py" />
<Compile Include="tests\c45_test.py" />
<Compile Include="tests\bk_tree_test.py" />
<Compile Include="tests\kd_tree_test.py" />
<Compile Include="tests\k_means_test.py" />
<Compile Include="tests\normalizer_test.py" />
<Compile Include="tests\__init__.py" />
</ItemGroup>
<ItemGroup>
<Folder Include="hew" />
<Folder Include="hew\classifiers\" />
<Folder Include="hew\clusters\" />
<Folder Include="hew\structures\" />
<Folder Include="tests" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.Common.targets" />
</Project>