• 0 Posts
  • 81 Comments
Joined 10 months ago
cake
Cake day: December 16th, 2023

help-circle

  • Biggest issue I see is that these LLMs tend to repeat themselves after a surprisingly short number of times (unless they’re sufficiently bloated like ChatGPT).

    If you ask any of the users of Sillytavern or RisuAI they’ll tell you that these things have a long tail of not being very creative.



  • “releasing the modified version to the public” would cover them re-closing the source and then subsequently releasing that newly closed source, so they can’t relicense it and then release the built version of the code.

    At least not easily, this is where court history would likely need to be visited because the way it’s worded the interpretability of “modified” in this context would need to be examined.





  • The problem is that the Linux kernel is monolithic so introducing rust into it does have certain repercussions about downstream compatibility between modules.

    Right now the rust code in the kernel uses c bindings for some things and there’s a not-insignificant portion of C developers who both refuse to use rust and refuse to take responsibility if the code they write breaks something in the rust bindings.

    If it was pure C there would be no excuse as the standard for Linux development is that you don’t break downstream, but the current zeitgeist is that Rust being a different language means that the current C developers have no responsibility if their code refactoring now breaks the rust code.

    It’s a frankly ridiculous stance to take, considering the long history of Linux being very strict on not breaking downstream code.


  • Well part of what it does is grab your actual desktop background to use, and there’s a couple different ways to do that on Linux afaik

    Also I guess the file dialogs would open only to the wine prefix? My experience with wine applications and dialogs is mostly through bottles, so I’m not sure of the sandboxing…









  • From the approach section:

    A Transformer sequence-to-sequence model is trained on various speech processing tasks, including multilingual speech recognition, speech translation, spoken language identification, and voice activity detection. These tasks are jointly represented as a sequence of tokens to be predicted by the decoder, allowing a single model to replace many stages of a traditional speech-processing pipeline. The multitask training format uses a set of special tokens that serve as task specifiers or classification targets.

    This is not sufficient data information to recreate the model.

    From the training data section:

    The models are trained on 680,000 hours of audio and the corresponding transcripts collected from the internet. 65% of this data (or 438,000 hours) represents English-language audio and matched English transcripts, roughly 18% (or 126,000 hours) represents non-English audio and English transcripts, while the final 17% (or 117,000 hours) represents non-English audio and the corresponding transcript. This non-English data represents 98 different languages. As discussed in the accompanying paper, we see that performance on transcription in a given language is directly correlated with the amount of training data we employ in that language.

    This is also insufficient data information and links to the paper itself for that data information.

    Additionally, model cards =/= data cards. It’s an important distinction in AI training.

    There are guides on how to Finetune the model yourself: https://huggingface.co/blog/fine-tune-whisper

    Fine-tuning is not re-creating the model. This is an important distinction.

    The OSAID has a pretty simple checklist for the OSAID definition: https://opensource.org/deepdive/drafts/the-open-source-ai-definition-checklist-draft-v-0-0-9

    To go through the list of materials required to fit the OSAID:

    Datasets Available under OSD-compliant license

    Whisper does not provide the datasets.

    Research paper Available under OSD-compliant license

    The research paper is available, but does not fit an OSD-compliant license.

    Technical report Available under OSD-compliant license

    Whisper does not provide the technical report.

    Data card Available under OSD-compliant license

    Whisper provides the model card, but not the data card.



  • The problem with just shipping AI model weights is that they run up against the issue of point 2 of the OSD:

    The program must include source code, and must allow distribution in source code as well as compiled form. Where some form of a product is not distributed with source code, there must be a well-publicized means of obtaining the source code for no more than a reasonable reproduction cost, preferably downloading via the Internet without charge. The source code must be the preferred form in which a programmer would modify the program. Deliberately obfuscated source code is not allowed. Intermediate forms such as the output of a preprocessor or translator are not allowed.

    AI models can’t be distributed purely as source because they are pre-trained. It’s the same as distributing pre-compiled binaries.

    It’s the entire reason the OSAID exists:

    1. The OSD doesn’t fit because it requires you distribute the source code in a non-preprocessed manner.
    2. AIs can’t necessarily distribute the training data alongside the code that trains the model, so in order to help bridge the gap the OSI made the OSAID - as long as you fully document the way you trained the model so that somebody that has access to the training data you used can make a mostly similar set of weights, you fall within the OSAID

    Edit: also the information about the training data has to be published in an OSD-equivalent license (such as creative Commons) so that using it doesn’t cause licensing issues with research paper print companies (like arxiv)


  • Whisper’s code and model weights are released under the MIT License. See LICENSE for further details. So that definitely meets the Open Source Definition on your first link.

    Model weights by themselves do not qualify as “open source”, as the OSAID qualifies. Weights are not source.

    Additional WER/CER metrics corresponding to the other models and datasets can be found in Appendix D.1, D.2, and D.4 of the paper, as well as the BLEU (Bilingual Evaluation Understudy) scores for translation in Appendix D.3.

    This is not training data. These are testing metrics.

    Edit: additionally, assuming you might have been talking about the link to the research paper. It’s not published under an OSD license. If it were this would qualify the model.