You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

LLama.Examples.csproj 1.8 kB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net6.0</TargetFramework>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <Nullable>enable</Nullable>
  7. <Platforms>AnyCPU;x64</Platforms>
  8. </PropertyGroup>
  9. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  10. <NoWarn>1701;1702;8604</NoWarn>
  11. </PropertyGroup>
  12. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  13. <NoWarn>1701;1702;8604</NoWarn>
  14. </PropertyGroup>
  15. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  16. <NoWarn>1701;1702;8604</NoWarn>
  17. </PropertyGroup>
  18. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  19. <NoWarn>1701;1702;8604</NoWarn>
  20. </PropertyGroup>
  21. <ItemGroup>
  22. <ProjectReference Include="..\LLama\LLamaSharp.csproj" />
  23. </ItemGroup>
  24. <ItemGroup>
  25. <None Update="Assets\chat-with-bob.txt">
  26. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  27. </None>
  28. <None Update="Assets\chat.txt">
  29. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  30. </None>
  31. <None Update="Assets\alpaca.txt">
  32. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  33. </None>
  34. <None Update="Assets\chat-with-vicuna-v0.txt">
  35. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  36. </None>
  37. <None Update="Assets\chat-with-vicuna-v1.txt">
  38. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  39. </None>
  40. <None Update="Assets\dan.txt">
  41. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  42. </None>
  43. <None Update="Assets\reason-act.txt">
  44. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  45. </None>
  46. </ItemGroup>
  47. </Project>

C#/.NET上易用的LLM高性能推理框架,支持LLaMA和LLaVA系列模型。