-
-
Notifications
You must be signed in to change notification settings - Fork 51.1k
Expand file tree
/
Copy pathdimensionality_reduction.py
More file actions
411 lines (331 loc) · 14.7 KB
/
Copy pathdimensionality_reduction.py
File metadata and controls
411 lines (331 loc) · 14.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
# Copyright (c) 2023 Diego Gasco (diego.gasco99@gmail.com), Diegomangasco on GitHub
"""
Requirements:
- numpy version 1.21
- scipy version 1.3.3
Notes:
- Each column of the features matrix corresponds to a class item
"""
import logging
import numpy as np
import pytest
from scipy.linalg import eigh
logging.basicConfig(level=logging.INFO, format="%(message)s")
def column_reshape(input_array: np.ndarray) -> np.ndarray:
"""Function to reshape a row Numpy array into a column Numpy array
>>> input_array = np.array([1, 2, 3])
>>> column_reshape(input_array)
array([[1],
[2],
[3]])
"""
return input_array.reshape((input_array.size, 1))
def covariance_within_classes(
features: np.ndarray, labels: np.ndarray, classes: int
) -> np.ndarray:
"""Function to compute the covariance matrix inside each class.
>>> features = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]])
>>> labels = np.array([0, 1, 0])
>>> covariance_within_classes(features, labels, 2)
array([[0.66666667, 0.66666667, 0.66666667],
[0.66666667, 0.66666667, 0.66666667],
[0.66666667, 0.66666667, 0.66666667]])
"""
covariance_sum = np.nan
for i in range(classes):
data = features[:, labels == i]
data_mean = data.mean(1)
# Centralize the data of class i
centered_data = data - column_reshape(data_mean)
if i > 0:
# If covariance_sum is not None
covariance_sum += np.dot(centered_data, centered_data.T)
else:
# If covariance_sum is np.nan (i.e. first loop)
covariance_sum = np.dot(centered_data, centered_data.T)
return covariance_sum / features.shape[1]
def covariance_between_classes(
features: np.ndarray, labels: np.ndarray, classes: int
) -> np.ndarray:
"""Function to compute the covariance matrix between multiple classes
>>> features = np.array([[9, 2, 3], [4, 3, 6], [1, 8, 9]])
>>> labels = np.array([0, 1, 0])
>>> covariance_between_classes(features, labels, 2)
array([[ 3.55555556, 1.77777778, -2.66666667],
[ 1.77777778, 0.88888889, -1.33333333],
[-2.66666667, -1.33333333, 2. ]])
"""
general_data_mean = features.mean(1)
covariance_sum = np.nan
for i in range(classes):
data = features[:, labels == i]
device_data = data.shape[1]
data_mean = data.mean(1)
if i > 0:
# If covariance_sum is not None
covariance_sum += device_data * np.dot(
column_reshape(data_mean) - column_reshape(general_data_mean),
(column_reshape(data_mean) - column_reshape(general_data_mean)).T,
)
else:
# If covariance_sum is np.nan (i.e. first loop)
covariance_sum = device_data * np.dot(
column_reshape(data_mean) - column_reshape(general_data_mean),
(column_reshape(data_mean) - column_reshape(general_data_mean)).T,
)
return covariance_sum / features.shape[1]
def principal_component_analysis(features: np.ndarray, dimensions: int) -> np.ndarray:
"""
Principal Component Analysis.
For more details, see: https://en.wikipedia.org/wiki/Principal_component_analysis.
Parameters:
* features: the features extracted from the dataset
* dimensions: to filter the projected data for the desired dimension
>>> test_principal_component_analysis()
"""
# Check if the features have been loaded
if features.any():
data_mean = features.mean(1)
# Center the dataset
centered_data = features - np.reshape(data_mean, (data_mean.size, 1))
covariance_matrix = np.dot(centered_data, centered_data.T) / features.shape[1]
_, eigenvectors = np.linalg.eigh(covariance_matrix)
# Take all the columns in the reverse order (-1), and then takes only the first
filtered_eigenvectors = eigenvectors[:, ::-1][:, 0:dimensions]
# Project the database on the new space
projected_data = np.dot(filtered_eigenvectors.T, features)
logging.info("Principal Component Analysis computed")
return projected_data
else:
logging.basicConfig(level=logging.ERROR, format="%(message)s", force=True)
logging.error("Dataset empty")
raise AssertionError
def linear_discriminant_analysis(
features: np.ndarray, labels: np.ndarray, classes: int, dimensions: int
) -> np.ndarray:
"""
Linear Discriminant Analysis.
For more details, see: https://en.wikipedia.org/wiki/Linear_discriminant_analysis.
Parameters:
* features: the features extracted from the dataset
* labels: the class labels of the features
* classes: the number of classes present in the dataset
* dimensions: to filter the projected data for the desired dimension
>>> test_linear_discriminant_analysis()
"""
# Check if the dimension desired is less than the number of classes
assert classes > dimensions
# Check if features have been already loaded
if features.any:
_, eigenvectors = eigh(
covariance_between_classes(features, labels, classes),
covariance_within_classes(features, labels, classes),
)
filtered_eigenvectors = eigenvectors[:, ::-1][:, :dimensions]
svd_matrix, _, _ = np.linalg.svd(filtered_eigenvectors)
filtered_svd_matrix = svd_matrix[:, 0:dimensions]
projected_data = np.dot(filtered_svd_matrix.T, features)
logging.info("Linear Discriminant Analysis computed")
return projected_data
else:
logging.basicConfig(level=logging.ERROR, format="%(message)s", force=True)
logging.error("Dataset empty")
raise AssertionError
def t_distributed_stochastic_neighbor_embedding(
features: np.ndarray,
dimensions: int = 2,
perplexity: float = 30.0,
learning_rate: float = 200.0,
max_iterations: int = 1000,
random_state: int = 42,
) -> np.ndarray:
"""
t-Distributed Stochastic Neighbor Embedding (t-SNE) algorithm for
dimensionality reduction.
t-SNE is a machine learning algorithm for visualization developed by
Laurens van der Maaten and Geoffrey Hinton. It is a nonlinear
dimensionality reduction technique particularly well suited for the
visualization of high-dimensional datasets.
For more details, see:
https://en.wikipedia.org/wiki/T-distributed_stochastic_neighbor_embedding
Original paper:
https://www.jmlr.org/papers/volume9/vandermaaten08a/vandermaaten08a.pdf
Parameters:
* features: Input data matrix where each column represents a data point
* dimensions: Number of dimensions for the output (typically 2 or 3)
* perplexity: Controls the effective number of neighbors (typically 5-50)
* learning_rate: Learning rate for gradient descent
* max_iterations: Maximum number of optimization iterations
* random_state: Random seed for reproducible results
Returns:
* projected_data: Low-dimensional representation of the input data
>>> # Test with simple 3D to 2D reduction
>>> features = np.array([[1, 2], [3, 4], [5, 6], [7, 8]], dtype=float).T
>>> result = t_distributed_stochastic_neighbor_embedding(
... features, dimensions=2, max_iterations=10
... )
>>> result.shape
(2, 4)
>>> # Test with invalid dimensions
>>> try:
... t_distributed_stochastic_neighbor_embedding(features, dimensions=0)
... except ValueError as e:
... print("ValueError raised for invalid dimensions")
ValueError raised for invalid dimensions
"""
if not isinstance(features, np.ndarray) or features.size == 0:
raise ValueError("Features must be a non-empty numpy array")
if dimensions <= 0:
raise ValueError("Dimensions must be a positive integer")
if perplexity <= 0:
raise ValueError("Perplexity must be positive")
if learning_rate <= 0:
raise ValueError("Learning rate must be positive")
if max_iterations <= 0:
raise ValueError("Max iterations must be positive")
rng = np.random.default_rng(random_state)
_, num_samples = features.shape
if num_samples < dimensions + 1:
min_samples = dimensions + 1
msg = (
f"Need at least {min_samples} samples for t-SNE with {dimensions} "
f"dimensions, but got {num_samples} samples"
)
raise ValueError(msg)
# Compute pairwise squared Euclidean distances
def compute_pairwise_distances(data: np.ndarray) -> np.ndarray:
"""Compute pairwise squared Euclidean distances."""
sum_data = np.sum(np.square(data), axis=0)
distances = sum_data + sum_data[:, np.newaxis] - 2 * np.dot(data.T, data)
return np.maximum(distances, 0) # Ensure non-negative
# Compute perplexity-based probabilities using binary search
def compute_conditional_probabilities(
distances: np.ndarray, target_perplexity: float
) -> np.ndarray:
"""Compute conditional probabilities with target perplexity."""
num_points = distances.shape[0]
probabilities = np.zeros((num_points, num_points))
for i in range(num_points):
# Binary search for optimal sigma
beta_min, beta_max = -np.inf, np.inf
beta = 1.0
for _ in range(50): # Max iterations for binary search
# Compute probabilities
exp_distances = np.exp(-distances[i] * beta)
exp_distances[i] = 0 # Set self-similarity to 0
sum_exp = np.sum(exp_distances)
if sum_exp == 0:
probabilities[i] = 0
break
current_probabilities = exp_distances / sum_exp
# Compute perplexity
entropy = -np.sum(
current_probabilities * np.log2(current_probabilities + 1e-12)
)
current_perplexity = 2**entropy
# Check if we're close enough
if abs(current_perplexity - target_perplexity) < 1e-5:
probabilities[i] = current_probabilities
break
# Adjust beta
if current_perplexity > target_perplexity:
beta_min = beta
beta = beta * 2 if beta_max == np.inf else (beta + beta_max) / 2
else:
beta_max = beta
beta = beta / 2 if beta_min == -np.inf else (beta + beta_min) / 2
else:
probabilities[i] = current_probabilities
return probabilities
# Compute high-dimensional probabilities
distances = compute_pairwise_distances(features)
conditional_probs = compute_conditional_probabilities(distances, perplexity)
# Symmetrize probabilities
high_dim_probs = (conditional_probs + conditional_probs.T) / (2 * num_samples)
high_dim_probs = np.maximum(high_dim_probs, 1e-12)
# Initialize low-dimensional embedding
projected_data = rng.normal(0, 1e-4, (dimensions, num_samples))
# Gradient descent optimization
momentum = np.zeros_like(projected_data)
for _ in range(max_iterations):
# Compute low-dimensional probabilities (Student-t distribution)
low_dim_distances = compute_pairwise_distances(projected_data)
low_dim_probs_denom = 1 + low_dim_distances
low_dim_probs_denom[np.diag_indices_from(low_dim_probs_denom)] = np.inf
low_dim_probs = 1 / low_dim_probs_denom
np.fill_diagonal(low_dim_probs, 0)
sum_low_dim = np.sum(low_dim_probs)
if sum_low_dim == 0:
low_dim_probs = np.ones_like(low_dim_probs) / (
num_samples * (num_samples - 1)
)
else:
low_dim_probs = low_dim_probs / sum_low_dim
low_dim_probs = np.maximum(low_dim_probs, 1e-12)
# Compute gradient
prob_diff = high_dim_probs - low_dim_probs
gradient = np.zeros_like(projected_data)
for i in range(num_samples):
diff = projected_data[:, i : i + 1] - projected_data
gradient[:, i] = np.sum(
(prob_diff[i] * (1 / low_dim_probs_denom[i])).reshape(1, -1) * diff,
axis=1,
)
gradient *= 4 # Factor from t-SNE gradient derivation
# Update with momentum
momentum = 0.5 * momentum - learning_rate * gradient
projected_data += momentum
logging.info("t-SNE computation completed")
return projected_data
def test_linear_discriminant_analysis() -> None:
# Create dummy dataset with 2 classes and 3 features
features = np.array([[1, 2, 3, 4, 5], [2, 3, 4, 5, 6], [3, 4, 5, 6, 7]])
labels = np.array([0, 0, 0, 1, 1])
classes = 2
dimensions = 2
# Assert that the function raises an AssertionError if dimensions > classes
with pytest.raises(AssertionError) as error_info: # noqa: PT012
projected_data = linear_discriminant_analysis(
features, labels, classes, dimensions
)
if isinstance(projected_data, np.ndarray):
raise AssertionError(
"Did not raise AssertionError for dimensions > classes"
)
assert error_info.type is AssertionError
def test_principal_component_analysis() -> None:
features = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]])
dimensions = 2
expected_output = np.array([[6.92820323, 8.66025404, 10.39230485], [3.0, 3.0, 3.0]])
with pytest.raises(AssertionError) as error_info: # noqa: PT012
output = principal_component_analysis(features, dimensions)
if not np.allclose(expected_output, output):
raise AssertionError
assert error_info.type is AssertionError
def test_t_distributed_stochastic_neighbor_embedding() -> None:
"""Test t-SNE algorithm with various input conditions."""
# Test with valid input
features = np.array([[1, 2, 3, 4], [5, 6, 7, 8]], dtype=float)
dimensions = 2
max_iterations = 10
result = t_distributed_stochastic_neighbor_embedding(
features, dimensions=dimensions, max_iterations=max_iterations
)
# Check the shape of the result
assert result.shape == (2, 4), f"Expected shape (2, 4), got {result.shape}"
# Test with empty array
try:
empty_features = np.array([])
t_distributed_stochastic_neighbor_embedding(empty_features)
raise AssertionError("Should raise ValueError for empty array")
except ValueError:
pass
# Test with invalid dimensions
try:
t_distributed_stochastic_neighbor_embedding(features, dimensions=0)
raise AssertionError("Should raise ValueError for invalid dimensions")
except ValueError:
pass
if __name__ == "__main__":
import doctest
doctest.testmod()