Results 60 comments of shiyu22
trafficstars

Can you try to connect to the started MySQL? And refer to [this parameter](https://github.com/milvus-io/bootcamp/blob/master/solutions/reverse_image_search/quick_deploy/server/src/config.py#L12): ```python import pymysql conn = pymysql.connect(host='localhost', user='root', port=3306, password=123456, database='mysql', local_infile=True) conn.cursor() ``` If you can...

@valeriosofi Thanks for your answer, I tried `import tensorflow` and `import tvm` will take 2-3s, but my program is only related to tensor, is it possible not to import tensorflow...

> Hi jues!!! You raised a good point that is indeed missing in the documentation! You can load the model by running the following commands > > ``` > from...

I think Milvus required Python 3.71 or later, more information you can refer to the website: https://milvus.io/docs/v2.0.x/example_code.md#Preparations.

@GongZhengLi I think you can try Towhee, and there is an Example about [image depulication](https://github.com/towhee-io/examples/blob/main/image/image_deduplication/image_deduplication.ipynb). And you can resolve the large-scale data with Milvus. You can refer to [reverse-image-search](https://github.com/milvus-io/bootcamp/tree/master/solutions/reverse_image_search/quick_deploy#option-2-deploy-with-source-code) solution,...

@JinXia77 which version of docker-compose are you using? I think milvus is required Docker(19.03 or later) and Docker Compose(1.25.1 or later), you can check it with `docker --version` and `docker-compose...

Can you run `docker logs img-search-webserver` to get the log of webserver? And is there any error message? And I think the milvus-standalone is normal with the log(just some debug...

Please check you have successfully start all the docker images, and you can run `docker-compose ps` under **solutions/reverse_image_search/quick_deploy** to get the status of all container. And one question, are you...

@JinXia77 The status of the container seems normal. In the log you posted earlier, it was found that Milvus was successfully connected at the end. Can you try to rerun...

You can click load and check the Response. Seems like the webserver has not received the request if there no log in webserver.