Skip to content

Commit

Permalink
Improved: Updated column names for the embedded data sets.
Browse files Browse the repository at this point in the history
  • Loading branch information
AAnzel committed Dec 10, 2021
1 parent 32f3a4d commit ec51442
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -1276,7 +1276,7 @@ def work_with_fasta(data_set_type, folder_path, key_suffix):
list_of_vectors = vectorize_mags(
w2v_model, path_fasta=folder_path, end=num_of_fasta_files)

column_names = ['Dimension ' + str(i) for i in range(VECTOR_SIZE)]
column_names = ['dim ' + str(i) for i in range(VECTOR_SIZE)]
df = pd.DataFrame(list_of_vectors, columns=column_names)
list_of_dates = create_temporal_column(
fasta_files, None, None, 'TIMESTAMP')
Expand Down

0 comments on commit ec51442

Please sign in to comment.