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

Merge jpata/master into master #3

Merged
merged 169 commits into from
Sep 3, 2021
Merged

Merge jpata/master into master #3

merged 169 commits into from
Sep 3, 2021

Commits on Jul 16, 2021

  1. feat: Add hyperparameter optimization

    Run hyperparameter optimization using the new hypertune
    command in the pipeline script.
    erwulff committed Jul 16, 2021
    Configuration menu
    Copy the full SHA
    bc1d185 View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2021

  1. Configuration menu
    Copy the full SHA
    961d0f5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d3355ec View commit details
    Browse the repository at this point in the history

Commits on Jul 23, 2021

  1. fixed confusion matrix

    farakiko committed Jul 23, 2021
    Configuration menu
    Copy the full SHA
    c541940 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2ad8217 View commit details
    Browse the repository at this point in the history
  3. feat: keras-tuner chief and tuner scripts

    Run the chief script on the chief node and run the
    tuner script once on each worker node in order to perform
    a distributed hyperparameter search with keras-tuner. You
    need to pass appropriate IPs and ports to each script.
    erwulff committed Jul 23, 2021
    Configuration menu
    Copy the full SHA
    c5284ef View commit details
    Browse the repository at this point in the history
  4. feat: Distributed training on Flatiron Institute HPC site

    Slurm scripts to perform distributed training, hyperparameter
    optimization and more on Flatiron Institute's HPC system.
    erwulff committed Jul 23, 2021
    Configuration menu
    Copy the full SHA
    2806067 View commit details
    Browse the repository at this point in the history
  5. feat: Distributed training on JUWELS Booster

    Slurm scripts to perform distributed training, hyperparameter
    optimization and more on the JUWELS Booster in
    Jülich Supercomputing Centre at Forschungszentrum Jülich.
    erwulff committed Jul 23, 2021
    Configuration menu
    Copy the full SHA
    de05522 View commit details
    Browse the repository at this point in the history
  6. small bug

    farakiko committed Jul 23, 2021
    Configuration menu
    Copy the full SHA
    f7b6bae View commit details
    Browse the repository at this point in the history
  7. fix pic scales

    farakiko committed Jul 23, 2021
    Configuration menu
    Copy the full SHA
    8ec5c36 View commit details
    Browse the repository at this point in the history
  8. plotting cosmetics

    farakiko committed Jul 23, 2021
    Configuration menu
    Copy the full SHA
    3eabb82 View commit details
    Browse the repository at this point in the history
  9. typos

    farakiko committed Jul 23, 2021
    Configuration menu
    Copy the full SHA
    84212c9 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    1a6a909 View commit details
    Browse the repository at this point in the history
  11. better path location

    farakiko committed Jul 23, 2021
    Configuration menu
    Copy the full SHA
    8e9f80d View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2021

  1. feat: Choose optimizer in config file

    Choose between Adam, AdamW and SGD. Also specify optimizer
    hyperparameters in the config file.
    erwulff committed Jul 26, 2021
    Configuration menu
    Copy the full SHA
    59375a6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    532228d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ee44bad View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    81c888d View commit details
    Browse the repository at this point in the history

Commits on Jul 27, 2021

  1. Configuration menu
    Copy the full SHA
    18845f4 View commit details
    Browse the repository at this point in the history
  2. better device definitions

    farakiko committed Jul 27, 2021
    Configuration menu
    Copy the full SHA
    7cef92f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2bc4506 View commit details
    Browse the repository at this point in the history
  4. fixed typo

    farakiko committed Jul 27, 2021
    Configuration menu
    Copy the full SHA
    c510ba3 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8ad7ee8 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    43aa41b View commit details
    Browse the repository at this point in the history

