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

Support glm3 and glm4. #8031

Merged
merged 39 commits into from
Jul 7, 2024
Merged

Support glm3 and glm4. #8031

merged 39 commits into from
Jul 7, 2024

Commits on May 29, 2024

  1. Configuration menu
    Copy the full SHA
    6630a2d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5a914ff View commit details
    Browse the repository at this point in the history
  3. fix lint error

    Signed-off-by: XingXing Qiao <[email protected]>
    xingxingqiao committed May 29, 2024
    Configuration menu
    Copy the full SHA
    f626b71 View commit details
    Browse the repository at this point in the history
  4. optimize convert-hf-to-gguf.py for chatglm model

    Signed-off-by: XingXing Qiao <[email protected]>
    xingxingqiao committed May 29, 2024
    Configuration menu
    Copy the full SHA
    f3bc337 View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2024

  1. support glm-4-9b-chat

    Signed-off-by: XingXing Qiao <[email protected]>
    xingxingqiao committed Jun 17, 2024
    Configuration menu
    Copy the full SHA
    1fc5bf5 View commit details
    Browse the repository at this point in the history

Commits on Jun 20, 2024

  1. fix eos tokens to glm4

    youth123 committed Jun 20, 2024
    Configuration menu
    Copy the full SHA
    8c5f1b2 View commit details
    Browse the repository at this point in the history
  2. remove unused log

    youth123 committed Jun 20, 2024
    Configuration menu
    Copy the full SHA
    95fd910 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e773174 View commit details
    Browse the repository at this point in the history

Commits on Jun 21, 2024

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

Commits on Jun 24, 2024

  1. add eos_id_list to llama.cpp

    youth123 committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    3a4d579 View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2024

  1. fix conflicts

    youth123 committed Jun 25, 2024
    Configuration menu
    Copy the full SHA
    9570806 View commit details
    Browse the repository at this point in the history
  2. fix code style

    youth123 committed Jun 25, 2024
    Configuration menu
    Copy the full SHA
    3b67ff8 View commit details
    Browse the repository at this point in the history
  3. fix code style

    youth123 committed Jun 25, 2024
    Configuration menu
    Copy the full SHA
    5f8f465 View commit details
    Browse the repository at this point in the history
  4. fix conflicts

    youth123 committed Jun 25, 2024
    Configuration menu
    Copy the full SHA
    f8d4fc9 View commit details
    Browse the repository at this point in the history
  5. fix conflicts

    youth123 committed Jun 25, 2024
    Configuration menu
    Copy the full SHA
    a67bc8f View commit details
    Browse the repository at this point in the history
  6. Merge branch 'glm_support'

    youth123 committed Jun 25, 2024
    Configuration menu
    Copy the full SHA
    3557944 View commit details
    Browse the repository at this point in the history
  7. Revert "add eos_id_list to llama.cpp"

    This reverts commit 3a4d579.
    youth123 committed Jun 25, 2024
    Configuration menu
    Copy the full SHA
    89e8aaf View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2024

  1. Configuration menu
    Copy the full SHA
    9396c7b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e18a536 View commit details
    Browse the repository at this point in the history
  3. fix chat template bug

    youth123 committed Jun 26, 2024
    Configuration menu
    Copy the full SHA
    0595f03 View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2024

  1. Configuration menu
    Copy the full SHA
    7357273 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1dc8e91 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e9e47eb View commit details
    Browse the repository at this point in the history

Commits on Jun 28, 2024

  1. merge master

    youth123 committed Jun 28, 2024
    Configuration menu
    Copy the full SHA
    482bdea View commit details
    Browse the repository at this point in the history
  2. fix chat template bug

    youth123 committed Jun 28, 2024
    Configuration menu
    Copy the full SHA
    bbe1926 View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2024

  1. fix codestyle

    youth123 committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    d07f0a9 View commit details
    Browse the repository at this point in the history
  2. merge master

    youth123 committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    0d3a94a View commit details
    Browse the repository at this point in the history
  3. fix conflicts

    youth123 committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    5e9dba6 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    865dd03 View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2024

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

Commits on Jul 3, 2024

  1. merge master

    youth123 committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    ec89d06 View commit details
    Browse the repository at this point in the history
  2. fix conflicts

    youth123 committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    80b381b View commit details
    Browse the repository at this point in the history
  3. remove prefix and suffix

    youth123 committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    bf54db2 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    bce74d8 View commit details
    Browse the repository at this point in the history

Commits on Jul 5, 2024

  1. fix: resolve Flake8 errors in convert-hf-to-gguf.py

    - Fix E302 by adding two blank lines before top-level function definitions
    - Replace print statements to fix NP100
    - Fix E303 by ensuring only one blank line between lines of code
    Umpire2018 committed Jul 5, 2024
    Configuration menu
    Copy the full SHA
    3be4270 View commit details
    Browse the repository at this point in the history

Commits on Jul 7, 2024

  1. Merge pull request #2 from Umpire2018/fix/flake8-error

    fix: resolve Flake8 errors in `convert-hf-to-gguf.py`
    youth123 authored Jul 7, 2024
    Configuration menu
    Copy the full SHA
    ed54a65 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5b760f2 View commit details
    Browse the repository at this point in the history
  3. merge master

    youth123 committed Jul 7, 2024
    Configuration menu
    Copy the full SHA
    223eb18 View commit details
    Browse the repository at this point in the history
  4. fix by comments

    youth123 committed Jul 7, 2024
    Configuration menu
    Copy the full SHA
    4e85b06 View commit details
    Browse the repository at this point in the history