-
Notifications
You must be signed in to change notification settings - Fork 1
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
T4 Creation + DNN Draft PR #151
base: CMSSW_14_1_0_pre3_LST_X_LSTCore_realfiles_batch1_devel
Are you sure you want to change the base?
T4 Creation + DNN Draft PR #151
Conversation
I can't see at first glance any mistakes. What I would suggest is to make the same plots showing for abs(eta_1) < 1.1 or some value in the barrel the distribution of inner radii / outer radii from the actual features vector only.
So to make the plot directly from "features" in the cell below this and see if you still have good separation between real/fake. You could also remove the eta requirement and make the same plot for comparison. The DNN right now is claiming it doesn't see a use of the eta_1 feature (and nearly all of the other hit-based features), so I think that would help clarify where the issue is. You could also remake the same plot after downsampling/etc. as a second check. |
Or, retrain with just eta_1 and the radii variables and see if eta_1 is used by the DNN then. That would also help clarify things. |
Like I said on the skype chat, if you look at your feature importances
Nearly all of your features have ~0 importance or <0 importance. If you look at the T5 DNN feature importances:
Or the T3 DNN importances:
most features are used. In both cases eta_1 (first eta value, feature 0) is the third most important feature. So I think narrowing the search there will help solve this. |
Draft PR for T4 creation and introducing a T4 DNN (using the architecture from the T5 DNN).