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

Self-adaptive translation mode for Marian (runtime domain adaptation). #887

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

Commits on Mar 24, 2021

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

Commits on Mar 28, 2021

  1. Configuration menu
    Copy the full SHA
    521f634 View commit details
    Browse the repository at this point in the history
  2. Add vocabulary padding script

    kpu committed Mar 28, 2021
    Configuration menu
    Copy the full SHA
    67190db View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b165af8 View commit details
    Browse the repository at this point in the history
  4. Restore ensemble support

    kpu committed Mar 28, 2021
    Configuration menu
    Copy the full SHA
    4d8e327 View commit details
    Browse the repository at this point in the history
  5. Minor logging improvements

    kpu committed Mar 28, 2021
    Configuration menu
    Copy the full SHA
    203a9bb View commit details
    Browse the repository at this point in the history
  6. Return Histories

    kpu committed Mar 28, 2021
    Configuration menu
    Copy the full SHA
    c71d488 View commit details
    Browse the repository at this point in the history
  7. Alignments

    kpu committed Mar 28, 2021
    Configuration menu
    Copy the full SHA
    47feb2b View commit details
    Browse the repository at this point in the history
  8. Fix enit

    kpu committed Mar 28, 2021
    Configuration menu
    Copy the full SHA
    8fc8d02 View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2021

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

Commits on Mar 30, 2021

  1. Add an option to force loading

    kpu committed Mar 30, 2021
    Configuration menu
    Copy the full SHA
    9b3e76a View commit details
    Browse the repository at this point in the history
  2. Allow CPU only compilation

    XapaJIaMnu committed Mar 30, 2021
    Configuration menu
    Copy the full SHA
    cf12178 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7e06801 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    635cfb0 View commit details
    Browse the repository at this point in the history
  5. No stringstreams

    XapaJIaMnu committed Mar 30, 2021
    Configuration menu
    Copy the full SHA
    ee6ff75 View commit details
    Browse the repository at this point in the history

Commits on Apr 1, 2021

  1. Configuration menu
    Copy the full SHA
    57ddeba View commit details
    Browse the repository at this point in the history
  2. SwappableSlot: add GPU-to-GPU reset feature

    Davide Caroselli committed Apr 1, 2021
    Configuration menu
    Copy the full SHA
    4f2b218 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #1 from davidecaroselli/dynamic_swap_mvp

    SwappableSlot: add GPU-to-GPU reset feature
    XapaJIaMnu authored Apr 1, 2021
    Configuration menu
    Copy the full SHA
    fa51460 View commit details
    Browse the repository at this point in the history

Commits on Apr 2, 2021

  1. Merge branch 'dynamic_swap_mvp' of https://github.com/kpu/marian-dev

    …into dynamic_swap_mvp
    XapaJIaMnu committed Apr 2, 2021
    Configuration menu
    Copy the full SHA
    2062438 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e3f5388 View commit details
    Browse the repository at this point in the history
  3. Abort if not initialized

    kpu committed Apr 2, 2021
    Configuration menu
    Copy the full SHA
    ba4d166 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f8523b7 View commit details
    Browse the repository at this point in the history
  5. Check device index

    kpu committed Apr 2, 2021
    Configuration menu
    Copy the full SHA
    8bcfdcc View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2021

  1. Configuration menu
    Copy the full SHA
    a893f19 View commit details
    Browse the repository at this point in the history
  2. Build the model implement a simplistic training loop

    This doesn't work though because we're missing a lot of options because
    we initialize them manually instead of using the config parser.
    rihardsk committed Apr 8, 2021
    Configuration menu
    Copy the full SHA
    7f6d01e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f4e227e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    dcb7122 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    fcb9a61 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    6560067 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    7130800 View commit details
    Browse the repository at this point in the history
  8. Fix options parsing issues

    rihardsk committed Apr 8, 2021
    Configuration menu
    Copy the full SHA
    10cdffa View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    286a23c View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    85685c6 View commit details
    Browse the repository at this point in the history
  11. Some further debugging, ugh

    rihardsk committed Apr 8, 2021
    Configuration menu
    Copy the full SHA
    fca5fe4 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    37b6aa4 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    f67015e View commit details
    Browse the repository at this point in the history
  14. Fix the segfault in the repro by moving the builder inside the loop

    Turns out that the builder is maintaining some internal state and for some
    reason it messes everything up when building a new expressino graph the second
    time. Symptoms are
      1. the node ids in the graph are incremented by a constant amount in the
         second expression graph
      2. the graphviz diagram for the second graph is all messed up (edges missing
         and such)
    rihardsk committed Apr 8, 2021
    Configuration menu
    Copy the full SHA
    78bcce1 View commit details
    Browse the repository at this point in the history
  15. Move the builder initialization inside run() to fix the segfault

    Turns out that the builder is maintaining some internal state and for some
    reason it messes everything up when building a new expression graph the second
    time. The symptoms are
      1. the node ids in the graph are incremented by a constant amount in the
         second expression graph
      2. the graphviz diagram for the second graph is all messed up (edges missing
         and such)
    
    This is meant as a workaround, it seems to be quite inefficient
    rihardsk committed Apr 8, 2021
    Configuration menu
    Copy the full SHA
    162a17c View commit details
    Browse the repository at this point in the history
  16. Use a dedicated builder for the adaptive graph to avoid segfaults

    This moves crashing further down the line - the crash now happens upon
    translation with the adaptive graph
    rihardsk committed Apr 8, 2021
    Configuration menu
    Copy the full SHA
    de49880 View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2021

  1. Configuration menu
    Copy the full SHA
    29415c7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5b28f1f View commit details
    Browse the repository at this point in the history

