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

Tf 214 #220

Open
wants to merge 140 commits into
base: master
Choose a base branch
from
Open

Tf 214 #220

wants to merge 140 commits into from

Commits on Feb 21, 2022

  1. Configuration menu
    Copy the full SHA
    f62009a View commit details
    Browse the repository at this point in the history
  2. add in attention policy map

    Arcturai committed Feb 21, 2022
    Configuration menu
    Copy the full SHA
    9acf63f View commit details
    Browse the repository at this point in the history

Commits on Mar 13, 2022

  1. Configuration menu
    Copy the full SHA
    553f9ea View commit details
    Browse the repository at this point in the history
  2. restore tf.function()'s

    Arcturai committed Mar 13, 2022
    Configuration menu
    Copy the full SHA
    b9f13f6 View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2022

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

Commits on Mar 19, 2022

  1. asdf

    Ergodice committed Mar 19, 2022
    Configuration menu
    Copy the full SHA
    9dd755a View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2022

  1. try fix for net.py bug

    Arcturai committed Mar 28, 2022
    Configuration menu
    Copy the full SHA
    5b37de0 View commit details
    Browse the repository at this point in the history

Commits on Mar 30, 2022

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

Commits on Apr 2, 2022

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

Commits on Apr 3, 2022

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

Commits on Apr 4, 2022

  1. Added dense

    dense function combines dydense/dyrelu/linearscaling/gating into one function
    Ergodice committed Apr 4, 2022
    Configuration menu
    Copy the full SHA
    9652e93 View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2022

  1. Small changes

    Add logit gating, dense_layer, stop file, make dyrelu slopes/intercepts trainable
    Ergodice committed Apr 8, 2022
    Configuration menu
    Copy the full SHA
    eec873b View commit details
    Browse the repository at this point in the history

Commits on Apr 13, 2022

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

Commits on Apr 23, 2022

  1. Weight gen, buckets

    Weight gen (simple_gen) generates attention weights from each square by compressing then doing a batched dense to 64; buckets divides the training data based on material left.
    Ergodice committed Apr 23, 2022
    Configuration menu
    Copy the full SHA
    bb26b31 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1 from Ergodice/multiple-nets

    Weight gen, buckets
    Ergodice authored Apr 23, 2022
    Configuration menu
    Copy the full SHA
    65d6ecc View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2022

  1. dytalking_heads, fix visible device issue

    Dytalking heads at this stage dynamically generates the projection matrices for the attention weights (same for all square pairs). Fixed set_visible_devices error by initializing tensorflow first in TFProcess and making DyDense temperature an instance attribute.
    Ergodice committed Apr 24, 2022
    Configuration menu
    Copy the full SHA
    5baa723 View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2022

  1. Fix DyDense saving issues

    DyDense layers had issue saving sublayers so the design approach of the squeeze-excite layers is used, i.e., sublayers are moved outside into a function.
    Ergodice committed Apr 26, 2022
    Configuration menu
    Copy the full SHA
    afd1ad0 View commit details
    Browse the repository at this point in the history

Commits on May 8, 2022

  1. Add fullgen

    Fullgen compresses the tokens and combines them to extract global information into attention weights.
    Ergodice committed May 8, 2022
    Configuration menu
    Copy the full SHA
    b98b1c4 View commit details
    Browse the repository at this point in the history

Commits on May 12, 2022

  1. Configuration menu
    Copy the full SHA
    99b5b20 View commit details
    Browse the repository at this point in the history
  2. Fix fullgen history

    Ergodice committed May 12, 2022
    Configuration menu
    Copy the full SHA
    636f502 View commit details
    Browse the repository at this point in the history

Commits on Aug 17, 2022

  1. Add dytalking heads

    Dytalking heads adds residual to matrix specifying linear transformation
    Ergodice committed Aug 17, 2022
    Configuration menu
    Copy the full SHA
    4462fda View commit details
    Browse the repository at this point in the history

Commits on Aug 22, 2022

  1. Remove legacy code, add arc encoding and example yaml

    Removed old modules which were not useful including yaml references, also removed legacy resnet code. Added arc's encoding with option in yaml and also added example.yaml
    Ergodice committed Aug 22, 2022
    Configuration menu
    Copy the full SHA
    d16db6c View commit details
    Browse the repository at this point in the history
  2. typo in example.yaml

    Ergodice committed Aug 22, 2022
    Configuration menu
    Copy the full SHA
    50ae5c0 View commit details
    Browse the repository at this point in the history
  3. Update Readme, remove old files

    update Readme to describe talking heads, fullgen, and dynamic kernel methods. Removed leelalogs and configs, except for example.yaml.
    Ergodice committed Aug 22, 2022
    Configuration menu
    Copy the full SHA
    a8e76d8 View commit details
    Browse the repository at this point in the history

