Skip to content

Lossless Compression of Structured Convolutional Models via Lifting

License

Notifications You must be signed in to change notification settings

GustikS/NeuraLifting

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Neural Lifting

This repository contains materials to reproduce the results from the paper "Lossless Compression of Structured Convolutional Models via Lifting".

Overview

item description
datasets contains all the datasets. Labels (queries) and evidence (examples) are stored separately (in predicate logic format).
plotting contains python scripts for drawing graphs from the paper
results contains detailed statistics exported by the learning engine in JSON format for each experiment (prefilled with a rerun). Also includes the generated images.
scripts contains bash scripts for running all the experiments, i.e. running the learning engine with varying inputs and parameters
templates contains all the used templates (models) for learning in the experiments
  • for you convenience, the whole learning engine is packed into a single jar file release with no dependencies (but Java ≥ 1.8). See the NeuraLogic repository for sourcecode of the engine itself (and recent releases).
  • for the comparison against GNN engines (PyG and DGL) from Table 1 (and other experiments), please see a separate GNNs vs. LRNNs repository.

Reproduction scripts

Since there are many experiments to be performed for the final graphical output, we have prepared batch run scripts for a convenient run in a cluster environment. If you have access to some computer cluster with the commonly used SLURM workload manager, you can rerun everything in under 5 minutes of setup.

  • If you cannot run on a cluster, or want to rerun only selected experiments, you can always run particular shell scripts with particular parameter setups individually.
    • Also, you can browse the detailed JSON results individually/manually.
  • We also include a runscript generator if you wish to test other parammeter setups conveniently.
Step by step
  1. copy this folder into you home directory at the cluster:

    sftp:https://[email protected]/home/XXXXX

  2. replace 'XXXXX' string by your username in ALL the scripts (using e.g. sed/grep)

    find ./ -type f -exec sed -i -e 's/XXXXX/USERNAME/g' {} \;

  3. run the grid batch script file in each experiment batch (EXPERIMENT_BATCH) directory :

    bash scripts/EXPERIMENT_BATCH/scripts/200__grid.sh

  4. wait for all the experiments to finish (mostly minutes, but some, particularly the uncompressed scalar models, can take many hours). Be aware that experiments with the uncompressed templates may also consume a lot of memory.

    1. Consequently, result folders containing all the detailed information from each experiment will show up in the JSON format (in the ./results folder).
  5. automatically load the json data to plot the Figures from the paper using the enclosed python scripts

    1. for these you'll need basic python libraries such as json, pandas and matplotlib.
    2. To switch between the subplots of each figure, please uncomment the corresponding lines (also for the legend to show in the last plot please uncomment the corresponding line).

    python ./plotting/figure5.py

You can find the Lifted Relational Neural Networks framework itself being developed at Neuralogic repository.