Dataset Viewer
Duplicate
The dataset viewer is not available for this split.
The number of columns (3579) exceeds the maximum supported number of columns (1000). This is a current limitation of the datasets viewer. You can reduce the number of columns if you want the viewer to work.
Error code:   TooManyColumnsError

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

Stock Prediction Dataset

This dataset contains preprocessed stock market data for training stock return prediction models.

Contents

  • data/all_complete_dataset.h5 - Main features dataset (HDF5)

    • ~4000 stocks
    • 20+ years of daily data
    • Technical indicators, fundamentals, news sentiment
  • data/actual_prices.h5 - Price data for backtesting

    • Split-adjusted close prices
  • checkpoints/walk_forward/ - Pre-trained model checkpoints

    • 6-fold walk-forward validated models
    • Transformer-based architecture

Usage

from huggingface_hub import hf_hub_download

# Download the main dataset
hf_hub_download(
    repo_id="JamesBedichek/stock-prediction-data",
    filename="data/all_complete_dataset.h5",
    repo_type="dataset",
    local_dir="."
)

Or use the provided download script:

python scripts/download_data.py --repo-id JamesBedichek/stock-prediction-data

License

MIT

Downloads last month
23