Network Embedding Experimentation Toolkit - A powerful framework for graph analysis, embedding computation, and machine learning on graph-structured data
Project description
NEExT
Network Embedding Experimentation Toolkit
An open-source Python framework for network science and graph machine learning.
Documentation · Website · Issues
What is NEExT?
NEExT is an experimentation framework for graph and network data. It takes you from a collection of graphs to predictive and scientific results through one pipeline you can inspect and reproduce at every step:
Graphs → Features → Embeddings → Evidence
Load graphs from CSV, pandas, or NetworkX into a unified GraphCollection; compute
structural node features (or write your own in plain Python); turn them into graph-level
embeddings with Wasserstein/Sinkhorn optimal transport or a GNN; then train classifiers
or regressors and read feature importance to see which structure drives the result. It's
built on the standard scientific Python stack — NumPy, pandas, scikit-learn, XGBoost,
NetworkX, iGraph — and works the same in a script, a notebook, or the Workbench.
There are two ways to use NEExT:
- The Library — a lightweight Python package for scripting and notebook workflows.
- The Workbench — a local, desktop-style GUI over the same NEExT workflows, with
versioned artifacts and job tracking. It runs entirely on your machine (
127.0.0.1, no accounts, no uploads) and is MCP-native, so an agent like Claude can drive it.
Installation
pip install NEExT
Optional extras:
pip install "NEExT[gnn]" # Graph Neural Network embeddings (pure PyTorch)
pip install "NEExT[workbench-mcp]" # local Workbench + MCP integration
See the docs for the full list of extras.
Quick start
from NEExT import NEExT
nxt = NEExT()
# Load a collection of graphs from CSV
graph_collection = nxt.read_from_csv(
edges_path="edges.csv",
node_graph_mapping_path="node_graph_mapping.csv",
graph_label_path="graph_labels.csv",
)
# Features → Embeddings → Evidence
features = nxt.compute_node_features(graph_collection, feature_list=["all"])
embeddings = nxt.compute_graph_embeddings(
graph_collection, features, embedding_algorithm="approx_wasserstein"
)
results = nxt.train_ml_model(graph_collection, embeddings, model_type="classifier")
Custom features, GNN embeddings, large-graph sampling, feature importance, and the full API are covered in the documentation.
The Workbench
The NEExT Workbench is a local, single-user FastAPI + React application that exposes the NEExT workflows — datasets, features, embeddings, models, and analysis — as a desktop-style UI. Everything stays on your machine, and it speaks MCP, so you can drive the whole pipeline from an MCP client.
neext-workbench # installed package
make neext-workbench # from a development checkout
Then open http://127.0.0.1:8765. Projects are stored under ~/NEExT-Workbench by
default (override with NEEXT_WORKBENCH_HOME or neext-workbench --workspace <path>).
The full Workbench tour, including MCP client setup, lives in the
documentation.
Learn more
- 📚 Documentation — guides, API reference, and the Workbench tour: neext.app/docs
- 🌐 Website — neext.app
- 🐛 Issues & support — github.com/ashdehghan/NEExT/issues
License
NEExT is released under the MIT License. Created and maintained by Ash Dehghan.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file neext-0.3.4.tar.gz.
File metadata
- Download URL: neext-0.3.4.tar.gz
- Upload date:
- Size: 683.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
72c4c2fba17a6be3a3f351691f834d45d531daff39ce4793646d0e9610fe6371
|
|
| MD5 |
61b878c35d6e76956155a230b0cb3a02
|
|
| BLAKE2b-256 |
b3ebb83b55513defd9b3521b98258eaf5eaf49619de7b03abf719cb46fe337b1
|
File details
Details for the file neext-0.3.4-py3-none-any.whl.
File metadata
- Download URL: neext-0.3.4-py3-none-any.whl
- Upload date:
- Size: 665.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a96b6498e747e3e0ae6092af6be1076afcc0b21fe0d14fdc32f9949384e78d5f
|
|
| MD5 |
65ecb36fa4f085b2f9922cdba3668b20
|
|
| BLAKE2b-256 |
a96b251d9ad582e4c7bb39f0853fbc5533961d7ad69c689b6bcf97b7e54e2006
|