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

gguf-py : fix some metadata name extraction edge cases #8591

Merged
merged 5 commits into from
Jul 21, 2024

Commits on Jul 19, 2024

  1. gguf-py : fix some metadata name extraction edge cases

    * convert_lora : use the lora dir for the model card path
    compilade committed Jul 19, 2024
    Configuration menu
    Copy the full SHA
    2164c9d View commit details
    Browse the repository at this point in the history
  2. gguf-py : more metadata edge cases fixes

    Multiple finetune versions are now joined together,
    and the removal of the basename annotation on trailing versions
    is more robust.
    compilade committed Jul 19, 2024
    Configuration menu
    Copy the full SHA
    912e6fa View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2024

  1. Configuration menu
    Copy the full SHA
    a3d154b View commit details
    Browse the repository at this point in the history
  2. convert_lora : fix default filename

    The default filename was previously hardcoded.
    
    * convert_hf : Model.fname_out can no longer be None
    compilade committed Jul 20, 2024
    Configuration menu
    Copy the full SHA
    bf8e71b View commit details
    Browse the repository at this point in the history
  3. gguf-py : do not use title case for naming convention

    Some models use acronyms in lowercase,
    which can't be title-cased like other words,
    so it's best to simply use the same case
    as in the original model name.
    
    Note that the size label still has an uppercased suffix
    to make it distinguishable from the context size of a finetune.
    compilade committed Jul 20, 2024
    Configuration menu
    Copy the full SHA
    1932a1b View commit details
    Browse the repository at this point in the history