This repository has been archived by the owner on Dec 31, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLithicsoft Trainer Studio.csproj
89 lines (81 loc) · 3.02 KB
/
Lithicsoft Trainer Studio.csproj
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
82
83
84
85
86
87
88
89
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<RootNamespace>Lithicsoft_Trainer_Studio</RootNamespace>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<ApplicationIcon>Assets\Trainer-Studio.ico</ApplicationIcon>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<ItemGroup>
<None Remove="UserControls\Lithicsoft Trainer Studio.png" />
<None Remove="UserControls\Trainer Studio.png" />
</ItemGroup>
<ItemGroup>
<Content Include="Assets\Trainer-Studio.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.ML" Version="4.0.0" />
<PackageReference Include="Microsoft.ML.FastTree" Version="4.0.0" />
<PackageReference Include="Microsoft.ML.ImageAnalytics" Version="4.0.0" />
<PackageReference Include="Microsoft.ML.OnnxConverter" Version="0.22.0" />
<PackageReference Include="Microsoft.ML.TensorFlow" Version="4.0.0" />
<PackageReference Include="ModernWpf.MessageBox" Version="0.5.2" />
<PackageReference Include="ModernWpfUI" Version="0.9.6" />
<PackageReference Include="Notifications.Wpf" Version="0.1.1" />
<PackageReference Include="SciSharp.TensorFlow.Redist" Version="2.16.0" />
<PackageReference Include="System.Management" Version="9.0.0" />
</ItemGroup>
<ItemGroup>
<Resource Include="Assets\Lithicsoft Trainer Studio.png" />
<Resource Include="Assets\Trainer Studio.png" />
</ItemGroup>
<ItemGroup>
<Compile Update="CSharp\ValuePrediction.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="CSharp\VP\PrepareDataset.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="CSharp\VP\ModelResult.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="CSharp\VP\TestModel.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="CSharp\VP\TrainModel.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="Python\PY\PrepareDataset.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="Python\PY\ModelResult.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="Python\PY\TestModel.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="Python\PY\TrainModel.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="Python\Python.xaml.cs">
<SubType>Code</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<Page Update="CSharp\VP\PrepareDataset.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="CSharp\VP\ModelResult.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="CSharp\VP\TestModel.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="CSharp\VP\TrainModel.xaml">
<SubType>Designer</SubType>
</Page>
</ItemGroup>
</Project>