Commits on Apr 20, 2021

  1. Configuration menu
    Copy the full SHA
    98b1ad1 View commit details
    Browse the repository at this point in the history
  2. Adapt self_adaptive.h to use the swappable stuff

    Haven't tested it. Likelly broken
    rihardsk committed Apr 20, 2021
    Configuration menu
    Copy the full SHA
    d14da1b View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2021

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

Commits on May 8, 2021

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

Commits on May 14, 2021

  1. Configuration menu
    Copy the full SHA
    c4ff8b9 View commit details
    Browse the repository at this point in the history
  2. Seek to beginning of the istringstream when resetting text input

    This solves an issue where a BatchGenerator cannot be initialized with a
    TextInput because iterating over batches would then exhaust the TextInput and it
    wouldn't reset upon BatchGenerator::prepare.
    rihardsk committed May 14, 2021
    Configuration menu
    Copy the full SHA
    16ec013 View commit details
    Browse the repository at this point in the history

Commits on May 19, 2021

  1. Configuration menu
    Copy the full SHA
    a220a2b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4f67aab View commit details
    Browse the repository at this point in the history

Commits on May 26, 2021

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

Commits on Jun 16, 2021

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

Commits on Jun 30, 2021

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

Commits on Jul 14, 2021

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

Commits on Jul 19, 2021

  1. Load params before building the graph, drop the F0:: prefix, clear pa…

    …rams
    
    celarParams() seems to be unnecessary here, though. Left it in because didn't
    want to recompile and test if working again.
    
    This approach still doesn't work though, btw. Managed to fix the issue where
    toMemoryPieces() was running into some null pointer problems, but ran into a
    different issue afterwards - "Parameters should be allocated by their graph.
    Parameter encoder_l1_self_Wq was not"
    rihardsk committed Jul 19, 2021
    Configuration menu
    Copy the full SHA
    e7d339b View commit details
    Browse the repository at this point in the history

Commits on Jul 23, 2021

  1. Try to clear the graph before loading the parameters in an attempt to…

    … solve null parameter values
    
    It doesn't help though
    rihardsk committed Jul 23, 2021
    Configuration menu
    Copy the full SHA
    26e7574 View commit details
    Browse the repository at this point in the history
  2. Recreate the graph upon every training invocation

    This works, finally
    rihardsk committed Jul 23, 2021
    Configuration menu
    Copy the full SHA
    58851ae View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2021

  1. The wrong vocab was being passed to the printer

    Or at least i think so
    rihardsk committed Aug 10, 2021
    Configuration menu
    Copy the full SHA
    2765e65 View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2021

  1. Configuration menu
    Copy the full SHA
    c289397 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    20c893d View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2021

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

Commits on Sep 8, 2021

  1. Configuration menu
    Copy the full SHA
    7a79027 View commit details
    Browse the repository at this point in the history
  2. Clean up some comments

    rihardsk committed Sep 8, 2021
    Configuration menu
    Copy the full SHA
    1790ea1 View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2021

  1. Simplify the training loop

    rihardsk committed Sep 14, 2021
    Configuration menu
    Copy the full SHA
    f8fe981 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4a4214a View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2021

  1. Configuration menu
    Copy the full SHA
    0c974eb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1176c3f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    79002cb View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    632d05f View commit details
    Browse the repository at this point in the history

