shiyu22
shiyu22
Yes, you can run with another pypi source in the webserver container, for example: ```bash # 1. enter the webserver container $ docker exec -ti img-search-webserver bash # 2. install...
> Also, for check whether the figures are good or corrupted in /data in image_search_sever container. I also copy the figure from docker in to gpu sever. The result is...
Very happy finally it works :) The python package you mentioned will be automatically installed in the [Tohwee Operator](https://towhee.io/image-embedding/timm). It has corresponding requirements.txt in the operator but not in this...
@utopictown Hi, yes, you can call `create_index()` only once and Milvus will automatically build an index when the data size reaches the sealed segment size, which is determined by [datacoord.segment.maxSize](https://milvus.io/docs/v2.1.x/configure_datacoord.md#dataCoordsegmentmaxSize)...
I think this is related to your data scale and hardware. You can run `docker logs milvus-standalone` to view the logs. If there are any error messages, you can submit...
@hzjzxp I think it was caused by Milvus RootCoord, can you try only to [start Milvus](https://milvus.io/docs/v2.0.x/install_standalone-docker.md) and run [hello_milvus.py](https://milvus.io/docs/v2.0.x/example_code.md), anyway, please make sure you can run Milvus successfully before reverse...
@superior-god I think you need to check the 5000 port is already in use with `sudo netstat -an | grep 8000`.
@Devictor0815 One question is do you have your own MySQL in your machine? It seems like the setting of MySQL is only listening to the localhost, you can refer to...
Which solution are you using? What is your data size? You can log the time spent retrieving in your solution, for example in Milvus or Postgres, maybe you need to...
> Oh, yes, this interface is not work now. But there is a alternative solution: > > ```python > with open('./avatar.jpg', 'rb') as f: > content = base64.b64encode(f.read()) > file_box...