Skip to content

Commit

Permalink
Merge pull request #5 from zhuwenxing/dev
Browse files Browse the repository at this point in the history
fix lint
  • Loading branch information
zhuwenxing authored Mar 14, 2023
2 parents 3d0eb7c + 495746b commit 0712b6d
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 30 deletions.
23 changes: 13 additions & 10 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,30 +1,33 @@
name: Lint

on:
- push
- pull_request
branch:
- main
push:
branches:
- main
pull_request:
branches:
- main
jobs:
awesome-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v1
- uses: actions/setup-node@v3
with:
node-version: 15
node-version: 16
- run: npm install --global awesome-lint
- run: awesome-lint README.md
awesome-bot:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-ruby@v1
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
ruby-version: "3.0"
bundler-cache: true
- run: gem install awesome_bot
- run: awesome_bot README.md --allow 302,307 --allow-ssl --allow-dupe --white-list "linode.com"
41 changes: 21 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Awesome Milvus [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome)
# Awesome Milvus [![Awesome](https://awesome.re/badge.svg)](https://awesome.re)

> 🎉 A curated list of awesome things related to Milvus.
Expand All @@ -8,45 +8,46 @@

## Contents

- [Projects](#project)
- [Projects](#projects)
- [SDKs](#sdks)
- [Tools](#tools)
- [Related repos](#related-repos)
- [Papers](#papers)
- [Contribute](#contribute)

## Projects

- [towhee](https://github.com/towhee-io/towhee) Towhee is a framework that helps you encode your unstructured data into embeddings.
- [haystack](https://github.com/deepset-ai/haystack) Haystack is an open source NLP framework that leverages Transformer models.
- [NVTabular](https://github.com/NVIDIA-Merlin/NVTabular) NVTabular is a feature engineering and preprocessing library for tabular data designed to quickly and easily manipulate terabyte scale datasets used to train deep learning based recommender systems.
- [milvus-bootcamp](https://github.com/milvus-io/bootcamp) Dealing with all unstructured data, such as reverse image search, audio search, molecular search, video analysis, question and answer systems, NLP, etc
- [towhee](https://github.com/towhee-io/towhee) - Towhee is a framework that helps you encode your unstructured data into embeddings.
- [haystack](https://github.com/deepset-ai/haystack) - Haystack is an open source NLP framework that leverages Transformer models.
- [NVTabular](https://github.com/NVIDIA-Merlin/NVTabular) - NVTabular is a feature engineering and preprocessing library for tabular data designed to quickly and easily manipulate terabyte scale datasets used to train deep learning based recommender systems.
- [milvus-bootcamp](https://github.com/milvus-io/bootcamp) - Dealing with all unstructured data, such as reverse image search, audio search, molecular search, video analysis, question and answer systems, NLP, etc.

## SDKs

- [pymilvus](https://github.com/milvus-io/pymilvus)
- [milvus-sdk-go](https://github.com/milvus-io/milvus-sdk-go)
- [milvus-sdk-java](https://github.com/milvus-io/milvus-sdk-java)
- [milvus-sdk-node](https://github.com/milvus-io/milvus-sdk-node)
- [qmilvus](https://github.com/yangkequn/q-milvus-driver-for-go) a simple go milvus connector
- [pymilvus](https://github.com/milvus-io/pymilvus) - SDK for Python.
- [milvus-sdk-go](https://github.com/milvus-io/milvus-sdk-go) - SDK for Golang.
- [milvus-sdk-java](https://github.com/milvus-io/milvus-sdk-java) - SDK for Java.
- [milvus-sdk-node](https://github.com/milvus-io/milvus-sdk-node) - SDK for Node.
- [qmilvus](https://github.com/yangkequn/q-milvus-driver-for-go) - A simple go milvus connector.

## Tools

- [attu](https://github.com/zilliztech/attu)
- [milvus_cli](https://github.com/zilliztech/milvus_cli)
- [milvus-operator](https://github.com/milvus-io/milvus-operator)
- [milvus-helm](https://github.com/milvus-io/milvus-helm)
- [attu](https://github.com/zilliztech/attu) - A Web UI.
- [milvus_cli](https://github.com/zilliztech/milvus_cli) - A CLI tool.
- [milvus-operator](https://github.com/milvus-io/milvus-operator) - Milvus operator for k8s deployment.
- [milvus-helm](https://github.com/milvus-io/milvus-helm) - Helm chart for Milvus deployment.

## Related repos

- [faiss](https://github.com/facebookresearch/faiss)
- [hnsw](https://github.com/nmslib/hnswlib)
- [annoy](https://github.com/spotify/annoy)
- [faiss](https://github.com/facebookresearch/faiss) - Faiss lib.
- [hnsw](https://github.com/nmslib/hnswlib) - HNSW lib.
- [annoy](https://github.com/spotify/annoy) - Annoy lib.

## Papers

- [milvus 1.0](https://dl.acm.org/doi/abs/10.1145/3448016.3457550)
- [milvus 1.0](https://dl.acm.org/doi/abs/10.1145/3448016.3457550) - Sigmoid paper.


## Contribute

Contributions welcome! Read the [contribution guidelines](contributing.md) first.
Contributions welcome! Read the [contribution guidelines](contributing.md) first.

0 comments on commit 0712b6d

Please sign in to comment.