Skip to content

Commit

Permalink
update webpage
Browse files Browse the repository at this point in the history
  • Loading branch information
O-Schilter committed Oct 22, 2024
1 parent e9efe5a commit 8253019
Show file tree
Hide file tree
Showing 6 changed files with 83 additions and 1 deletion.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,10 @@ run_xgboost.sh
## Citation
Cite our work as followes:
```
Bibtex is Coming
@article{alberts2024unraveling,
title={Unraveling Molecular Structure: A Multimodal Spectroscopic Dataset for Chemistry},
author={Alberts, Marvin and Schilter, Oliver and Zipoli, Federico and Hartrampf, Nina and Laino, Teodoro},
year={2024},
url={https://arxiv.org/abs/2407.17492},
}
```
Binary file added data/example_data_1.parquet
Binary file not shown.
Binary file added data/example_data_2.parquet
Binary file not shown.
56 changes: 56 additions & 0 deletions docs/static/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -135,3 +135,59 @@ body {




/* Add this to your static/css/index.css file */

/* Adjust max-width of desktop containers */
.container.is-max-desktop {
max-width: 800px !important; /* Reduced from default 960px */
}

/* Adjust overall content scaling */
.hero-body {
padding: 2rem 1.5rem; /* Reduced padding */
}

/* Adjust title sizes */
.title.is-1 {
font-size: 2.5rem !important; /* Reduced from 3rem */
}

.title.is-3 {
font-size: 1.5rem !important; /* Reduced from 2rem */
}

/* Adjust table sizing */
table {
font-size: 0.9rem;
}

/* Adjust content text size */
.content {
font-size: 0.95rem;
}

/* Make images in carousel slightly smaller */
.results-carousel .item img {
max-width: 90%;
margin: 0 auto;
display: block;
}

/* Adjust author section spacing */
.publication-authors {
font-size: 1rem !important;
line-height: 1.4;
}

/* Reduce spacing between sections */
.section {
padding: 2rem 1.5rem;
}

/* Add media query to only apply these styles on desktop */
@media screen and (min-width: 1024px) {
.container.is-max-desktop {
margin: 0 auto;
}
}
Binary file modified docs/static/images/Overview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions download_spectra.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/bin/bash

# Create a data directory if it doesn't exist
mkdir -p data

# Download the data from Zenodo
echo "Downloading spectra data from Zenodo..."
curl -L "https://zenodo.org/records/11611178/files/multimodal_spectroscopic_dataset.zip" -o data/multimodal_spectroscopic_dataset.zip

# Unzip the file
echo "Extracting data..."
unzip -q data/multimodal_spectroscopic_dataset.zip -d data/

# Remove the zip file to save space (optional)
echo "Cleaning up..."
rm data/multimodal_spectroscopic_dataset.zip

echo "Download complete! Data is available in the data directory."

# Make the script executable
chmod +x download_spectra.sh

0 comments on commit 8253019

Please sign in to comment.