Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Understanding bias in JES in low truth-jet pT
  • Truth-jet matching (Brendon)
    •  Check different truth jet matching schemes for response definition
    •  Performance as a function of dR quality cut
  • Evaluating the impact of soft lepton information (Prajita)
    •  Performance with LeptonID
    •  Apply additional selection on soft electron
  • Auxiliary tasks (Brendon)
    •  Fixing weights of TruthOrigin classes
    •  Add TruthParticleID
  • Model architecture (Brendon)
    •  Attention mechanisms
    •  Hyperparameter optimization

...

Code Block
pkgs_dirs:
  - /fs/ddn/sdf/group/atlas/d/pbhattar<user>/conda_envs/pkgs
envs_dirs:
 - /fs/ddn/sdf/group/atlas/d/pbhattar<user>/conda_envs/envs
channels:
  - conda-forge
  - defaults
  - anaconda
  - pytorch
auto_activate_base: true

3.) source conda.sh 

Code Block
> source /sdf/group/atlas/sw/conda/etc/profile.d/conda.sh

4.) cross check if conda is set correctly 

Code Block
> which conda 
#following should appear if things went smoothly
conda ()
{
   \local cmd="${1-__missing__}";
   case "$cmd" in
       activate | deactivate)
           __conda_activate "$@"
       ;;
       install | update | upgrade | remove | uninstall)
           __conda_exe "$@" || \return;
           __conda_reactivate
       ;;
       *)
           __conda_exe "$@"
       ;;
   esac
}

...

Code Block
groups <username> # To check user groups
cd <your_directory> 
find . -type d|xargs chmod g+rx # Need to make all subdirectories readable *and* executable to the group

You can setup passwordless ssh connection following this page to create an ssh key pair. Then add this block to your ~/.ssh/config file (allows to tunnel directly to iana, but you can adapt to other hosts):

Code Block
Host sdfiana
  HostName iana
  User <yourusername>
  IdentityFile ~/.ssh/<your private key>
  proxycommand ssh s3dflogin.slac.stanford.edu nc %h %p
  ForwardX11 yes
  Host s3dflogin.slac.stanford.edu


Discussion Summary 

Suggestions from M. Kagan Jan 23, 2023

...