Commits on Aug 25, 2022

  1. Typos, bug fixes

    Fixed typo in tfprocess and Readme, made some config stuff oprtional, fixed arc encoding, removed fullgen bias
    Ergodice committed Aug 25, 2022
    Configuration menu
    Copy the full SHA
    a01b2fa View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2022

  1. Configuration menu
    Copy the full SHA
    1a5a860 View commit details
    Browse the repository at this point in the history
  2. Remove dyrelu reference

    Ergodice committed Sep 1, 2022
    Configuration menu
    Copy the full SHA
    97bc128 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0e7740e View commit details
    Browse the repository at this point in the history
  4. Add metrics, update README

    Added search_loss, which is one over the prediction for the best move, and confident_accuracy, which is the accuracy for positions where there is a clear best move. Removed simple gating. Also updated README to include info on auxiliary losses.
    Ergodice committed Sep 1, 2022
    Configuration menu
    Copy the full SHA
    6619318 View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2022

  1. Smolgen!

    Smolgen is more efficient version of fullgen, also added square relu which adds 0.5% pol acc
    Ergodice committed Nov 22, 2022
    Configuration menu
    Copy the full SHA
    e8c76b2 View commit details
    Browse the repository at this point in the history
  2. Update example.yaml

    Ergodice committed Nov 22, 2022
    Configuration menu
    Copy the full SHA
    886e1ed View commit details
    Browse the repository at this point in the history
  3. Fix typo

    self.ffn_gating does not belong
    Ergodice committed Nov 22, 2022
    Configuration menu
    Copy the full SHA
    e896316 View commit details
    Browse the repository at this point in the history

Commits on Dec 12, 2022

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

Commits on Dec 13, 2022

  1. Configuration menu
    Copy the full SHA
    65d7a45 View commit details
    Browse the repository at this point in the history
  2. Add input gating weights

    almaudoh committed Dec 13, 2022
    Configuration menu
    Copy the full SHA
    c200fd2 View commit details
    Browse the repository at this point in the history
  3. input gating rename.

    almaudoh committed Dec 13, 2022
    Configuration menu
    Copy the full SHA
    baf54b3 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a096e91 View commit details
    Browse the repository at this point in the history
  5. Minor fixes

    almaudoh committed Dec 13, 2022
    Configuration menu
    Copy the full SHA
    c0a38e1 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    8bb3b36 View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2022

  1. Merge pull request #2 from almaudoh/attention-net-body-smolgen

    Smolgen protobuf updates
    Ergodice authored Dec 14, 2022
    Configuration menu
    Copy the full SHA
    3ed0360 View commit details
    Browse the repository at this point in the history

Commits on Dec 25, 2022

  1. Nadam, RMSprop, better multigpu, onnx continuation

    Nadam and RMSprop optimizers, ability to choose particular gpu's (not all or one gpu but 0, 1 out of 4 etc, onnx save folder naming changes to fix continuation failure bug)
    teck45 authored Dec 25, 2022
    Configuration menu
    Copy the full SHA
    e30ce6a View commit details
    Browse the repository at this point in the history
  2. tfprocess.py typo fix

    tfprocess.py typo fix in comment about net to model hack
    teck45 authored Dec 25, 2022
    Configuration menu
    Copy the full SHA
    e58bd38 View commit details
    Browse the repository at this point in the history

