yum-archive/TaSTT-Whisper

High-performance GPGPU inference of OpenAI's Whisper automatic speech recognition (ASR) model

git clone https://git.yummers.dev/yum-archive/TaSTT-Whisper

KonstantinSource codes8c4603c

master
955 B24 linesraw
1<Project Sdk="Microsoft.NET.Sdk">
2	<PropertyGroup>
3		<TargetFramework>net6.0-windows</TargetFramework>
4		<ImplicitUsings>enable</ImplicitUsings>
5		<Nullable>enable</Nullable>
6		<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
7		<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
8		<GenerateDocumentationFile>True</GenerateDocumentationFile>
9		<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
10		<RootNamespace>Whisper</RootNamespace>
11		<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
12		<PlatformTarget>x64</PlatformTarget>
13	</PropertyGroup>
14	<PropertyGroup Condition="'$(Configuration)'=='Release'">
15		<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
16		<NuspecFile>WhisperNet.nuspec</NuspecFile>
17	</PropertyGroup>
18	<ItemGroup>
19		<Content Include="..\x64\Release\Whisper.dll" Link="Whisper.dll" />
20	</ItemGroup>
21	<ItemGroup>
22		<PackageReference Include="ComLightInterop" Version="1.3.7" />
23	</ItemGroup>
24</Project>