Skip to content

Commit

Permalink
Name fully changed, updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
rhysnewell committed Dec 21, 2020
1 parent c27faf9 commit d426c44
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 15 deletions.
2 changes: 1 addition & 1 deletion flight/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.1"
__version__ = "1.0.0"
1 change: 0 additions & 1 deletion flight/binning.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
__copyright__ = "Copyright 2020"
__credits__ = ["Rhys Newell"]
__license__ = "GPL3"
__version__ = "0.0.1"
__maintainer__ = "Rhys Newell"
__email__ = "rhys.newell near hdr.qut.edu.au"
__status__ = "Development"
Expand Down
1 change: 0 additions & 1 deletion flight/cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
__copyright__ = "Copyright 2020"
__credits__ = ["Rhys Newell"]
__license__ = "GPL3"
__version__ = "0.0.1"
__maintainer__ = "Rhys Newell"
__email__ = "rhys.newell near hdr.qut.edu.au"
__status__ = "Development"
Expand Down
13 changes: 3 additions & 10 deletions flight/flock.py → flight/flight.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,11 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
# #
###############################################################################

from flock.__init__ import __version__
__author__ = "Rhys Newell"
__copyright__ = "Copyright 2020"
__credits__ = ["Rhys Newell"]
__license__ = "GPL3"
__version__ = "0.0.1"
__maintainer__ = "Rhys Newell"
__email__ = "rhys.newell near hdr.qut.edu.au"
__status__ = "Development"
Expand Down Expand Up @@ -234,12 +233,6 @@ def main():
dest="n_neighbors",
default=100)

bin_options.add_argument(
'--min_dist',
help=
'Minimum distance used by UMAP during construction of high dimensional graph',
dest="min_dist",
default=0.1)

bin_options.add_argument(
'--a_spread',
Expand Down Expand Up @@ -389,8 +382,8 @@ def bin(args):
n_components=int(args.n_components),
cluster_selection_method=args.cluster_selection_method,
threads=int(args.threads),
a=float(args.a_spread),
b=float(args.b_tail),
a=float(args.a),
b=float(args.b),
)

clusterer.fit_transform()
Expand Down
1 change: 0 additions & 1 deletion flight/metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
__copyright__ = "Copyright 2020"
__credits__ = ["Rhys Newell"]
__license__ = "GPL3"
__version__ = "0.0.1"
__maintainer__ = "Rhys Newell"
__email__ = "rhys.newell near hdr.qut.edu.au"
__status__ = "Development"
Expand Down
4 changes: 3 additions & 1 deletion flight/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
__copyright__ = "Copyright 2020"
__credits__ = ["Rhys Newell"]
__license__ = "GPL3"
__version__ = "0.0.1"
__maintainer__ = "Rhys Newell"
__email__ = "rhys.newell near hdr.qut.edu.au"
__status__ = "Development"
Expand All @@ -32,6 +31,8 @@
import warnings
import logging
import re
import io
from os.path import dirname, join

# Function imports
import numpy as np
Expand All @@ -45,6 +46,7 @@
############################################################################### [44/1010]
################################ - Functions - ################################


def mp_cluster(df, n, gamma, ms, method='eom', metric='euclidean', allow_single_cluster=False):
"""
Asynchronous parallel function for use with hyperparameter_selection function
Expand Down

0 comments on commit d426c44

Please sign in to comment.