Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding SONIC structure for new ParticleNet and Higgs IN models + ONNX model update #53

Merged
merged 3 commits into from
Nov 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions HiggsInteractionNet/V00/modelfile
1 change: 1 addition & 0 deletions ParticleNetFromMiniAODAK4/CHS/Central/modelfile
1 change: 1 addition & 0 deletions ParticleNetFromMiniAODAK4/CHS/Forward/modelfile
1 change: 1 addition & 0 deletions ParticleNetFromMiniAODAK4/PUPPI/Central/modelfile
1 change: 1 addition & 0 deletions ParticleNetFromMiniAODAK4/PUPPI/Forward/modelfile
1 change: 1 addition & 0 deletions ParticleNetFromMiniAODAK8/modelfile
27 changes: 27 additions & 0 deletions models/higgsInteractionNet/config.pbtxt
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: "higgsInteractionNet"
platform: "onnxruntime_onnx"
max_batch_size : 500
dynamic_batching {
preferred_batch_size: [ 200 ]
}
input [
{
name: "input_cpf"
data_type: TYPE_FP32
dims: [ 30, 60 ]
},
{
name: "input_sv"
data_type: TYPE_FP32
dims: [ 14, 5 ]
}
]
output [
{
name: "output1"
data_type: TYPE_FP32
dims: [ 2 ]
label_filename: "higgs_interactionnet_labels.txt"
}
]
optimization {graph : {level : -1}}
2 changes: 2 additions & 0 deletions models/higgsInteractionNet/higgs_interactionnet_labels.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
QCD
Hbb
Loading