A package to manipulate particle collisions
Project description
Sparticles
Manipulate collision events via graphs and graph neural networks.
TL;DR
The EventsDataset, a Pytorch Geometric Dataset, allows you to download a dataset of graphs representing collisions.
from dataset import EventsDataset
graphs = EventsDataset(
root='/Users/alessiodevoto/Desktop/test_dataset3',
delete_raw_archive=False,
event_subsets={'signal': 100, 'singletop': 100, 'ttbar': 100},
url='<secret_url>')
graphs
EventsDataset(300)
Each event is a graph with 6/7 nodes. Each node is built from the raw file as follows:
| Particle | Feature 1 | Feature 2 | Feature 3 | Feature 4 | Feature 5 | Feature 6 |
|---|---|---|---|---|---|---|
| jet1 | 'pTj1' | 'etaj1' | 'phij1' | 'j1_quantile' | nan | nan |
| jet2 | 'pTj2' | 'etaj2' | 'phij2' | 'j2_quantile' | nan | nan |
| jet3 (optional) | 'pTj3' | 'etaj3' | 'phij3' | 'j3_quantile' | nan | nan |
| b1 | 'pTb1' | 'etab1' | 'phib1' | 'b1_quantile' | 'b1m' | nan |
| b2 | 'pTb2' | 'etab2' | 'phib2' | 'b2_quantile' | 'b2m' | nan |
| lepton | 'pTl1' | 'etal1' | 'phil1' | nan | nan | nan |
| energy | 'ETMiss' | nan | 'ETMissPhi' | nan | nan | 'metsig_New' |
g = graphs[0]
print(g)
Data(x=[6, 6], edge_index=[2, 30], y=[1], event_id='signal_6350')
from visualize import plot_event_2d
plot_event_2d(graphs[100])
a_list_of_graphs = [graphs[i] for i in range(0, 300, 30)]
plot_event_2d(a_list_of_graphs, height=1500)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sparticles-0.0.4.3.tar.gz.
File metadata
- Download URL: sparticles-0.0.4.3.tar.gz
- Upload date:
- Size: 11.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b788a468867d173cde57c63e2e3c71979d36bf6ee3972f71a242b64e9c22ba5
|
|
| MD5 |
fb7e68ae9efc8e900bf6f9cc73a5cc26
|
|
| BLAKE2b-256 |
fe51ae2947bce037209ab56c747da43d56cd45310605c6423da8a746b600f6bf
|
File details
Details for the file sparticles-0.0.4.3-py3-none-any.whl.
File metadata
- Download URL: sparticles-0.0.4.3-py3-none-any.whl
- Upload date:
- Size: 12.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d09a3fbe0c0c3dd3e281c42222b04c47fbd1392f3c5d69ec7d0f42349f977c84
|
|
| MD5 |
90e62c8ab618997530b8b47005c4b115
|
|
| BLAKE2b-256 |
4969ab7601877d6c5d858182462db3d4a0963222e3c688b9d6dfb5f046e94b1e
|