An AI capable of running 100% locally using a hybrid TCN-LSTM-Attention model to predict time sequences in a way that is understandable to everyone through open-source's LLM
2
stars
33
commits
Python
primary language
Aug 28, 2026
updated
An open-source, hybrid local framework designed to analyze multi-asset time-series data. It leverages a deep learning architecture (TCN + LSTM + Attention) combined with a mathematical feature attribution layer (Captum Integrated Gradients) to eliminate hallucinations in automated financial reports.
📊 Quick Start: A ready-to-use
gld_price_data.csvdataset is included in the repository so you can test the framework instantly.
Traditional Large Language Models (LLMs) tend to be baffling—they are great at reasoning but poor at raw math. When processing raw numerical tables or dense time-series, autoregressive models often invent trends or hallucinate metrics, breaking structural analytical trust.
By reversing the usual approach and feeding the language interface with deterministic prediction attributes, we can force the model to strictly explain each of the AI's choices.
This framework isolates raw mathematical feature attributions on-device, delivering a cold, objective, and unbiased look at multi-asset data across custom horizons without computational guesswork or statistical fabrication.
Follow these precise steps to deploy and execute the pipeline locally on your machine:
gh repo clone ikaruz050309/RobinHood
cd RobinHood
Ensure you have Python installed, then run the installation command to fetch all background packages:
pip install -r requirements.txt
To enable natural language synthesis from your local evaluation weights via Hugging Face Serverless Inference, export your API token:
export HUGGINGFACE_API_KEY="your_huggingface_api_key_here"
python3 main.py
If you want to upload your own custom data, your .csv dataset must match the following technical parameters to prevent matrix dimensions or compliance checks from halting the pipeline:
.csv files.33 commits
Python
100.0%
An AI capable of running 100% locally using a hybrid TCN-LSTM-Attention model to predict time sequences in a way that is understandable to everyone through open-source's LLM
2
stars
33
commits
Python
primary language
Aug 28, 2026
updated
An open-source, hybrid local framework designed to analyze multi-asset time-series data. It leverages a deep learning architecture (TCN + LSTM + Attention) combined with a mathematical feature attribution layer (Captum Integrated Gradients) to eliminate hallucinations in automated financial reports.
📊 Quick Start: A ready-to-use
gld_price_data.csvdataset is included in the repository so you can test the framework instantly.
Traditional Large Language Models (LLMs) tend to be baffling—they are great at reasoning but poor at raw math. When processing raw numerical tables or dense time-series, autoregressive models often invent trends or hallucinate metrics, breaking structural analytical trust.
By reversing the usual approach and feeding the language interface with deterministic prediction attributes, we can force the model to strictly explain each of the AI's choices.
This framework isolates raw mathematical feature attributions on-device, delivering a cold, objective, and unbiased look at multi-asset data across custom horizons without computational guesswork or statistical fabrication.
Follow these precise steps to deploy and execute the pipeline locally on your machine:
gh repo clone ikaruz050309/RobinHood
cd RobinHood
Ensure you have Python installed, then run the installation command to fetch all background packages:
pip install -r requirements.txt
To enable natural language synthesis from your local evaluation weights via Hugging Face Serverless Inference, export your API token:
export HUGGINGFACE_API_KEY="your_huggingface_api_key_here"
python3 main.py
If you want to upload your own custom data, your .csv dataset must match the following technical parameters to prevent matrix dimensions or compliance checks from halting the pipeline:
.csv files.33 commits
Python
100.0%