Commits on Jul 28, 2021

  1. feat: Add early stopping to hypertune

    Also
      - simplify JUWELS and Flatiron slurm scripts
      - turn off histogram writing in CustomTensorboard
        when hypertuning
    erwulff committed Jul 28, 2021
    Configuration menu
    Copy the full SHA
    ea41fad View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2021

  1. Configuration menu
    Copy the full SHA
    5cb6002 View commit details
    Browse the repository at this point in the history
  2. added learnable kernel

    jpata committed Aug 1, 2021
    Configuration menu
    Copy the full SHA
    cb07129 View commit details
    Browse the repository at this point in the history
  3. up

    jpata committed Aug 1, 2021
    Configuration menu
    Copy the full SHA
    1645d62 View commit details
    Browse the repository at this point in the history
  4. update cls mult

    jpata committed Aug 1, 2021
    Configuration menu
    Copy the full SHA
    117bc6e View commit details
    Browse the repository at this point in the history
  5. apply exp

    jpata committed Aug 1, 2021
    Configuration menu
    Copy the full SHA
    37fc2b8 View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2021

  1. feat: Choose if to draw events during training or not

    Also, history json files are written by CustomTensorBoard
    instead of CustomCallback since Hypertune should write the
    history files but don't need the rest of CustomCallback.
    erwulff committed Aug 3, 2021
    Configuration menu
    Copy the full SHA
    ab70ee4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bd964aa View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c10cd67 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    c17e91c View commit details
    Browse the repository at this point in the history
  5. feat: Add raytune command to pipeline

    Perform hyperparameter optimization using Ray Tune. Support
    for multi-worker search on HPC systems not yet implemented.
    erwulff committed Aug 3, 2021
    Configuration menu
    Copy the full SHA
    ad50859 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    b033d94 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    d35b2ec View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    9391a57 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    54aef72 View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2021

  1. Configuration menu
    Copy the full SHA
    ba5ca38 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    99c8814 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    dd2a60d View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2021

  1. updates

    jpata committed Aug 12, 2021
    Configuration menu
    Copy the full SHA
    0fa17fd View commit details
    Browse the repository at this point in the history

Commits on Aug 13, 2021

  1. remove additive momentum

    jpata committed Aug 13, 2021
    Configuration menu
    Copy the full SHA
    2c0210d View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2021

  1. up

    jpata committed Aug 15, 2021
    Configuration menu
    Copy the full SHA
    127d4e1 View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2021

  1. update adv training

    jpata committed Aug 16, 2021
    Configuration menu
    Copy the full SHA
    308aad3 View commit details
    Browse the repository at this point in the history

Commits on Aug 17, 2021

  1. up

    jpata committed Aug 17, 2021
    Configuration menu
    Copy the full SHA
    69efa1e View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2021

  1. up

    jpata committed Aug 18, 2021
    Configuration menu
    Copy the full SHA
    71b80ff View commit details
    Browse the repository at this point in the history
  2. fix multi gpu training

    jpata committed Aug 18, 2021
    Configuration menu
    Copy the full SHA
    72d8ee4 View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2021

  1. remove outdated code

    jpata committed Aug 19, 2021
    Configuration menu
    Copy the full SHA
    3a1af28 View commit details
    Browse the repository at this point in the history
  2. readd previous net

    jpata committed Aug 19, 2021
    Configuration menu
    Copy the full SHA
    6199a25 View commit details
    Browse the repository at this point in the history
  3. fix

    jpata committed Aug 19, 2021
    Configuration menu
    Copy the full SHA
    2f502dc View commit details
    Browse the repository at this point in the history
  4. readd

    jpata committed Aug 19, 2021
    Configuration menu
    Copy the full SHA
    ad0a288 View commit details
    Browse the repository at this point in the history
  5. add missing import

    jpata committed Aug 19, 2021
    Configuration menu
    Copy the full SHA
    9025f3f View commit details
    Browse the repository at this point in the history
  6. revert local test

    jpata committed Aug 19, 2021
    Configuration menu
    Copy the full SHA
    4ef7be3 View commit details
    Browse the repository at this point in the history
  7. fix

    jpata committed Aug 19, 2021
    Configuration menu
    Copy the full SHA
    5c8ae82 View commit details
    Browse the repository at this point in the history
  8. fix activation

    jpata committed Aug 19, 2021
    Configuration menu
    Copy the full SHA
    3f2ead6 View commit details
    Browse the repository at this point in the history
  9. revert cms-gnn-dense parameters

    jpata committed Aug 19, 2021
    Configuration menu
    Copy the full SHA
    f8e65f9 View commit details
    Browse the repository at this point in the history
  10. use additive regression

    jpata committed Aug 19, 2021
    Configuration menu
    Copy the full SHA
    a737ed1 View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2021

  1. up

    jpata committed Aug 20, 2021
    Configuration menu
    Copy the full SHA
    2c93578 View commit details
    Browse the repository at this point in the history
  2. moomentum layers explicit

    jpata committed Aug 20, 2021
    Configuration menu
    Copy the full SHA
    47a50d3 View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2021

  1. big cleanup

    jpata committed Aug 21, 2021
    Configuration menu
    Copy the full SHA
    b7e9cae View commit details
    Browse the repository at this point in the history
  2. fix

    jpata committed Aug 21, 2021
    Configuration menu
    Copy the full SHA
    5cd29d3 View commit details
    Browse the repository at this point in the history
  3. purge PFNet

    jpata committed Aug 21, 2021
    Configuration menu
    Copy the full SHA
    a2223ed View commit details
    Browse the repository at this point in the history
  4. update

    jpata committed Aug 21, 2021
    Configuration menu
    Copy the full SHA
    e0adb69 View commit details
    Browse the repository at this point in the history
  5. many preds

    jpata committed Aug 21, 2021
    Configuration menu
    Copy the full SHA
    be7e2b0 View commit details
    Browse the repository at this point in the history
  6. cleanup scripts

    jpata committed Aug 21, 2021
    Configuration menu
    Copy the full SHA
    59dbb64 View commit details
    Browse the repository at this point in the history
  7. remove timing

    jpata committed Aug 21, 2021
    Configuration menu
    Copy the full SHA
    6c14d49 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    a0d2189 View commit details
    Browse the repository at this point in the history
  9. update

    jpata committed Aug 21, 2021
    Configuration menu
    Copy the full SHA
    afdf6a0 View commit details
    Browse the repository at this point in the history
  10. unify configs

    jpata committed Aug 21, 2021
    Configuration menu
    Copy the full SHA
    15aa6e4 View commit details
    Browse the repository at this point in the history
  11. update docs

    jpata committed Aug 21, 2021
    Configuration menu
    Copy the full SHA
    e3c10a5 View commit details
    Browse the repository at this point in the history

