liuxinglong
liuxinglong
hi 请问基于图片生成的视频分辨率如何提高? 怎么样设置生成的视频不是只有人头,能够包含原图片全身型像?
based on https://github.com/openai/whisper/discussions/66 I hack whisper LogitFilter class to boost the predicted probability of certain tokens. How can I do this with faster-whisper?
请问这个项目还在维护吗?什么时候能支持cuda11.7 cuda11.8 cuda12.0
paddle-serving-app 0.9.0 paddle-serving-client 0.9.0 paddle-serving-server-gpu 0.9.0.post112 paddlepaddle-gpu 2.6.0.post112 Traceback (most recent call last): File "/mnt/storage/anaconda3/envs/paddle/lib/python3.9/runpy.py", line 197, in _run_module_as_main return _run_code(code, main_globals, None, File "/mnt/storage/anaconda3/envs/paddle/lib/python3.9/runpy.py", line 87, in _run_code exec(code,...
RT 默认的auc_num是1,mmoe等多任务模型没有改成2, 在static_infer.py中,reset_auc 传参了1, if use_auc: reset_auc(use_fleet, auc_num) 导致计算出来的第二个任务的AUC是错的!
针对短问题匹配长文本(每段约1000字),目前SOTA的模型是什么?从哪里能看到所有的模型列表和相应的说明 我看semantic_search_example.py中query和passage都是使用的rocketqa-zh-nano-query-encoder。 在DensePassageRetriever中默认的参数是 `query_embedding_model: Union[Path, str] = "rocketqa-zh-dureader-query-encoder", passage_embedding_model: Union[Path, str] = "rocketqa-zh-dureader-para-encoder", ` 针对query和document是否要使用不同的模型?
RT 请问是有什么特殊的考虑吗?
CJKPDFReader读取的效果: 原始文档中截图: 对于我的文档,无论是用代码中的CJKPDFReader还是PyPDF2发现都有比较多的乱码和错误的换行符,文档切割的非常差,导致无法正常回答问题,请问有什么办法解决吗?
I have 2 GPUS, each on has 24G memory. when I run code below `model = SentenceTransformerSpecb( "bigscience/sgpt-bloom-7b1-msmarco", cache_folder = "/mnt/storage/agtech/modelCache", ) query_embeddings = model.encode(queries, is_query=True) ` got OutOfMemoryError, it...