VOOZH about

URL: https://www.nuget.org/packages/FinXAI.Universe/

⇱ NuGet Gallery | FinXAI.Universe 1.0.0




👁 Image
FinXAI.Universe 1.0.0

dotnet add package FinXAI.Universe --version 1.0.0
 
 
NuGet\Install-Package FinXAI.Universe -Version 1.0.0
 
 
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="FinXAI.Universe" Version="1.0.0" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="FinXAI.Universe" Version="1.0.0" />
 
Directory.Packages.props
<PackageReference Include="FinXAI.Universe" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add FinXAI.Universe --version 1.0.0
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: FinXAI.Universe, 1.0.0"
 
 
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package FinXAI.Universe@1.0.0
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=FinXAI.Universe&version=1.0.0
 
Install as a Cake Addin
#tool nuget:?package=FinXAI.Universe&version=1.0.0
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

Fin-XAI: Explainable AI for Financial Risk Auditing

👁 .NET
👁 Python

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.

Interface

Fin-XAI Home Page

<img width="768" height="595" alt="image" src="https://github.com/user-attachments/assets/d7fb83fc-3982-4d67-a722-b525629f224b" />

Fin-XAI Dashboard

<img width="1900" height="867" alt="image" src="https://github.com/user-attachments/assets/fccc3199-72a1-4113-bd75-2e5d04a1788b" />

Architecture

The solution is divided into two primary environments:

  1. Inference Engine (Python / FastAPI): A lightweight API that keeps a Random Forest classifier (trained on the UCI German Credit Dataset) loaded in memory. It calculates dynamic SHAP values on the fly to explain why a specific financial decision or risk score was assigned.
  2. Client Dashboard (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.

Getting Started (Local Development)

To run the full simulator locally, you need both the Python engine and the .NET host running.

1. Start the Python Engine

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

2. Run the Blazor Demo App

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.

Using the NuGet Package

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)" />

Tech Stack

  • Frontend/UI: .NET 8, Blazor Server, Bootstrap 5, Chart.js (via ChartJs.Blazor)
  • Backend/API: Python, FastAPI, Uvicorn
  • Data Science: Scikit-Learn, SHAP, Pandas, UCI Machine Learning Repository

Author

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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

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.