Pmaraveyias commited on
Commit
621ea7a
1 Parent(s): e47e236

updates readme with clustering

Browse files
Files changed (3) hide show
  1. .DS_Store +0 -0
  2. ClusterAnalysis/clusters.png +3 -0
  3. README.md +27 -1
.DS_Store ADDED
Binary file (6.15 kB). View file
 
ClusterAnalysis/clusters.png ADDED

Git LFS Details

  • SHA256: 1e8d0d9e45f3c7eb1aca73a10b27c83161f2c61ec77fb0815f811828db50d138
  • Pointer size: 131 Bytes
  • Size of remote file: 223 kB
README.md CHANGED
@@ -10,4 +10,30 @@ tags:
10
  - security
11
  size_categories:
12
  - 10M<n<100M
13
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  - security
11
  size_categories:
12
  - 10M<n<100M
13
+ ---
14
+
15
+ # Venafi Public Certificate Features Dataset
16
+
17
+ We are excited to announce the release of the Venafi Public Certificate Features dataset.
18
+ This collection of data contains extracted features from 19m+ certificates discovered on the public internet.
19
+ The features are a combination of X.509 certificate features, RFC5280 compliance checks,
20
+ and other attributes intended to be used for clustering, features analysis, and a base for supervised learning tasks (labels not included).
21
+ Some rows may contain nan values as well and as such could require some additional pre-processing for certain tasks.
22
+
23
+ Venafi is excited to engage with the data science community to increase the adoption of machine learning techniques
24
+ in the machine identity management and wider security domains.
25
+
26
+ ## Clustering and PCA Example
27
+
28
+ To demonstrate a potential use of the data, clustering and Principal Component Analysis (PCA) were
29
+ conducted on the binary data features in the dataset. 10 clusters were generated and PCA conducted with the top 3 components preserved.
30
+
31
+ KMeans clustering was performed to generate a total of 10 clusters. In this case we are primarily
32
+ interested in visualizing the data and understanding better how it may be used, so the choice of 10 clusters is mostly
33
+ for illustrative purposes.
34
+
35
+ The top three PCA components accounted for approximately 61%, 10%, and 6% of the total explained variance
36
+ (for a total of 77% of the overall data variance). A plot of these components in 3D space grouped into the 10 clusters is shown below.
37
+
38
+
39
+ ![](ClusterAnalysis/clusters.png)