Downloads · 30 days
0
AethronPhantom/NexaQST
NexaQST is a tabular regression model from AethronPhantom. Use it for the tabular regression task on the model card, and read the license before you ship it in a product. The card lists the license as apache-2.0.
NexaQST is a Quantum State Tomography model built using a Physics-Informed Neural Network (PINN) trained on synthetic 2-qubit experiments. This model leverages quantum mechanical priors such as positivity, Hermiticity…
Downloads · 30 days
0
Access
Public
Updated Jun 16, 2025
Repo size
4.3 MB
Likes
0
Public
Click a slice to open those files.
.pt4.3 MB · 100%
From the Hugging Face model README
NexaQST is a Quantum State Tomography model built using a Physics-Informed Neural Network (PINN) trained on synthetic 2-qubit experiments. This model leverages quantum mechanical priors such as positivity, Hermiticity, and trace constraints to ensure physically plausible reconstructions of quantum states.
QuTiP(trace → density matrix)# Pseudocode for usage
from model import NexaQSTModel
import torch
model = NexaQSTModel()
model.load_state_dict(torch.load("nexaqst_model.pt"))
model.eval()
traces = load_measurement_vector("qst_trace.npy") # shape: (N,)
rho_pred = model.predict_density_matrix(traces)
# rho_pred is a 4x4 complex-valued matrix satisfying physical constraints
Created by Allan, independent quantum systems architect and ML researcher. Part of the Nexa scientific computing ecosystem.