Commits on Aug 22, 2021

  1. improve encoding

    jpata committed Aug 22, 2021
    Configuration menu
    Copy the full SHA
    d9b5dbe View commit details
    Browse the repository at this point in the history
  2. up

    jpata committed Aug 22, 2021
    Configuration menu
    Copy the full SHA
    1abdef5 View commit details
    Browse the repository at this point in the history
  3. add residual plots

    jpata committed Aug 22, 2021
    Configuration menu
    Copy the full SHA
    06cacb0 View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2021

  1. separate energy graph layer

    jpata committed Aug 23, 2021
    Configuration menu
    Copy the full SHA
    f7d0cb4 View commit details
    Browse the repository at this point in the history
  2. separate energy graph layer

    jpata committed Aug 23, 2021
    Configuration menu
    Copy the full SHA
    d07745c View commit details
    Browse the repository at this point in the history
  3. just use the same cg layers

    jpata committed Aug 23, 2021
    Configuration menu
    Copy the full SHA
    c21735a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    96dd647 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    38e6f8d View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    0ac649c View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    44c1043 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    ed54ed4 View commit details
    Browse the repository at this point in the history
  9. organized the pipeline

    farakiko committed Aug 23, 2021
    Configuration menu
    Copy the full SHA
    44a9c64 View commit details
    Browse the repository at this point in the history
  10. uncomment args

    farakiko committed Aug 23, 2021
    Configuration menu
    Copy the full SHA
    56b970e View commit details
    Browse the repository at this point in the history
  11. fix github check/build

    farakiko committed Aug 23, 2021
    Configuration menu
    Copy the full SHA
    7b64bea View commit details
    Browse the repository at this point in the history

Commits on Aug 24, 2021

  1. Configuration menu
    Copy the full SHA
    f13718f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ce899c3 View commit details
    Browse the repository at this point in the history
  3. readd comet

    jpata committed Aug 24, 2021
    Configuration menu
    Copy the full SHA
    4adbf3a View commit details
    Browse the repository at this point in the history
  4. updat epochs

    jpata committed Aug 24, 2021
    Configuration menu
    Copy the full SHA
    bea6599 View commit details
    Browse the repository at this point in the history
  5. comet optional

    jpata committed Aug 24, 2021
    Configuration menu
    Copy the full SHA
    160db53 View commit details
    Browse the repository at this point in the history
  6. fix model saving

    jpata committed Aug 24, 2021
    Configuration menu
    Copy the full SHA
    6671735 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    bedebfa View commit details
    Browse the repository at this point in the history
  8. update delphes

    jpata committed Aug 24, 2021
    Configuration menu
    Copy the full SHA
    e2a9878 View commit details
    Browse the repository at this point in the history
  9. up

    jpata committed Aug 24, 2021
    Configuration menu
    Copy the full SHA
    14a0003 View commit details
    Browse the repository at this point in the history

