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
793 B27 linesraw
1<Project Sdk="Microsoft.NET.Sdk">
2
3	<PropertyGroup>
4		<OutputType>Exe</OutputType>
5		<TargetFramework>net6.0-windows</TargetFramework>
6		<ImplicitUsings>enable</ImplicitUsings>
7		<Nullable>enable</Nullable>
8		<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
9		<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
10		<Platforms>x64</Platforms>
11	</PropertyGroup>
12
13	<ItemGroup>
14	  <Compile Include="..\TranscribeCS\AnsiCodes.cs" Link="AnsiCodes.cs" />
15	</ItemGroup>
16
17	<ItemGroup>
18		<Content Include="..\..\x64\$(Configuration)\Whisper.dll" Link="Whisper.dll">
19			<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
20		</Content>
21	</ItemGroup>
22
23	<ItemGroup>
24		<ProjectReference Include="..\..\WhisperNet\WhisperNet.csproj" />
25	</ItemGroup>
26
27</Project>