Commits on Dec 26, 2022

  1. Merge pull request #3 from teck45/patch-1

    Nadam, RMSprop, better multigpu, onnx continuation
    Ergodice authored Dec 26, 2022
    Configuration menu
    Copy the full SHA
    70b6451 View commit details
    Browse the repository at this point in the history
  2. Add reducible policy loss

    policy rl is the amount of policy loss that can be reduced (i.e., policy loss minus entropy of target)
    Ergodice committed Dec 26, 2022
    Configuration menu
    Copy the full SHA
    ffd1a67 View commit details
    Browse the repository at this point in the history
  3. Remove talking heads and glu

    Ergodice committed Dec 26, 2022
    Configuration menu
    Copy the full SHA
    1d402a9 View commit details
    Browse the repository at this point in the history
  4. Add fast depthwise process

    FastDepthwise acts as a depthwise convolution but far faster. use_depthwise_process in the yaml adds a dense layer with sqrrelu activation followed by layer norm and FastDepthwise
    Ergodice committed Dec 26, 2022
    Configuration menu
    Copy the full SHA
    d006889 View commit details
    Browse the repository at this point in the history
  5. Add attn_wts to network outputs

    For use with j33's attention vis
    Ergodice committed Dec 26, 2022
    Configuration menu
    Copy the full SHA
    cdc76ca View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    580460d View commit details
    Browse the repository at this point in the history
  7. Remove comment

    Ergodice committed Dec 26, 2022
    Configuration menu
    Copy the full SHA
    49f54c8 View commit details
    Browse the repository at this point in the history
  8. Update README.md

    Ergodice committed Dec 26, 2022
    Configuration menu
    Copy the full SHA
    bb06d69 View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2023

  1. Add BT3 improvements

    FastLayerNormalization, switch layernorm alphas, mish activation, update depthwise process
    Ergodice committed Jan 10, 2023
    Configuration menu
    Copy the full SHA
    7922c43 View commit details
    Browse the repository at this point in the history

Commits on Jan 15, 2023

  1. Remove obsolete modules

    Ergodice committed Jan 15, 2023
    Configuration menu
    Copy the full SHA
    2ac48cf View commit details
    Browse the repository at this point in the history
  2. Add sparsity support

    Ergodice committed Jan 15, 2023
    Configuration menu
    Copy the full SHA
    b4e7203 View commit details
    Browse the repository at this point in the history

Commits on Jan 16, 2023

  1. Configuration menu
    Copy the full SHA
    1544b97 View commit details
    Browse the repository at this point in the history
  2. Update README.md

    Ergodice committed Jan 16, 2023
    Configuration menu
    Copy the full SHA
    0c10d4e View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2023

  1. Configuration menu
    Copy the full SHA
    5bdc121 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    28189aa View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2023

  1. Refactor ffn activation

    Reverted obsolete features and allowed ffn to be specified more cleanly
    Ergodice committed Jan 31, 2023
    Configuration menu
    Copy the full SHA
    3d9f947 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    884b994 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    cbfe579 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e57af20 View commit details
    Browse the repository at this point in the history

Commits on Feb 25, 2023

  1. Add categorical value

    Ergodice committed Feb 25, 2023
    Configuration menu
    Copy the full SHA
    b881e66 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    40df352 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ddd18b4 View commit details
    Browse the repository at this point in the history
  4. Refactor value cat loss

    Ergodice committed Feb 25, 2023
    Configuration menu
    Copy the full SHA
    b1febf4 View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2023

  1. Fix make_value_buckets bug

    make_value_buckets did not receive num_buckets
    Ergodice committed Feb 28, 2023
    Configuration menu
    Copy the full SHA
    7bf0b07 View commit details
    Browse the repository at this point in the history
  2. Clarify comment

    Ergodice committed Feb 28, 2023
    Configuration menu
    Copy the full SHA
    6d510e7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ebed2c6 View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2023

  1. fix default activation bug

    default activation was incorreclty set to None
    Ergodice committed Mar 2, 2023
    Configuration menu
    Copy the full SHA
    49251d8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cf0bd56 View commit details
    Browse the repository at this point in the history
  3. Describe categorical value

    Ergodice committed Mar 2, 2023
    Configuration menu
    Copy the full SHA
    813c3ca View commit details
    Browse the repository at this point in the history
  4. Clarify cvh in Readme

    Ergodice committed Mar 2, 2023
    Configuration menu
    Copy the full SHA
    b1460bf View commit details
    Browse the repository at this point in the history
  5. Fix math error in Readme

    Ergodice committed Mar 2, 2023
    Configuration menu
    Copy the full SHA
    3d05a3a View commit details
    Browse the repository at this point in the history

Commits on Apr 6, 2023

  1. Add roadmap

    Ergodice committed Apr 6, 2023
    Configuration menu
    Copy the full SHA
    ecd1b44 View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2023

  1. Add BT3 changes

    Ergodice committed Apr 8, 2023
    Configuration menu
    Copy the full SHA
    9dcc7d9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    adc2b25 View commit details
    Browse the repository at this point in the history

Commits on May 4, 2023

  1. More BT3 improvements

    RMSNorm support, value cat -> value error, more organized outputs (dict rather than tuple)
    Ergodice committed May 4, 2023
    Configuration menu
    Copy the full SHA
    55f65d1 View commit details
    Browse the repository at this point in the history

