Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zilliztech/phantoscope
Open Source, Cloud Native, RESTful Search Engine Powered by Neural Networks
https://github.com/zilliztech/phantoscope
cloud-native deep-learning deep-neural-networks image-search machine-learning microservices milvus
Last synced: 3 months ago
JSON representation
Open Source, Cloud Native, RESTful Search Engine Powered by Neural Networks
- Host: GitHub
- URL: https://github.com/zilliztech/phantoscope
- Owner: zilliztech
- License: apache-2.0
- Archived: true
- Created: 2020-04-08T08:45:23.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-08-25T16:13:27.000Z (about 3 years ago)
- Last Synced: 2024-02-14T21:21:05.405Z (9 months ago)
- Topics: cloud-native, deep-learning, deep-neural-networks, image-search, machine-learning, microservices, milvus
- Language: Python
- Homepage:
- Size: 112 MB
- Stars: 142
- Watchers: 17
- Forks: 42
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
![](https://github.com/zilliztech/phantoscope/blob/master/.github/logo.png)
![CI](https://github.com/zilliztech/phantoscope/workflows/CI/badge.svg?branch=master)
![GitHub](https://img.shields.io/github/license/zilliztech/phantoscope)
![GitHub top language](https://img.shields.io/github/languages/top/zilliztech/phantoscope)
![GitHub commit activity](https://img.shields.io/github/commit-activity/m/zilliztech/phantoscope)
![GitHub release (latest by date including pre-releases)](https://img.shields.io/github/v/release/zilliztech/phantoscope?include_prereleases)
[![Language grade: Python](https://img.shields.io/lgtm/grade/python/g/zilliztech/phantoscope.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/zilliztech/phantoscope/context:python)
[![codecov](https://codecov.io/gh/zilliztech/phantoscope/branch/master/graph/badge.svg)](https://codecov.io/gh/zilliztech/phantoscope)Phantoscope is an image search suite powered by Milvus and neutral networks.
**Extremely high speed in processing and searching billions of images.**
**Compatible with Tensorflow, Pytorch, TensorRT, ONNX, XGBoost, and more.**
**Provides GUI for demonstrating search results and managing Phantoscope data.**
**Soon to establish an extension market, where you can share your extension with the world.**
**Native support for Docker and Kubernetes.**
English | [中文版](README_CN.md)
## Table of Contents
- [Background](#background)
- [Install](#install)
- [Quick Start](#quick-start)
- [Architecture diagram](#architecture-diagram)
- [Phantoscope Basics](#phantoscope-basics)
- [Tutorial](#tutorial)
- [API reference](#api-reference)
- [Contributing](#contributing)
- [Community](#community)
- [Roadmap](#roadmap)
- [License](#license)Your search should not be confined to key words and short sentences.
With the explosion of images and video data in human society, the legacy text search can hardly serve people's needs.
For example, an image involves a myriad of information, and different people have different interpretation of the same image. The existing search engines, be it full-text search or searching image by image, can no longer meet such flexible multi-dimensional search requirements.
Phantoscope is the right tool for you. Empowered by miscellaneous deep-learning models, portable image processing techniques, and Milvus vector search engine, it can offer a unique set of high-performance image searching interfaces to address such needs.
1. Download Phantoscope:
```bash
$ git clone https://github.com/zilliztech/phantoscope.git -b 0.2.0 && cd phantoscope
```2. Set up the environment:
```bash
$ export LOCAL_ADDRESS=$(ip a | grep -Eo 'inet (addr:)?([0-9]*\.){3}[0-9]*' | grep -Eo '([0-9]*\.){3}[0-9]*' | grep -v '127.0.0.1'| head -n 1)
```
3. Start up Phantoscope containers:```bash
$ docker-compose up -d
```4. Check the status of all containers:
``` bash
$ docker-compose ps
```*You are expected to see the following output:*
```
Name Command State Ports
----------------------------------------------------------------------------------------------------------------
phantoscope_api_1 /usr/bin/gunicorn3 -w 4 -b ... Up 0.0.0.0:5000->5000/tcp
phantoscope_milvus_1 /var/lib/milvus/docker-ent ... Up 0.0.0.0:19121->19121/tcp, 0.0.0.0:19530->19530/tcp
phantoscope_minio_1 /usr/bin/docker-entrypoint ... Up 0.0.0.0:9000->9000/tcp
phantoscope_mongo_1 docker-entrypoint.sh mongod Up 0.0.0.0:27017->27017/tcp
```Click [here](./docs/site/en/quickstart) to set up a basic Phantoscope application. You can use it to upload and search images.
![](./.github/phantoscope.png)
- [What is operator?](./docs/site/en/tutorials/operator.md)
- [What is pipeline?](./docs/site/en/tutorials/pipeline.md)
- [What is application?](./docs/site/en/tutorials/application.md)- [Try out Phantoscope Preview](./docs/site/en/tutorials/preview.md)
- [Create an application](./docs/site/en/examples/object.md)
- [Develop an operator](./operators/HowToAddAnOperator_en.md)Click [here](https://app.swaggerhub.com/apis-docs/phantoscope/Phantoscope/0.2.0) to read our latest RESTful API reference.
Contributions are welcomed and greatly appreciated.
Please read our [contribution guidelines](CONTRIBUTING.md) for detailed contribution workflow.
We use [GitHub issues](https://github.com/zilliztech/phantoscope/issues) to track issues and bugs.
For general questions and public discussions, please join our community.
- Try [our Slack Channel](https://join.slack.com/t/zillizworkplace/shared_invite/zt-enpvlmud-6gnqhPqQryhQLfj3BQhbew), if you run into issues and want to consult our experts.
[GitHub milestones](https://github.com/zilliztech/phantoscope/milestones) lays out the development plan for Phantoscope.
We hope you could team up with us in the development of Phantoscope.
Apache License 2.0