Nexa_Models
Collection
This is where I keep all of my SciML models
β’
13 items
β’
Updated
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.