Skip to content

Commit

Permalink
Removed anonymisation
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesAllingham committed Jul 16, 2018
1 parent f68db61 commit 59040a1
Show file tree
Hide file tree
Showing 15 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2018 John Doe
Copyright (c) 2018 James Allingham

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion auto_impute/auto_impute.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# John Doe
# James Allingham
# Feb 2018
# auto_impute.py
# Main file for AutoImpute CLI
Expand Down
2 changes: 1 addition & 1 deletion auto_impute/csv_reader.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# John Doe
# James Allingham
# Feb 2018
# csv_reader.py
# CSV reader for AutoImpute
Expand Down
2 changes: 1 addition & 1 deletion auto_impute/dp.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# John Doe
# James Allingham
# May 2018
# dp.py
# Imputation using a Dirichlet process
Expand Down
2 changes: 1 addition & 1 deletion auto_impute/gmm.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# John Doe
# James Allingham
# March 2018
# gmm.py
# Imputation using a Gaussian Mixture Model fitted using the EM algorithm
Expand Down
2 changes: 1 addition & 1 deletion auto_impute/mi.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# John Doe
# James Allingham
# April 2018
# mi.py
# Imputation by replacing missing values with the mean for the collumn
Expand Down
4 changes: 2 additions & 2 deletions auto_impute/mixed.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# John Doe
# James Allingham
# May 2018
# mixed.py
# Imputation using DPs and GMMs
Expand Down Expand Up @@ -121,7 +121,7 @@ def __init__(self, data, verbose=None, assignments=None, num_components=3, α0=N
self._calc_ll()

def _continuous_probs(self):
"""Returns the pronbility that each column is a continuous variable.
"""Returns the probability that each column is a continuous variable.
Args:
None.
Expand Down
2 changes: 1 addition & 1 deletion auto_impute/model.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# John Doe
# James Allingham
# March 2018
# Model.py
# Base class for all imputation models
Expand Down
2 changes: 1 addition & 1 deletion auto_impute/sg.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# John Doe
# James Allingham
# March 2018
# sg.py
# Imputation using a single Gaussian distribution fitted using the EM algorithm
Expand Down
2 changes: 1 addition & 1 deletion auto_impute/utilities.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# John Doe
# James Allingham
# March 2018
# utilities.py
# Common code shared between the various models.
Expand Down
2 changes: 1 addition & 1 deletion tests/test_dp.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# John Doe
# James Allingham
# May 2018
# test_SingleGaussianEM.py
# Tests for the Dirichlet process
Expand Down
2 changes: 1 addition & 1 deletion tests/test_gmm.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# John Doe
# James Allingham
# April 2018
# test_gmm.py
# Tests for the GMM module
Expand Down
2 changes: 1 addition & 1 deletion tests/test_mi.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# John Doe
# James Allingham
# April 2018
# test_mi.py
# Tests for the mi module
Expand Down
2 changes: 1 addition & 1 deletion tests/test_sg.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# John Doe
# James Allingham
# April 2018
# test_sg.py
# Tests for the single Gaussian fitted with EM
Expand Down
2 changes: 1 addition & 1 deletion tests/testing_utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# John Doe
# James Allingham
# April 2018
# test_utils.py
# Common utils for the unit tests.
Expand Down

0 comments on commit 59040a1

Please sign in to comment.