Commits on Sep 17, 2021

  1. Configuration menu
    Copy the full SHA
    95ed9af View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    030ddb0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c90a4d7 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    448de67 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a6639ff View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2021

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

Commits on Sep 21, 2021

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

Commits on Sep 22, 2021

  1. Configuration menu
    Copy the full SHA
    295040d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6311f2b View commit details
    Browse the repository at this point in the history

Commits on Sep 24, 2021

  1. Configuration menu
    Copy the full SHA
    6bf3445 View commit details
    Browse the repository at this point in the history
  2. Fix amun model loading

    rihardsk committed Sep 24, 2021
    Configuration menu
    Copy the full SHA
    5cac0d1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1e1397d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3f9c088 View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2021

  1. Don't crash when training sets not provided

    Happens in server mode for self-adaptive translation
    rihardsk committed Oct 26, 2021
    Configuration menu
    Copy the full SHA
    d4ba1fa View commit details
    Browse the repository at this point in the history
  2. Copy over the self-adaptive server example script from an older commit

    It was left out during the reimplementation of the self-adaptive translation
    stuff to use the new "swappable" approach.
    rihardsk committed Oct 26, 2021
    Configuration menu
    Copy the full SHA
    24e8fc3 View commit details
    Browse the repository at this point in the history
  3. Clean up logging

    rihardsk committed Oct 26, 2021
    Configuration menu
    Copy the full SHA
    d68fd73 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    324f69a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    fa5f9f1 View commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2021

  1. Disable early stopping for self-adaptive training

    Fixes a crash due to the early-stopping-on option being required after the merge
    rihardsk committed Oct 27, 2021
    Configuration menu
    Copy the full SHA
    7f43074 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d7676bd View commit details
    Browse the repository at this point in the history
  3. Update CHANGELOG.md

    rihardsk committed Oct 27, 2021
    Configuration menu
    Copy the full SHA
    e48e737 View commit details
    Browse the repository at this point in the history

Commits on Oct 28, 2021

  1. Fix CPU-only compilation

    rihardsk committed Oct 28, 2021
    Configuration menu
    Copy the full SHA
    017b6c1 View commit details
    Browse the repository at this point in the history
  2. Add a virtual destructor to CollectorBase

    To fix a compilation error on MacOS
    rihardsk committed Oct 28, 2021
    Configuration menu
    Copy the full SHA
    1257a45 View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2021

  1. Fix casing in the COMPILE_ADAPTIVE cmake option's description

    Co-authored-by: Roman Grundkiewicz <[email protected]>
    rihardsk and snukky authored Nov 29, 2021
    Configuration menu
    Copy the full SHA
    96115c8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ba61acd View commit details
    Browse the repository at this point in the history
  3. Remove marian-adaptive from the .zip and .tgz targets

    It was an oversight to include them there in a previous commit. As the comment
    suggests, the targets are for some MS internal needs.
    rihardsk committed Nov 29, 2021
    Configuration menu
    Copy the full SHA
    2e7e78f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0084a3a View commit details
    Browse the repository at this point in the history
  5. Change the defaultDispFreq option to use an unsigned value

    At least i think that's what this does
    
    Co-authored-by: Roman Grundkiewicz <[email protected]>
    rihardsk and snukky authored Nov 29, 2021
    Configuration menu
    Copy the full SHA
    30c0400 View commit details
    Browse the repository at this point in the history
  6. Fix indentation

    Co-authored-by: Roman Grundkiewicz <[email protected]>
    rihardsk and snukky authored Nov 29, 2021
    Configuration menu
    Copy the full SHA
    2fbb6ec View commit details
    Browse the repository at this point in the history
  7. Fix indentation

    rihardsk committed Nov 29, 2021
    Configuration menu
    Copy the full SHA
    d09c021 View commit details
    Browse the repository at this point in the history
  8. Remove @brief from doc comments

    Co-authored-by: Roman Grundkiewicz <[email protected]>
    rihardsk and snukky authored Nov 29, 2021
    Configuration menu
    Copy the full SHA
    10d5bff View commit details
    Browse the repository at this point in the history
  9. Remove commented out debugging code

    Co-authored-by: Roman Grundkiewicz <[email protected]>
    rihardsk and snukky authored Nov 29, 2021
    Configuration menu
    Copy the full SHA
    d41d81b View commit details
    Browse the repository at this point in the history
  10. Don't split the line here

    Co-authored-by: Roman Grundkiewicz <[email protected]>
    rihardsk and snukky authored Nov 29, 2021
    Configuration menu
    Copy the full SHA
    fde2226 View commit details
    Browse the repository at this point in the history
  11. Fix indentation

    Co-authored-by: Roman Grundkiewicz <[email protected]>
    rihardsk and snukky authored Nov 29, 2021
    Configuration menu
    Copy the full SHA
    e407587 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    b869f68 View commit details
    Browse the repository at this point in the history