Commits on May 5, 2023

  1. Configuration menu
    Copy the full SHA
    a69a69e View commit details
    Browse the repository at this point in the history
  2. Add new net protobuf

    new stuff: ip_val_err and ip_emb_preproc. In the backend for the engine, RMSNorm and no norm at all should be recognized by the lack of beta/both gamma and beta
    Ergodice committed May 5, 2023
    Configuration menu
    Copy the full SHA
    38582e7 View commit details
    Browse the repository at this point in the history
  3. Couple missed net arguments

    Ergodice committed May 5, 2023
    Configuration menu
    Copy the full SHA
    6f88d80 View commit details
    Browse the repository at this point in the history
  4. Fix multigpu training

    Ergodice committed May 5, 2023
    Configuration menu
    Copy the full SHA
    0104192 View commit details
    Browse the repository at this point in the history
  5. Revert "Fix multigpu training"

    This reverts commit 0104192.
    Ergodice committed May 5, 2023
    Configuration menu
    Copy the full SHA
    45e803d View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    f741d62 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    4b9e143 View commit details
    Browse the repository at this point in the history

Commits on May 6, 2023

  1. "norm" -> "ln" in net.py

    Ergodice committed May 6, 2023
    Configuration menu
    Copy the full SHA
    e300a2c View commit details
    Browse the repository at this point in the history
  2. Fix multigpu training

    Didn't work before with gpus separated by commas
    Ergodice committed May 6, 2023
    Configuration menu
    Copy the full SHA
    e1258d6 View commit details
    Browse the repository at this point in the history
  3. Fix proto enum reuse

    Ergodice committed May 6, 2023
    Configuration menu
    Copy the full SHA
    3e9e6ec View commit details
    Browse the repository at this point in the history

Commits on May 7, 2023

  1. Support more optimizers

    Ergodice committed May 7, 2023
    Configuration menu
    Copy the full SHA
    a545a11 View commit details
    Browse the repository at this point in the history
  2. Fix half-precision training

    Ergodice committed May 7, 2023
    Configuration menu
    Copy the full SHA
    5d6ad77 View commit details
    Browse the repository at this point in the history

Commits on May 8, 2023

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

Commits on May 14, 2023

  1. Initial quantization commit

    Setting p=x in quantized_conv gives it p bits of precision
    Ergodice committed May 14, 2023
    Configuration menu
    Copy the full SHA
    9e8507e View commit details
    Browse the repository at this point in the history
  2. Support mish activation

    Ergodice committed May 14, 2023
    Configuration menu
    Copy the full SHA
    24aca65 View commit details
    Browse the repository at this point in the history

Commits on May 15, 2023

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

Commits on May 20, 2023

  1. Revert to pre quant

    Ergodice committed May 20, 2023
    Configuration menu
    Copy the full SHA
    0578e33 View commit details
    Browse the repository at this point in the history
  2. Add quantization file

    Ergodice committed May 20, 2023
    Configuration menu
    Copy the full SHA
    440982a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f0972ae View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f2e8bf2 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e5b2017 View commit details
    Browse the repository at this point in the history

Commits on May 22, 2023

  1. Configuration menu
    Copy the full SHA
    0c2082e View commit details
    Browse the repository at this point in the history
  2. Efficient grad scale

    Ergodice committed May 22, 2023
    Configuration menu
    Copy the full SHA
    90736b8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    51fb562 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    93bdbcb View commit details
    Browse the repository at this point in the history
  5. Remove unused variable

    Ergodice committed May 22, 2023
    Configuration menu
    Copy the full SHA
    a790eda View commit details
    Browse the repository at this point in the history

Commits on Jul 4, 2023

  1. Remove quantization

    Ergodice committed Jul 4, 2023
    Configuration menu
    Copy the full SHA
    6470921 View commit details
    Browse the repository at this point in the history

Commits on Jul 14, 2023

  1. Update BT3 proto

    Ergodice committed Jul 14, 2023
    Configuration menu
    Copy the full SHA
    b05d625 View commit details
    Browse the repository at this point in the history
  2. Update with BT3 improvements

    Ergodice committed Jul 14, 2023
    Configuration menu
    Copy the full SHA
    9c664d9 View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2023

  1. Refactor and bugfixes

    Ergodice committed Aug 4, 2023
    Configuration menu
    Copy the full SHA
    2c34955 View commit details
    Browse the repository at this point in the history
  2. Make BT3 features optional

    Ergodice committed Aug 4, 2023
    Configuration menu
    Copy the full SHA
    dc62f82 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d5d8aed View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2023

  1. Refactor losses

    Ergodice committed Aug 8, 2023
    Configuration menu
    Copy the full SHA
    dce28f2 View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2023

  1. Add and clean up heads

    Ergodice committed Aug 18, 2023
    Configuration menu
    Copy the full SHA
    e26692b View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2023

  1. Move sqrt in optwgt gen

    Ergodice committed Aug 19, 2023
    Configuration menu
    Copy the full SHA
    7ec4b47 View commit details
    Browse the repository at this point in the history

