x4080
x4080
Hi, I modified the code to generate open pose from image from command line, but it seems the result is not include the face landmark and the hands (it results...
Hi, how to make the color non randomize ? My use case is trying to create consistent color so that it can be used for ebsynth (maybe) Thanks
Bug : After the bot answer and we click "New Chat" the last answer is stuck in display, to fix it : ``` const reset = () => { store.set({...
Hello, love your chat starter kit. Do you plan to add responsive for mobile/tablets ? Thanks
Hi, I'm testing fastembed.js that using onnx (from nodejs), how can I replace the default onnxruntime with onnxruntime-silicon ? Thanks
Anybody has luck converting to coreml ? Thanks
Hi, my eziz is h6c, I'm using : pyezviz -u username -p pass -r apiisgp.ezvizlife.com mqtt here's the output: ``` DEBUG:urllib3.connectionpool:https://apiisgp.ezvizlife.com:443 "PUT /v3/apigateway/login HTTP/1.1" 200 785 DEBUG:urllib3.connectionpool:Starting new HTTPS connection...
Here's the embedding code : ``` from optimum.onnxruntime import ORTModelForFeatureExtraction from transformers import AutoModel, AutoTokenizer import numpy as np model_ort = ORTModelForFeatureExtraction.from_pretrained('BAAI/bge-small-en-v1.5', file_name="onnx/model.onnx") tokenizer = AutoTokenizer.from_pretrained('BAAI/bge-small-en-v1.5') model = AutoModel.from_pretrained('BAAI/bge-small-en-v1.5') ......
I seems cannot install it, is it supported ? Thanks
I fine tune gemma3-4b then save it as fp16 using ``` model.save_pretrained_merged(MODEL_DIR, tokenizer) ``` then upload it to HF using ``` from huggingface_hub import HfApi api = HfApi() api.upload_folder( folder_path=MODEL_DIR,...