umappp 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4e329dda5fe3d577f175b6c55059f165c4e9569ed14208785cd0a9184b5d14df
4
- data.tar.gz: 3e0a7ed9a3a7a08109019adef9dc5c1f9a88c82e77d28307875a719c4bb0551e
3
+ metadata.gz: d88fcf9fcf8f61232a094afbf62a7aa421c564e644a854bd2efc1ba94dd1ab02
4
+ data.tar.gz: a92531b8da81479a4844ec5f5073423eefdf3fb9d32bed6f7cbe867771116087
5
5
  SHA512:
6
- metadata.gz: 1838cffb49dcac3e8429d7d112bff2dca7d6a72608d1ca19889533c1d394d332da24457cade7179845901712176d3ae9af626ce372e1f6e444ab490203180b65
7
- data.tar.gz: bff7628b13e053fe337d9cf3b0ba37e68012440b943147303d0208c16491f82f45c7069e83e48084999f24b0b4880a0c510cac551059ff45d7302f4167428c28
6
+ metadata.gz: c56ce6be1fe5d9f296b512121be5e94cd844d2ea76ec75ad8e3224ace4023a45146da5cfe4fa779d557c99afbce85a22b951cd2b21a8b1f4f151c5911b13d12a
7
+ data.tar.gz: 21be7903f3aa0f03c0a60bf011415f115501e6741a94791465a6e25789ed2c411aed87042b11eeb15aa8ac43d39dff9000a30a7c79cdd0de1b310bd7f5b30044
data/README.md CHANGED
@@ -7,12 +7,12 @@
7
7
 
8
8
  ![image](https://user-images.githubusercontent.com/5798442/155692246-fa8e0fb0-33c2-4265-a1bf-228d4f80ebdb.png)
9
9
 
10
- > Uniform Manifold Approximation and Projection (UMAP) is a dimension reduction technique that can be used for visualisation similarly to t-SNE, but also for general non-linear dimension reduction.
10
+ > Uniform Manifold Approximation and Projection (UMAP) is a dimension reduction technique that can be used for visualisation similarly to t-SNE, but also for general non-linear dimension reduction.
11
11
  > ([original UMAP documentation](https://umap-learn.readthedocs.io/en/latest/index.html))
12
12
 
13
- * Ruby Umappp is a wrapper library for [C++ Umappp library](https://github.com/LTLA/umappp) created by Aaron Lun
14
- * Compatible with [yaumap](https://github.com/LTLA/yaumap)
15
- * Support [Numo::NArray](https://github.com/ruby-numo/numo-narray)
13
+ - Ruby Umappp is a wrapper library for [C++ Umappp library](https://github.com/LTLA/umappp) created by Aaron Lun
14
+ - Compatible with [yaumap](https://github.com/LTLA/yaumap)
15
+ - Support [Numo::NArray](https://github.com/ruby-numo/numo-narray)
16
16
 
17
17
  ## Installation
18
18
 
@@ -20,7 +20,7 @@
20
20
  gem install umappp
21
21
  ```
22
22
 
23
- * [OpenMP](https://www.openmp.org) is required for multithreading.
23
+ - [OpenMP](https://www.openmp.org) is required for multithreading.
24
24
 
25
25
  ## Usage
26
26
 
@@ -38,7 +38,7 @@ r = Umappp.run(pixels, num_threads: 8, a: 1.8956, b: 0.8006)
38
38
  Available parameters and their default values
39
39
 
40
40
  | parameters | default value |
41
- |----------------------|------------------------------------|
41
+ | -------------------- | ---------------------------------- |
42
42
  | method | :annoy (another option is :vptree) |
43
43
  | ndim | 2 |
44
44
  | local_connectivity | 1.0 |
@@ -77,14 +77,13 @@ cd script
77
77
 
78
78
  ### Ruby dependencies
79
79
 
80
- * [rice](https://github.com/jasonroelofs/rice) - Ruby Interface for C++ Extensions
81
- * [numo.hpp](https://github.com/ankane/numo.hpp) - C++ header for Numo and Rice
80
+ - [rice](https://github.com/jasonroelofs/rice) - Ruby Interface for C++ Extensions
81
+ - [numo.hpp](https://github.com/ankane/numo.hpp) - C++ header for Numo and Rice
82
82
 
83
83
  ### Umappp dependencies
84
84
 
85
85
  This Gem is a wrapper for [Umappp](https://github.com/LTLA/umappp). We store and distribute Umappp and other dependent C++ code in the Vendor directory. Umappp is compiled when the Gem is installed. Umappp's C++ modules have complex dependencies as shown in the figure below. It is not a good idea to manage them manually. Use `script/vendor.sh` to update them automatically. This actually runs cmake and moves the required directories to the vendor directory.
86
86
 
87
-
88
87
  ```mermaid
89
88
  graph TD;
90
89
  id1(eigen)-->CppIrlba;
@@ -113,7 +112,6 @@ Welcome!
113
112
 
114
113
  ## License
115
114
 
116
- * As for the code I wrote, it is BSD 2-Clause (or MIT).
117
- * The license of Umappp for C++ by Aaron Lun is BSD 2-Clause.
118
- * For other codes, please check on your own. (There are many dependencies)
119
-
115
+ - As for the code I wrote, it is BSD 2-Clause (or MIT).
116
+ - The license of Umappp for C++ by Aaron Lun is BSD 2-Clause.
117
+ - For other codes, please check on your own. (There are many dependencies)