Commits on Nov 30, 2021

  1. Delete the pad_model_vocabulary.py script

    It came with the swappable code but isn't really needed for self-adaptive marian
    rihardsk committed Nov 30, 2021
    Configuration menu
    Copy the full SHA
    e04b829 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    939384b View commit details
    Browse the repository at this point in the history
  3. Explain the max-length-translate option; fix the default for max-lengt

    The default was wrong for self-adaptive translation
    rihardsk committed Nov 30, 2021
    Configuration menu
    Copy the full SHA
    92aaeea View commit details
    Browse the repository at this point in the history
  4. Remove an obsolete comment

    rihardsk committed Nov 30, 2021
    Configuration menu
    Copy the full SHA
    99553d5 View commit details
    Browse the repository at this point in the history
  5. Remove excessive empty lines

    rihardsk committed Nov 30, 2021
    Configuration menu
    Copy the full SHA
    8aec3ca View commit details
    Browse the repository at this point in the history
  6. Split some long lines

    rihardsk committed Nov 30, 2021
    Configuration menu
    Copy the full SHA
    971e1dc View commit details
    Browse the repository at this point in the history

Commits on Dec 1, 2021

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

Commits on Dec 2, 2021

  1. Configuration menu
    Copy the full SHA
    bcbeb2d View commit details
    Browse the repository at this point in the history
  2. Delete some more @Briefs

    rihardsk committed Dec 2, 2021
    Configuration menu
    Copy the full SHA
    2667ea9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5b28786 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    097effa View commit details
    Browse the repository at this point in the history

Commits on Dec 3, 2021

  1. Document some methods

    rihardsk committed Dec 3, 2021
    Configuration menu
    Copy the full SHA
    507f8eb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d797c90 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    babf93d View commit details
    Browse the repository at this point in the history
  4. Fix a typo

    rihardsk committed Dec 3, 2021
    Configuration menu
    Copy the full SHA
    2d1ff23 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    6955a9a View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    20cde20 View commit details
    Browse the repository at this point in the history

Commits on Dec 6, 2021

  1. Configuration menu
    Copy the full SHA
    bbe5196 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    85d831f View commit details
    Browse the repository at this point in the history
  3. Add punctiation for clarity

    rihardsk committed Dec 6, 2021
    Configuration menu
    Copy the full SHA
    7bb887a View commit details
    Browse the repository at this point in the history

Commits on Dec 9, 2021

  1. Fix a typo in a comment

    Co-authored-by: Roman Grundkiewicz <[email protected]>
    rihardsk and snukky authored Dec 9, 2021
    Configuration menu
    Copy the full SHA
    9f03070 View commit details
    Browse the repository at this point in the history
  2. Fix a typo in a comment

    Co-authored-by: Roman Grundkiewicz <[email protected]>
    rihardsk and snukky authored Dec 9, 2021
    Configuration menu
    Copy the full SHA
    96615e7 View commit details
    Browse the repository at this point in the history
  3. Fix a typo in a comment

    Co-authored-by: Roman Grundkiewicz <[email protected]>
    rihardsk and snukky authored Dec 9, 2021
    Configuration menu
    Copy the full SHA
    d4a77ba View commit details
    Browse the repository at this point in the history
  4. Revert an added space

    Wasn't intentional
    rihardsk committed Dec 9, 2021
    Configuration menu
    Copy the full SHA
    379418b View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    4bb6f5c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    c41a56b View commit details
    Browse the repository at this point in the history

Commits on Dec 10, 2021

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

Commits on Dec 15, 2021

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

Commits on Dec 16, 2021

  1. Configuration menu
    Copy the full SHA
    08d20d5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1326bb1 View commit details
    Browse the repository at this point in the history

Commits on Dec 28, 2021

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

Commits on Dec 29, 2021

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

Commits on Jan 28, 2022

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

Commits on Jan 31, 2022

  1. Configuration menu
    Copy the full SHA
    3359bb7 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #9 from marian-cef/adaptive-whole-graph-recreate-p…

    …atch-1
    
    Change "training-sets" to "train-sets"
    kpu authored Jan 31, 2022
    Configuration menu
    Copy the full SHA
    22230dd View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2022

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