Skip to content

Commit

Permalink
Merge pull request #38 from felixriese/fix-copyrights
Browse files Browse the repository at this point in the history
Fix copyrights
  • Loading branch information
felixriese committed Nov 19, 2022
2 parents 1d22c9c + 59f2b9b commit 005288d
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 41 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Change Log
==========

[1.2.3] - xxxx-xx-xx
--------------------
-

[1.2.2] - 2021-12-11
--------------------
- [ADDED] Official support for Python 3.10.
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
BSD 3-Clause License

Copyright (c) 2019-2021 Felix M. Riese.
Copyright (c) 2019-2022 Felix M. Riese.
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
3 changes: 1 addition & 2 deletions guide/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ features:
details: Support for unsupervised clustering and visualization, semi-supervised and supervised classification and regression.
- title: Built-in visualization
details: Present your data with SuSi through built-in plotting scripts and example notebooks.
footer: Copyright © 2019-2021 Felix M. Riese
footer: Copyright © 2019-2022 Felix M. Riese
# search: false

---
Expand All @@ -21,7 +21,6 @@ footer: Copyright © 2019-2021 Felix M. Riese

**SuSi** is a **Python package** for unsupervised, supervised, and semi-supervised learning. It is built as an estimator in [**scikit-learn**](https://scikit-learn.org) style and works with all currently-maintained [**Python 3**](https://python.org) versions.


This is a basic example on how to use **SuSi** for supervised classification:

```python
Expand Down
2 changes: 0 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# -*- coding: utf-8 -*-

# Copyright (c) 2019-2021 by Felix M. Riese. All rights reserved.

import setuptools

with open("README.rst", "r") as f:
Expand Down
7 changes: 1 addition & 6 deletions susi/SOMClassifier.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
"""SOMClassifier class.
Copyright (c) 2019-2021 Felix M. Riese.
All rights reserved.
"""
"""SOMClassifier class."""
from typing import Optional, Sequence, Tuple, Union

import numpy as np
Expand Down
7 changes: 1 addition & 6 deletions susi/SOMClustering.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
"""SOMClustering class.
Copyright (c) 2019-2021 Felix M. Riese.
All rights reserved.
"""
"""SOMClustering class."""

import itertools
from typing import List, Optional, Sequence, Tuple
Expand Down
7 changes: 1 addition & 6 deletions susi/SOMEstimator.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
"""SOMEstimator class.
Copyright (c) 2019-2021 Felix M. Riese.
All rights reserved.
"""
"""SOMEstimator class."""

from abc import ABC, abstractmethod
from typing import Optional, Sequence, Tuple, Union
Expand Down
7 changes: 1 addition & 6 deletions susi/SOMPlots.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
"""SOMPlots functions.
Copyright (c) 2019-2021 Felix M. Riese.
All rights reserved.
"""
"""SOMPlots functions."""

from typing import List, Tuple

Expand Down
7 changes: 1 addition & 6 deletions susi/SOMRegressor.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
"""SOMRegressor class.
Copyright (c) 2019-2021 Felix M. Riese.
All rights reserved.
"""
"""SOMRegressor class."""

import numpy as np
from sklearn.base import RegressorMixin
Expand Down
7 changes: 1 addition & 6 deletions susi/SOMUtils.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
"""SOMUtils functions.
Copyright (c) 2019-2021 Felix M. Riese.
All rights reserved.
"""
"""SOMUtils functions."""
from typing import Sequence, Tuple

import numpy as np
Expand Down

0 comments on commit 005288d

Please sign in to comment.