Commits on Aug 22, 2023

  1. Fix bug with optwgt shape

    Ergodice committed Aug 22, 2023
    Configuration menu
    Copy the full SHA
    82bd638 View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2023

  1. Remove policy_val

    Ergodice committed Aug 23, 2023
    Configuration menu
    Copy the full SHA
    055e903 View commit details
    Browse the repository at this point in the history

Commits on Aug 24, 2023

  1. Add opponent policy

    Used for regularization, was found to speed up training in Katago
    Ergodice committed Aug 24, 2023
    Configuration menu
    Copy the full SHA
    bb25b71 View commit details
    Browse the repository at this point in the history

Commits on Aug 27, 2023

  1. Revert "Add opponent policy"

    This reverts commit bb25b71.
    Ergodice committed Aug 27, 2023
    Configuration menu
    Copy the full SHA
    14ed59c View commit details
    Browse the repository at this point in the history
  2. Fix q_st rescoring

    Ergodice committed Aug 27, 2023
    Configuration menu
    Copy the full SHA
    b0626de View commit details
    Browse the repository at this point in the history
  3. Simplify apply_alpha

    Ergodice committed Aug 27, 2023
    Configuration menu
    Copy the full SHA
    6b55227 View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2023

  1. Configuration menu
    Copy the full SHA
    c51152c View commit details
    Browse the repository at this point in the history
  2. Revert "Change sign on alpha exponent"

    This reverts commit c51152c.
    Ergodice committed Aug 28, 2023
    Configuration menu
    Copy the full SHA
    4905804 View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2023

  1. Remove policy val loss

    Ergodice committed Aug 30, 2023
    Configuration menu
    Copy the full SHA
    8220533 View commit details
    Browse the repository at this point in the history

Commits on Sep 7, 2023

  1. Configuration menu
    Copy the full SHA
    52231ad View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    64b9ba5 View commit details
    Browse the repository at this point in the history

Commits on Sep 17, 2023

  1. Configuration menu
    Copy the full SHA
    39ce9aa View commit details
    Browse the repository at this point in the history
  2. Fix typo in tfprocess.py

    Ergodice committed Sep 17, 2023
    Configuration menu
    Copy the full SHA
    00166e9 View commit details
    Browse the repository at this point in the history

Commits on Sep 24, 2023

  1. Remove arc encoding

    Ergodice committed Sep 24, 2023
    Configuration menu
    Copy the full SHA
    d6f59b9 View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2023

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

Commits on Oct 6, 2023

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

Commits on Oct 11, 2023

  1. Merge pull request #5 from almaudoh/attention-net-updates

    Fix net.py to match current proto.
    Ergodice authored Oct 11, 2023
    Configuration menu
    Copy the full SHA
    1eacb21 View commit details
    Browse the repository at this point in the history
  2. Get mixed precision working

    Ergodice committed Oct 11, 2023
    Configuration menu
    Copy the full SHA
    8d339ae View commit details
    Browse the repository at this point in the history
  3. Add categorical value

    Ergodice committed Oct 11, 2023
    Configuration menu
    Copy the full SHA
    7ccd535 View commit details
    Browse the repository at this point in the history
  4. Add BT4 improvements

    Ergodice committed Oct 11, 2023
    Configuration menu
    Copy the full SHA
    3a46f31 View commit details
    Browse the repository at this point in the history
  5. Update lczero-common

    Ergodice committed Oct 11, 2023
    Configuration menu
    Copy the full SHA
    80d46a7 View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2023

  1. Fix policy loss bug

    Ergodice committed Oct 14, 2023
    Configuration menu
    Copy the full SHA
    a0a473f View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2023

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

Commits on Oct 31, 2023

  1. Initial tf 2.14 commit

    Ergodice committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    dc83a58 View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2023

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

Commits on Nov 5, 2023

  1. Configuration menu
    Copy the full SHA
    95c2c1a View commit details
    Browse the repository at this point in the history
  2. Turn on test reporting

    Ergodice committed Nov 5, 2023
    Configuration menu
    Copy the full SHA
    1317cc3 View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2023

  1. Update net.proto

    Ergodice committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    dbfb7fd View commit details
    Browse the repository at this point in the history