/
aprogrammer
/
dotnet-docs
Обзор
Документация
Войти
/
aprogrammer
/
dotnet-docs
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
docs/machine-learning/tutorials/snippets/text-classification-tf/csharp/TextClassificationTF.csproj
36 строк
1 KB
dependabot[bot]
Bump the dotnet group (#43483)
13 ноя 2024, 15:31
Не верифицирован
13 ноя 2024, 15:31
7e30dcc
Код
Авторство
О чём код?
<Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>Exe</OutputType> <TargetFramework>net8.0</TargetFramework> <Nullable>enable</Nullable> <ImplicitUsings>enable</ImplicitUsings> </PropertyGroup> <ItemGroup> <PackageReference Include="Microsoft.ML" Version="4.0.0" /> <PackageReference Include="Microsoft.ML.SampleUtils" Version="0.22.0" /> <PackageReference Include="Microsoft.ML.TensorFlow" Version="4.0.0" /> <PackageReference Include="SciSharp.TensorFlow.Redist" Version="2.16.0" /> </ItemGroup> <ItemGroup> <Folder Include="sentiment_model\" /> </ItemGroup> <ItemGroup> <None Update="sentiment_model\imdb_word_index.csv"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None> <None Update="sentiment_model\saved_model.pb"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None> <None Update="sentiment_model\variables\variables.data-00000-of-00001"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None> <None Update="sentiment_model\variables\variables.index"> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> </None> </ItemGroup> </Project>