![]() |
VOOZH | about |
dotnet add package FinXAI.Universe --version 1.0.0
NuGet\Install-Package FinXAI.Universe -Version 1.0.0
<PackageReference Include="FinXAI.Universe" Version="1.0.0" />
<PackageVersion Include="FinXAI.Universe" Version="1.0.0" />Directory.Packages.props
<PackageReference Include="FinXAI.Universe" />Project file
paket add FinXAI.Universe --version 1.0.0
#r "nuget: FinXAI.Universe, 1.0.0"
#:package FinXAI.Universe@1.0.0
#addin nuget:?package=FinXAI.Universe&version=1.0.0Install as a Cake Addin
#tool nuget:?package=FinXAI.Universe&version=1.0.0Install as a Cake Tool
Fin-XAI is a distributed framework that bridges the gap between high-performance enterprise .NET applications and advanced Python-based Machine Learning.
Machine Learning models in finance are often treated as "Black Boxes." This project provides a novel architecture combining a .NET 8 Blazor Razor Class Library (RCL) with the analytical depth of Python's SHAP (Shapley Additive exPlanations) to provide real-time, transparency-first decision auditing for financial portfolios.
<img width="768" height="595" alt="image" src="https://github.com/user-attachments/assets/d7fb83fc-3982-4d67-a722-b525629f224b" />
<img width="1900" height="867" alt="image" src="https://github.com/user-attachments/assets/fccc3199-72a1-4113-bd75-2e5d04a1788b" />
The solution is divided into two primary environments:
FinXAI.Universe NuGet / Blazor):
A plug-and-play Razor Class Library containing the data models, HTTP services, and a fully interactive UI component (<FinXaiDashboard />). It uses JS Interop to handle client-side PDF/CSV exports without taxing the server.To run the full simulator locally, you need both the Python engine and the .NET host running.
Ensure Python 3.9+ is installed. Navigate to the FinXAI.Universe/PythonEngine directory.
# Install required ML and API libraries
pip install fastapi uvicorn pandas scikit-learn ucimlrepo shap
# Start the API server on port 7001
python Main.py
Open the solution in Visual Studio. Set FinXAI.Demo as the Startup Project and run the application (F5). Navigate to the /finxai route to interact with the dashboard.
This project is packaged as a reusable Blazor UI library. To add the Explainable AI dashboard to your own .NET 8 application:
1. Install the package:
dotnet add package FinXAI.Universe
2. Register the required HTTP Client in your Program.cs:
builder.Services.AddScoped(sp => new HttpClient());
3. Drop the component into any Razor page:
@using FinXAI.Universe.Components
<FinXaiDashboard ApiBaseUrl="[http://127.0.0.1:7001](http://127.0.0.1:7001)" />
Yash Saini
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.0.0 | 120 | 2/21/2026 |
Initial release of FinXAI.Universe, a hybrid framework bridging .NET 8 Blazor with Python-based Explainable AI for financial auditing. Features a plug-and-play Razor component for real-time SHAP value visualization, interactive radar charts, and client-side PDF reporting.