All Projects → stephenleo → stripnet

stephenleo / stripnet

Licence: Apache-2.0 license
STriP Net: Semantic Similarity of Scientific Papers (S3P) Network

Programming Languages

HTML
75241 projects
Jupyter Notebook
11667 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to stripnet

EstimNetDirected
Equilibrium Expectation for ERGM parameter estimation for large directed networks
Stars: ✭ 18 (-78.05%)
Mutual labels:  research, network-analysis
Network Threats Taxonomy
Machine Learning based Intrusion Detection Systems are difficult to evaluate due to a shortage of datasets representing accurately network traffic and their associated threats. In this project we attempt at solving this problem by presenting two taxonomies
Stars: ✭ 79 (-3.66%)
Mutual labels:  research, network-analysis
Linkpred
Easy link prediction tool
Stars: ✭ 107 (+30.49%)
Mutual labels:  research, network-analysis
auto-gfqg
Automatic Gap-Fill Question Generation
Stars: ✭ 17 (-79.27%)
Mutual labels:  topic-modeling
PSP
PSP-UFU (Power Systems Platform of Federal University of Uberlândia) is a cross-platform, multilingual, Free and Open-Source Software with advanced GUI features and CAD tools for electrical power system studies.
Stars: ✭ 30 (-63.41%)
Mutual labels:  research
multigraph
multigraph: Plot and Manipulate Multigraphs in R
Stars: ✭ 18 (-78.05%)
Mutual labels:  network-analysis
PubMed2PDF
A Python package to download full article PDFs from OA publications
Stars: ✭ 19 (-76.83%)
Mutual labels:  scientific-publications
patzilla
PatZilla is a modular patent information research platform and data integration toolkit with a modern user interface and access to multiple data sources.
Stars: ✭ 71 (-13.41%)
Mutual labels:  research
graphTweets
📣 Visualise networks of Twitter interactions
Stars: ✭ 46 (-43.9%)
Mutual labels:  network-analysis
doconce
Lightweight markup language - Document Once
Stars: ✭ 43 (-47.56%)
Mutual labels:  scientific-publications
awesome-offline-rl
An index of algorithms for offline reinforcement learning (offline-rl)
Stars: ✭ 578 (+604.88%)
Mutual labels:  research
public research
Publicly available research done by BOHR.TECHNOLOGY.
Stars: ✭ 16 (-80.49%)
Mutual labels:  research
edgebundle
R package implementing edge bundling algorithms
Stars: ✭ 100 (+21.95%)
Mutual labels:  network-analysis
theta
Generic, modular and configurable formal verification framework supporting various formalisms and algorithms
Stars: ✭ 34 (-58.54%)
Mutual labels:  research
TOM
A library for topic modeling and browsing
Stars: ✭ 91 (+10.98%)
Mutual labels:  topic-modeling
degitx
Distributed git repository manager
Stars: ✭ 28 (-65.85%)
Mutual labels:  research
senpai
Molecular dynamics simulation software
Stars: ✭ 124 (+51.22%)
Mutual labels:  research
obsidiantools
Obsidian tools - a Python package for analysing an Obsidian.md vault
Stars: ✭ 179 (+118.29%)
Mutual labels:  network-analysis
derain-net
A (WIP) TensorFlow reproduction of Fu, Huang, Ding, Liao, and Paisley's method for single-image rain removal (https://arxiv.org/abs/1609.02087)
Stars: ✭ 15 (-81.71%)
Mutual labels:  research
RTX-Mesh-Shaders
Different mesh shading techniques using the NVIDIA RTX (Turing) technology.
Stars: ✭ 84 (+2.44%)
Mutual labels:  research

💡 STriP Net: Semantic Similarity of Scientific Papers (S3P) Network

Python PyPI Downloads DOI GitHub - License Conda - Platform Conda (channel only) Conda Recipe

Do you read a lot of Scientific Papers? Have you ever wondered what are the overarching themes in the papers that you've read and how all the papers are semantically connected to one another? Look no further!

Leverage the power of NLP Topic Modeling, Semantic Similarity, and Network analysis to study the themes and semantic relations within a corpus of research papers.

Generate STriP Network on your own collection of research papers with just three lines of code!

Interactive plots to quickly identify research themes and most important papers

