Skip to content

Commit 02c0c7b

Browse files
authored
Merge pull request #184 from lanl/develop
Adding v0.0.37
2 parents 4561828 + 9957f2b commit 02c0c7b

File tree

155 files changed

+63785
-251
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

155 files changed

+63785
-251
lines changed

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 0.0.36
1+
version: 0.0.37
22
message: "If you use this software, please cite it as below."
33
authors:
44
- family-names: Eren
@@ -20,7 +20,7 @@ authors:
2020
- family-names: Alexandrov
2121
given-names: Boian
2222
title: "Tensor Extraction of Latent Features (T-ELF)"
23-
version: 0.0.36
23+
version: 0.0.37
2424
url: https://github.com/lanl/T-ELF
2525
doi: 10.5281/zenodo.10257897
2626
date-released: 2023-12-04

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,15 +107,15 @@ python post_install.py # use the following, for example, for GPU system: <python
107107
|:----------:|:-------------------:|:-------------------:|:------------------------------------------------------------------:|:-----------:|:------------------:|
108108
| Vulture | :heavy_check_mark: | :heavy_check_mark: | Advanced text processing tool for cleaning and NLP | [Link](examples/Vulture) | :white_check_mark: |
109109
| Beaver | :heavy_check_mark: | :heavy_check_mark: | Fast matrix and tensor building tool for text mining | [Link](examples/Beaver) | :white_check_mark: |
110-
| iPenguin | | | Online Semantic Scholar information retrieval tool | | :soon: |
111-
| Orca | | | Duplicate author detector for text mining and information retrival | | :soon: |
110+
| iPenguin | :heavy_check_mark: | | Online information retrieval tool for Scopus, SemanticScholar, and OSTI | [Link](examples/iPenguin) | :white_check_mark: |
111+
| Orca | :heavy_check_mark: | | Duplicate author detector for text mining and information retrieval | [Link](examples/Orca) | :white_check_mark: |
112112

113113
### TELF.post_processing
114114

115115
| **Method** | **Description** | **Example** | **Release Status** |
116116
|:----------:|:----------------------------------------------------------:|:-----------:|:------------------:|
117+
| Wolf | Graph centrality and ranking tool | [Link](examples/Wolf) | :white_check_mark: |
117118
| Peacock | Data visualization and generation of actionable statistics | | :soon: |
118-
| Wolf | Graph centrality and ranking tool | | :soon: |
119119
| Fox | Report generation tool for text data | | :soon: |
120120
| SeaLion | Generic report generation tool | | :soon: |
121121

TELF/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
import sys
33
sys.path += ["factorization"]
44
sys.path += ["pre_processing"]
5+
sys.path += ["post_processing"]
56
sys.path += ["applications"]

TELF/post_processing/Wolf/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
from .wolf import Wolf
2+
from .graph import Graph
3+
from .utils import load_file_as_dict, values_have_duplicates, keys_are_sequential, verify_matrix, verify_n_jobs, verify_stats, create_attributes
4+
from .plots import plot_tensor_graph_slices, plot_matrix_graph, plot_matrix_directed_graph

0 commit comments

Comments
 (0)