Commits on Aug 25, 2021

  1. Configuration menu
    Copy the full SHA
    2598800 View commit details
    Browse the repository at this point in the history
  2. added customization function

    jpata committed Aug 25, 2021
    Configuration menu
    Copy the full SHA
    17b547f View commit details
    Browse the repository at this point in the history
  3. better name

    jpata committed Aug 25, 2021
    Configuration menu
    Copy the full SHA
    071c1ff View commit details
    Browse the repository at this point in the history
  4. fix import

    farakiko committed Aug 25, 2021
    Configuration menu
    Copy the full SHA
    a77e6ef View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    7d15a14 View commit details
    Browse the repository at this point in the history
  6. bug in the path

    farakiko committed Aug 25, 2021
    Configuration menu
    Copy the full SHA
    ab80242 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    315ddd3 View commit details
    Browse the repository at this point in the history
  8. small edit

    farakiko committed Aug 25, 2021
    Configuration menu
    Copy the full SHA
    a84a36d View commit details
    Browse the repository at this point in the history
  9. big cleanup

    farakiko committed Aug 25, 2021
    Configuration menu
    Copy the full SHA
    b1a693b View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    f199701 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    7bbe245 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    73b3e54 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    4f5dea7 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    3f78804 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    5fd1719 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    ea25798 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    fb29c20 View commit details
    Browse the repository at this point in the history
  18. fix name of model

    farakiko committed Aug 25, 2021
    Configuration menu
    Copy the full SHA
    768db2f View commit details
    Browse the repository at this point in the history
  19. oops

    farakiko committed Aug 25, 2021
    Configuration menu
    Copy the full SHA
    d26f264 View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2021

  1. feat: Add logging of GPU power

    In addition, the nvidia-smi plot script is modified
    to also plot the power.
    erwulff committed Aug 26, 2021
    Configuration menu
    Copy the full SHA
    2d83dfa View commit details
    Browse the repository at this point in the history
  2. fix energy regression

    jpata committed Aug 26, 2021
    Configuration menu
    Copy the full SHA
    c443137 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e809965 View commit details
    Browse the repository at this point in the history
  4. layernorm

    jpata committed Aug 26, 2021
    Configuration menu
    Copy the full SHA
    3b78128 View commit details
    Browse the repository at this point in the history

Commits on Aug 27, 2021

  1. added gen training

    jpata committed Aug 27, 2021
    Configuration menu
    Copy the full SHA
    fe6b328 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    98e4d37 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d301c5b View commit details
    Browse the repository at this point in the history
  4. fix paths for pipeline

    jpata committed Aug 27, 2021
    Configuration menu
    Copy the full SHA
    204c651 View commit details
    Browse the repository at this point in the history
  5. fix paths once again

    jpata committed Aug 27, 2021
    Configuration menu
    Copy the full SHA
    e9d5bc5 View commit details
    Browse the repository at this point in the history
  6. fix

    jpata committed Aug 27, 2021
    Configuration menu
    Copy the full SHA
    722b41b View commit details
    Browse the repository at this point in the history
  7. fix

    jpata committed Aug 27, 2021
    Configuration menu
    Copy the full SHA
    21270d4 View commit details
    Browse the repository at this point in the history
  8. up

    jpata committed Aug 27, 2021
    Configuration menu
    Copy the full SHA
    5be47dd View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    2b9f218 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    0956d54 View commit details
    Browse the repository at this point in the history
  11. fix num events

    jpata committed Aug 27, 2021
    Configuration menu
    Copy the full SHA
    9f22cb6 View commit details
    Browse the repository at this point in the history
  12. change epochs

    jpata committed Aug 27, 2021
    Configuration menu
    Copy the full SHA
    b15b6d7 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    88cf858 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    4261cf4 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    1ceb53c View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2021

  1. Configuration menu
    Copy the full SHA
    7b7cce1 View commit details
    Browse the repository at this point in the history

