billqu01

Results 12 issues of billqu01

请问有训练好的模型能直接下载使用的吗?

my code below, I upload a file to ipfs, then I want to get the file context, but I get nothing. public partial class Form1 : Form { IpfsEngine ipfs;...

My code: private async void GetData() { var ipfs = new IpfsEngine(); const string filename = "QmS4ustL54uo8FzR9455qaxZwuMiUhyvMcX9Ba8nUH4uVv/about"; string text = await ipfs.FileSystem.ReadAllTextAsync(filename); } when run at var ipfs = new...

I use nohup dotnet myapp.dll >8.log & But after a while, the application exit. the log file is: ^[[40m^[[32minfo^[[39m^[[22m^[[49m: Microsoft.Hosting.Lifetime[14] Now listening on: http://[::]:80 ^[[40m^[[32minfo^[[39m^[[22m^[[49m: Microsoft.Hosting.Lifetime[0] Application started. Press Ctrl+C...

untriaged

I try the project, run it, but error, the notify below. how to fix it? Traceback (most recent call last): File "D:\test\PSGAN-master\demo.py", line 72, in main() File "D:\test\PSGAN-master\demo.py", line 57,...

我把img_size 改为512,程序运行报错,256时正确,请问如何解决? def preprocess(img): return (img / 511. - 0.5) * 2 batch_size = 1 img_size = 512 报错: Traceback (most recent call last): File "D:\steelsoft\makeup_artist\main.py", line 58, in Xs_...

can you please give me a sample to save file to ipfs?

My partial code is as follows var ggmlType = GgmlType.Medium; var model_folder = System.IO.Path.GetDirectoryName(System.Windows.Forms.Application.ExecutablePath); var modelFileName = model_folder + System.IO.Path.DirectorySeparatorChar + "ggml-medium.bin"; try { var whisperFactory = WhisperFactory.FromPath(modelFileName, useGpu: true);...

I have installed Whisper.net.Runtime.Clblast My code is below: using var whisperFactory = WhisperFactory.FromPath("ggml-small.bin", useGpu: true); But cpu is worked, and gpu not. How to soluv? Thanks.

I have a nvidia 4070 video card with cuda 12.6 installed. I downloaded the latest version of whisper.cpp. Compiled as per the guide. cmake -B build -DGGML_CUDA=1 Error reported Call...