ILG2021

Results 40 comments of ILG2021

I have fine tune a flan-t5 model on my own small dataset about 1500 rows. But i find it not works. I only want to correct the error in my...

排版上有点小建议,回复的答案和摘自的内容可以在字体颜色或者大小上区分下,更加有层次。 不知道ui上能否区分管理员模式和普通用户模式,我希望普通用户无法对资料进行管理,只有对话界面。 另外很希望bce能支持微调。 llm建议支持书生 浦语,最近试用发现这个模型比较好。 有个问题想请教下大家,如何调教llm,让他尽可能直接给出问题的答案(我会上传一些问答题),而不是自己做总结?

you can create jsx file in the project. it will works too.

我也遇到这个问题,偶然机会知道解决方案,打包只要勾选PaddleOcr就可以解决,这个有点坑。PaddleOcr是默认识别库,好像他初始化的时候会初始化open cv。所以,去掉这个之后导致open cv没有初始化。而直接运行的时候好像所有ocr都带上的。

initOpenCvIfNeeded是异步的,根本没什么用。可以直接改成同步: ``` public void initOpenCvIfNeeded() { if (mOpenCvInitialized || OpenCVHelper.isInitialized()) { return; } mScriptRuntime.console.info("opencv initializing"); OpenCVLoader.initDebug(); mOpenCvInitialized = true; mScriptRuntime.console.info("opencv initialized"); } ``` 另外opencv依赖libc++_shared.so,paddleocr中也包含libc++_shared.so, 打包包含paddleocr凑巧解决了依赖。 解决依赖的方法是在app模块的jniLibs中增加libc++_shared.so即可 ![image](https://user-images.githubusercontent.com/93691919/204682433-764d4fd7-5e6a-4b79-8b00-c03dbcd28b90.png) 比较好的方式是在opencv aar加入libc++_shared.so,尝试了失败了。

different hardware, no comparison. I am using faster-whipser on a 1070ti. about 500ms for transcribing a everyday sentence by large-v2, very nice for me.

> 您好,请问MultipleContentSVC是否比如下方案: so-vits-4.1 whisper feature, nsf-hifigan ,use pretrained model on VCTK, M4Singer dataset, shallow diffusion, pretrain 330k steps, finetune 110k steps 效果更好呢?我们团队急需一个能超越so-vits-4.1的模型,我们对变声质量要求很高,找了很多, rvc, sovits 4.1, sovits 5, kits ai, audimee,...

I don't think so. It is a console and one dir app. I zip it and upload to dropbox. When i test it on another mac, it crashed, and I...