This repo was hacked together over the weekend of New Year 2022. This is only the initial release, with lots of work planned.

💪 Please leave a  to let me know that STriP Net has been helpful to you so that I can dedicate more of my time working on it.

Install

Install with conda

This is perhaps the most hasslefree option for installing stripnet with conda.

conda install -c conda-forge stripnet

Install with pip

If you want to install stripnet using pip, it is highly recommend to install in a conda environment.

  • Create a conda environment (here we choose the environment name as stripnet) and activate it.
conda create -n stripnet python=3.8 jupyterlab -y
conda activate stripnet
  • Pip install this library
pip install stripnet

🔥🚀 Generate the STriP network analysis on default settings

  • STriP can essentially run on any pandas dataframe column containing text.
  • However, the pretrained model is hardcoded (for now), so you'll see the best results while running it on a column that combines the title and abstract of papers separated by [SEP] keyword. Please see below
# Load some data
import pandas as pd
data = pd.read_csv('data.csv')

# Keep only title and abstract columns
data = data[['title', 'abstract']]

# Concat the title and abstract columns separated with [SEP] keyword
data['text'] = data['title'] + '[SEP]' + data['abstract']
# Instantiate the StripNet
from stripnet import StripNet
stripnet = StripNet()

# Run the StripNet pipeline
stripnet.fit_transform(data['text'])
  • If everything ran well, your browser should open a new window with the network graph similar to below. The graph is fully interactive! Have fun playing around by hovering over the nodes and moving them around!
  • If you are not satisfied with the topics you get, just restart the kernel and rerun it. The Topic Modeling framework has some level of randomness so the topics will change slightly with every run.
  • You can also tweak the paremeters of the various models, please look out for the full documentation for the details!

STriP Network

🏅 Find the most important paper

  • After you fit the model using the above steps, you can plot the most important papers with one line of code
  • The plot is fully interactive too! Hovering over any bar shows the relevant information of the paper.
stripnet.most_important_docs()

Most Important Text

🛠️ Common Issues

  1. If your StripNet graph is just one big ball of moving fireflies, try these steps
    • Check the value of threshold currently used by stripnet
    current_threshold = stripnet.threshold
    print(current_threshold)
    
    • Increase the value of threshold in steps of 0.05 and try again until you see a good looking network. Remember the max value of threshold is 1! If you're threshold is already 0.95 then try increasing in steps of 0.01 instead.
    stripnet.fit_transform(data['text'], threshold=current_threshold+0.05)
    
  2. If you're dataset is small (<500 rows) and the number of topics generated seems too less
    • Try tweaking the value of min_topic_size to a value lower than the default value of 10 until you get topics that look reasonable to you
    stripnet.fit_transform(data['text'], min_topic_size=5)
    
  3. After the above two steps, if your graph looks messy, try removing isolated nodes (those nodes that don't have any connections)
    stripnet.fit_transform(data['text'], remove_isolated_nodes=True)
    
  4. In practice, you might have to tweak all three at the same time!
    stripnet.fit_transform(data['text'], threshold=current_threshold+0.05, min_topic_size=5, remove_isolated_nodes=True)
    

I'm testing out the network on a variety of data to pick better default values. Do let me know if some specific values worked the best for you!

🎓 Citation

To cite STriP Net in your work, please use the following bibtex reference:

@software{marie_stephen_leo_2022_5823822,
  author       = {Marie Stephen Leo},
  title        = {STriP Net: Semantic Similarity of Scientific Papers (S3P) Network},
  month        = jan,
  year         = 2022,
  publisher    = {Zenodo},
  version      = {v0.0.5.zenodo},
  doi          = {10.5281/zenodo.5823822},
  url          = {https://doi.org/10.5281/zenodo.5823822}
}

🤩 Acknowledgements

STriP Net stands on the shoulder of giants and several prior work. The most notable being

  1. Sentence Transformers [Paper] [Code]
  2. AllenAI Specter pretrained model [Paper] [Code]
  3. BERTopic [Code]
  4. Networkx [Code]
  5. Pyvis [Code]

🙏 Buy me a coffee

If this work helped you in any way, please consider the following way to give me feedback so I can spend more time on this project

  1. this repository
  2. ❤️ the Huggingface space
  3. 👏 the Medium post (Coming End Jan 2022!)
  4. Buy me a Coffee!
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].