Skip to content

Commit

Permalink
Updated version number
Browse files Browse the repository at this point in the history
  • Loading branch information
linqiaozhi committed Mar 30, 2020
1 parent 2659a9d commit d14f741
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion fast_tsne.R
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ fftRtsne <- function(X,
fast_tsne_path = NULL, nthreads = 0, perplexity_list = NULL,
get_costs = FALSE, df = 1.0) {

version_number <- '1.1.0'
version_number <- '1.2.0'

if (is.null(fast_tsne_path)) {
if (.Platform$OS.type == "unix") {
Expand Down
2 changes: 1 addition & 1 deletion fast_tsne.m
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
% IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
% OF SUCH DAMAGE.

version_number = '1.1.0';
version_number = '1.2.0';

% default parameters and flags
p.perplexity = 30;
Expand Down
2 changes: 1 addition & 1 deletion fast_tsne.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def fast_tsne(
is True.
"""

version_number = "1.1.0"
version_number = "1.2.0"

# X should be a numpy array of 64-bit doubles
X = np.array(X).astype(float)
Expand Down
2 changes: 1 addition & 1 deletion src/tsne.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2038,7 +2038,7 @@ void TSNE::save_data(const char *result_path, double* data, double* costs, int n


int main(int argc, char *argv[]) {
const char version_number[] = "1.1.0";
const char version_number[] = "1.2.0";
printf("=============== t-SNE v%s ===============\n", version_number);

// Define some variables
Expand Down

0 comments on commit d14f741

Please sign in to comment.