Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Sesame

[![version](https://img.shields.io/github/v/release/intellistream/Sesame?color=green)](https://github.com/intellistream/Sesame/releases)
[![version](https://img.shields.io/badge/cpp-c%2B%2B20-red)](https://github.com/intellistream/Sesame)
[![version](https://img.shields.io/github/v/release/DataSysResearch/Sesame?color=green)](https://github.com/DataSysResearch/Sesame/releases)
[![version](https://img.shields.io/badge/cpp-c%2B%2B20-red)](https://github.com/DataSysResearch/Sesame)
[![pyversion](https://img.shields.io/pypi/pyversions/pysame.svg?color=)](https://pypi.org/project/pysame/)
[![os](https://img.shields.io/badge/os-linux-yellow)](https://github.com/intellistream/Sesame)
[![PyPI - License](https://img.shields.io/pypi/l/pysame.svg?color=orange)](https://github.com/intellistream/Sesame/blob/main/LICENSE)
[![os](https://img.shields.io/badge/os-linux-yellow)](https://github.com/DataSysResearch/Sesame)
[![PyPI - License](https://img.shields.io/pypi/l/pysame.svg?color=orange)](https://github.com/DataSysResearch/Sesame/blob/main/LICENSE)
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.8210331.svg)](https://zenodo.org/records/8210331)

## About
Expand Down Expand Up @@ -58,7 +58,7 @@ print(bne.partial_fit(X).predict(X))

### Checkout Source Code
```bash
git clone https://github.com/intellistream/Sesame --recursive --depth=1
git clone https://github.com/DataSysResearch/Sesame --recursive --depth=1
cd Sesame
```

Expand Down Expand Up @@ -146,9 +146,8 @@ Datasets can download from zenodo: https://zenodo.org/records/8210331
bibtex_show = {true},
selected = {true},
pdf = {papers/Sesame.pdf},
code = {https://github.com/intellistream/Sesame},
code = {https://github.com/DataSysResearch/Sesame},
doi = {10.1145/3589307},
url = {https://doi.org/10.1145/3589307}
}
```

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ classifiers = [
]

[project.urls]
Homepage = "https://github.com/intellistream/Sesame"
Issues = "https://github.com/intellistream/Sesame/issues"
Homepage = "https://github.com/DataSysResearch/Sesame"
Issues = "https://github.com/DataSysResearch/Sesame/issues"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def build_extension(self, ext: CMakeExtension) -> None:
name="pysame",
version=__version__,
author="Shuhao Zhang",
url="https://github.com/intellistream/Sesame",
url="https://github.com/DataSysResearch/Sesame",
description="Stream clustering algorithms on modern hardware",
long_description="This project aims at building a scalable stream mining library on modern hardware. The repo contains currently several representative real-world stream clustering algorithms and several synthetic algorithms.",
ext_modules=[CMakeExtension("pysame")],
Expand Down
Loading