Skip to content

hsm207/rossmann-fastai

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Introduction

This repository contains my experiments on the Rossmann Store Sales dataset using the fastai library.

The goal is to investigate if there are any general techniques (e.g. preprocessing steps, feature engineering, etc) that can help deep learning models on tabular data converge faster and/or with higher accuracy.

Usage

  1. Install Docker

  2. Navigate to this project's root directory

  3. Build and run this project's Dockerfile by executing:

    docker build -t fastai . && \
    docker run --runtime=nvidia \
               --name fastai \
               -p 8888:8888 \
               --dns 8.8.8.8 \
               fastai jupyter notebook --ip 0.0.0.0 --allow-root

    This will start a jupyter server on port 8888.

  4. Open a web browser and navigate to the URL displayed in the previous step.

  5. Navigate to the notebooks folder. This folder contains:

    Contributing

    Feel free to raise a pull request for any questions, comments, feedback, etc.