Commits on Aug 29, 2021

  1. up

    jpata committed Aug 29, 2021
    Configuration menu
    Copy the full SHA
    115419a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    53cec23 View commit details
    Browse the repository at this point in the history
  3. fix

    jpata committed Aug 29, 2021
    Configuration menu
    Copy the full SHA
    47cd7a2 View commit details
    Browse the repository at this point in the history
  4. fix

    jpata committed Aug 29, 2021
    Configuration menu
    Copy the full SHA
    d03a64d View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2021

  1. remove log

    jpata committed Aug 30, 2021
    Configuration menu
    Copy the full SHA
    6e25bb2 View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2021

  1. final update

    jpata committed Aug 31, 2021
    Configuration menu
    Copy the full SHA
    8da1044 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #76 from jpata/jpata_dev_aug21

    Learnable kernel, more monitoring plots for TF training
    jpata authored Aug 31, 2021
    Configuration menu
    Copy the full SHA
    59dcf03 View commit details
    Browse the repository at this point in the history
  3. update cms-dev model

    jpata committed Aug 31, 2021
    Configuration menu
    Copy the full SHA
    dff2f1d View commit details
    Browse the repository at this point in the history
  4. update cms-dev

    jpata committed Aug 31, 2021
    Configuration menu
    Copy the full SHA
    7cb3d49 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    13644f5 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    515c149 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    9ce68d0 View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2021

  1. more monitoring

    jpata committed Sep 1, 2021
    Configuration menu
    Copy the full SHA
    a2356f3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6478716 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #73 from faroukmokhtar/master

    Pytorch training updated + LRP
    jpata authored Sep 1, 2021
    Configuration menu
    Copy the full SHA
    e2256ad View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    cb79eea View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    7c49878 View commit details
    Browse the repository at this point in the history
  6. lsh configurable

    jpata committed Sep 1, 2021
    Configuration menu
    Copy the full SHA
    bc0c940 View commit details
    Browse the repository at this point in the history

Commits on Sep 2, 2021

  1. added LSH scanning

    jpata committed Sep 2, 2021
    Configuration menu
    Copy the full SHA
    4a60f46 View commit details
    Browse the repository at this point in the history
  2. up

    jpata committed Sep 2, 2021
    Configuration menu
    Copy the full SHA
    63446fd View commit details
    Browse the repository at this point in the history
  3. epoch one-based

    jpata committed Sep 2, 2021
    Configuration menu
    Copy the full SHA
    590a100 View commit details
    Browse the repository at this point in the history
  4. optimization with cls only

    jpata committed Sep 2, 2021
    Configuration menu
    Copy the full SHA
    32a32ec View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a668114 View commit details
    Browse the repository at this point in the history
  6. mpnn optimization

    jpata committed Sep 2, 2021
    Configuration menu
    Copy the full SHA
    9a921eb View commit details
    Browse the repository at this point in the history
  7. up

    jpata committed Sep 2, 2021
    Configuration menu
    Copy the full SHA
    557ccf6 View commit details
    Browse the repository at this point in the history
  8. up

    jpata committed Sep 2, 2021
    Configuration menu
    Copy the full SHA
    df8fc6f View commit details
    Browse the repository at this point in the history

Commits on Sep 3, 2021

  1. Configuration menu
    Copy the full SHA
    7b0f17d View commit details
    Browse the repository at this point in the history
  2. Merge pull request #77 from erwulff/raytune

    Raytune
    jpata authored Sep 3, 2021
    Configuration menu
    Copy the full SHA
    30237f5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a7985ea View commit details
    Browse the repository at this point in the history
  4. added cms gen config

    jpata committed Sep 3, 2021
    Configuration menu
    Copy the full SHA
    f2d75e0 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    80febc5 View commit details
    Browse the repository at this point in the history
  6. fix bin size

    jpata committed Sep 3, 2021
    Configuration menu
    Copy the full SHA
    1519195 View commit details
    Browse the repository at this point in the history
  7. fixes for gun sample training

    jpata committed Sep 3, 2021
    Configuration menu
    Copy the full SHA
    47ae9a4 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    cf7d974 View commit details
    Browse the repository at this point in the history
  9. Merge pull request #78 from jpata/jpata_sept21

    LSH configurable, update gun sample training [TF]
    jpata authored Sep 3, 2021
    Configuration menu
    Copy the full SHA
    504cab7 View commit details
    Browse the repository at this point in the history