diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..6f10933 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,101 @@ +name: Deploy + +on: + workflow_run: + workflows: + - Test + types: + - completed + workflow_dispatch: + inputs: + environment: + description: 'Deploy to environment' + required: true + type: environment + default: 'Stage' + +jobs: + secrets-check: + runs-on: ubuntu-latest + environment: ${{ inputs.environment || 'Production' }} + steps: + - name: Check DEPLOY_HOST + env: + DEPLOY_HOST: ${{ secrets.DEPLOY_HOST }} + run: | + if [ -z "$DEPLOY_HOST" ]; then + echo "DEPLOY_HOST is not set." + exit 1 + fi + + - name: Check DEPLOY_USER + env: + DEPLOY_USER: ${{ secrets.DEPLOY_USER }} + run: | + if [ -z "$DEPLOY_USER" ]; then + echo "DEPLOY_USER is not set." + exit 1 + fi + + - name: Check DEPLOY_PATH + env: + DEPLOY_PATH: ${{ secrets.DEPLOY_PATH }} + run: | + if [ -z "$DEPLOY_PATH" ]; then + echo "DEPLOY_PATH is not set." + exit 1 + fi + + - name: Check DEPLOY_KEY + env: + DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }} + run: | + if [ -z "$DEPLOY_KEY" ]; then + echo "DEPLOY_KEY is not set" + exit 1 + fi + + deploy: + runs-on: ubuntu-latest + needs: secrets-check + environment: ${{ inputs.environment || 'Production' }} + if: ${{ github.event.workflow_run.conclusion == 'success' || + github.event_name == 'workflow_dispatch' }} + + env: + DEPLOY_HOST: ${{ secrets.DEPLOY_HOST }} + DEPLOY_USER: ${{ secrets.DEPLOY_USER }} + DEPLOY_PATH: ${{ secrets.DEPLOY_PATH }} + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Start ssh-agent and add key + uses: webfactory/ssh-agent@v0.9.0 + with: + ssh-private-key: ${{ secrets.DEPLOY_KEY }} + + - name: Add server to known hosts + run: ssh-keyscan -H $DEPLOY_HOST >> ~/.ssh/known_hosts + + - name: Deploy live + run: | + rsync -az --delete \ + --exclude '.git' \ + --exclude '.github' \ + --exclude '.env' \ + --exclude 'tests' \ + --exclude 'config' \ + --exclude 'models/' \ + ./ $DEPLOY_USER@$DEPLOY_HOST:$DEPLOY_PATH + + - name: Post-deploy tasks + run: | + ssh $DEPLOY_USER@$DEPLOY_HOST << EOF + echo "Deploying to $DEPLOY_PATH" + cd $DEPLOY_PATH + composer install --no-dev --no-progress --optimize-autoloader + ./vendor/bin/drush cr + ./vendor/bin/drush updb -y + EOF diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..aafadab --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,102 @@ +name: Test + +on: + push: + branches: + - main + workflow_dispatch: + inputs: + environment: + description: 'Run tests in environment' + required: true + type: environment + default: 'Stage' + +jobs: + test: + runs-on: ubuntu-latest + + services: + mariadb: + image: mariadb:latest + env: + MYSQL_ROOT_PASSWORD: root + MYSQL_DATABASE: drupal + MYSQL_USER: drupal + MYSQL_PASSWORD: drupal + options: >- + --health-cmd="healthcheck.sh --connect --innodb_initialized" + --health-interval=10s + --health-timeout=5s + --health-retries=3 + ports: + - 3306:3306 + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: PHP setup + uses: shivammathur/setup-php@v2 + with: + php-version: '8.3' + extensions: mbstring, pdo, mysql, gd, zip, intl, opcache, dom, sqlite3 + coverage: none + + - name: Apache setup + env: + DOCROOT: ${{ github.workspace }}/web + run: | + sudo usermod -aG docker www-data + sudo apt update + sudo apt install -y -o Dpkg::Options::="--force-confnew" apache2 + echo " + DocumentRoot $DOCROOT + + AllowOverride all + Require all granted + DirectoryIndex index.php + + + SetHandler \"proxy:unix:/run/php/php8.3-fpm.sock|fcgi://localhost\" + + " | sudo tee /etc/apache2/sites-available/000-default.conf + sudo a2enmod proxy_fcgi rewrite + sudo service apache2 stop + sudo service php8.3-fpm stop + sudo service apache2 start + sudo service php8.3-fpm start + + - name: Install composer + run: | + curl -sS https://getcomposer.org/installer | php + sudo mv composer.phar /usr/local/bin/composer + + - name: Validate composer + run: composer validate + + - name: Run composer + run: composer install --no-interaction --no-progress --prefer-dist + + - name: Create .env file + run: | + echo "DB_NAME=drupal" >> .env + echo "DB_USER=drupal" >> .env + echo "DB_PASS=drupal" >> .env + echo "DB_HOST=127.0.0.1" >> .env + echo "DB_PORT=3306" >> .env + echo "HASH_SALT=$(openssl rand -hex 16)" >> .env + echo "TRUSTED_HOST=localhost" >> .env + + - name: Set up Drupal + run: | + cp ./web/sites/default/default.settings.php ./web/sites/default/settings.php + cp ./web/sites/default/default.services.yml ./web/sites/default/services.yml + ./vendor/bin/drush site-install mot_profile --yes + + - name: Run PHPUnit tests + run: | + php ./web/core/scripts/run-tests.sh \ + --dburl mysql://drupal:drupal@127.0.0.1:3306/drupal \ + --sqlite /tmp/drupal.sqlite \ + --url http://localhost Drupal,Core,Bootstrap,Access diff --git a/.github/workflows/update_models.yml b/.github/workflows/update_models.yml new file mode 100644 index 0000000..7a0930b --- /dev/null +++ b/.github/workflows/update_models.yml @@ -0,0 +1,128 @@ +name: Update models + +on: + pull_request: + types: + - closed + branches: + - main + workflow_dispatch: + inputs: + environment: + description: 'Create or update models on environment' + required: true + type: environment + default: 'Stage' + +jobs: + secrets-check: + runs-on: ubuntu-latest + environment: ${{ inputs.environment || 'Production' }} + steps: + - name: Check DEPLOY_HOST + env: + DEPLOY_HOST: ${{ secrets.DEPLOY_HOST }} + run: | + if [ -z "$DEPLOY_HOST" ]; then + echo "DEPLOY_HOST is not set." + exit 1 + fi + + - name: Check DEPLOY_USER + env: + DEPLOY_USER: ${{ secrets.DEPLOY_USER }} + run: | + if [ -z "$DEPLOY_USER" ]; then + echo "DEPLOY_USER is not set." + exit 1 + fi + + - name: Check DEPLOY_PATH + env: + DEPLOY_PATH: ${{ secrets.DEPLOY_PATH }} + run: | + if [ -z "$DEPLOY_PATH" ]; then + echo "DEPLOY_PATH is not set." + exit 1 + fi + + - name: Check DEPLOY_KEY + env: + DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }} + run: | + if [ -z "$DEPLOY_KEY" ]; then + echo "DEPLOY_KEY is not set" + exit 1 + fi + + update-models: + runs-on: ubuntu-latest + needs: secrets-check + environment: ${{ inputs.environment || 'Production' }} + + env: + DEPLOY_HOST: ${{ secrets.DEPLOY_HOST }} + DEPLOY_USER: ${{ secrets.DEPLOY_USER }} + DEPLOY_PATH: ${{ secrets.DEPLOY_PATH }} + + steps: + - name: Checkout code + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Start ssh-agent and add key + uses: webfactory/ssh-agent@v0.9.0 + with: + ssh-private-key: ${{ secrets.DEPLOY_KEY }} + + - name: Add server to known hosts + run: ssh-keyscan -H $DEPLOY_HOST >> ~/.ssh/known_hosts + + - name: List models on PR merge + if: ${{ github.event_name == 'pull_request' && + github.event.pull_request.merged == true }} + run: | + git fetch origin main + git diff \ + --name-only \ + --diff-filter=AM origin/main...${{ github.sha }} | \ + grep '^models/.*\.yml$' > models.txt || true + + - name: List models on workflow_dispatch + if: github.event_name == 'workflow_dispatch' + run: | + git fetch origin ${{ github.ref_name }} + mkdir tmp + rsync -az \ + --include="*.yml" \ + --exclude="*" \ + $DEPLOY_USER@$DEPLOY_HOST:$DEPLOY_PATH/models/ ./tmp/ + find tmp/ -maxdepth 1 -type f | while read -r file; do + basefile=$(basename "$file") + if [ -f "models/$basefile" ]; then + git diff --name-only --no-index "$file" "models/$basefile" || true + fi + done > models.txt + rm -rf tmp + + - name: Set model sync trigger + id: model_check + run: | + echo "sync=$([ -s models.txt ] && echo true || echo false)" >> $GITHUB_ENV + + - name: Sync models + if: ${{ env.sync == 'true' }} + run: | + rsync -az \ + --files-from=models.txt \ + ./ $DEPLOY_USER@$DEPLOY_HOST:$DEPLOY_PATH/ + ssh $DEPLOY_USER@$DEPLOY_HOST << EOF + cd $DEPLOY_PATH + ./vendor/bin/drush scr scripts/sync_models.php + ./vendor/bin/drush cr + EOF + + - name: No changes + if: ${{ env.sync == 'false' }} + run: echo "No model changes detected. Skipping" diff --git a/.gitignore b/.gitignore index 7c703d6..7119f37 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,4 @@ !/web/sites/default/settings.php .gitattributes .editorconfig +models/.processed diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..d177def --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,56 @@ +# Contributing Models to the MOT + +We welcome contributions to the MOT project in the form of models. + +If you'd like to contribute a model, please follow the steps below +to ensure your model is validated and accepted. + +## Prerequisites + +Before you start contributing, ensure you have the following installed and +set up in your local environment: + +- **PHP**: Required to run the validation script. +- **Composer**: Used to manage project dependencies. + +If you don’t already have PHP and Composer installed, you can find installation +instructions on their respective websites: +- [PHP Installation](https://www.php.net/manual/en/install.php) +- [Composer Installation](https://getcomposer.org/doc/00-intro.md) + +Once you have these tools installed, proceed with the following steps. + +## Steps to Contribute a Model + +1. **Fork the repository** + - First, fork the main repository to your personal GitHub account. + - Clone the forked repository to your local machine for development. + +2. **Add your model** + - Place your model file (`.yml`) in the `models` directory of the repository. + - Ensure your model adheres to the schema located at `schema/mof_schema.json`. + +3. **Validate your model locally** + - Before creating a Pull Request, validate your model locally to ensure it conforms to the project's rules. + - Run the following command to validate your model: + ``` + composer install + php scripts/validate-model.php models/.yml + ``` + - This will check for any issues with your model before you submit it. + +4. **Submit a pull request** + - Once your model passes local validation, commit your changes and push them to your fork. + - Submit a Pull Request (PR) to the main repository, ensuring the model is in the `models/` directory. + +5. **Approval process** + - After submitting your PR, a maintainer will manually review and approve it. + - Once the PR is merged, the GitHub workflow will automatically validate the model again and publish it, provided it passes validation. + +## Additional Notes + +- Ensure that your model adheres to the schema defined in `schema/mof_schema.json`. +- Running local validation before submitting a PR can save time and ensure quicker approval of your contribution. + +Thank you for contributing to the MOT. + diff --git a/DEPLOY.md b/DEPLOY.md new file mode 100644 index 0000000..4ce9e43 --- /dev/null +++ b/DEPLOY.md @@ -0,0 +1,65 @@ +# Deployment Process Documentation + +## Overview + +This document provides an overview of the deployment process for the MOT app, +including details about the test and deploy workflows, +GitHub environment secrets, and deployment triggers. + +To install and run MOT locally, see [INSTALL.md](INSTALL.md). + +## Workflows + +### 1. Test workflow + +- **Trigger:** + - Automatically runs on a push to the `main` branch. + - Can also be triggered manually using `workflow_dispatch`. + +- **Purpose:** + - This workflow sets up a basic environment, installs the MOT, and runs some Drupal unit tests. + +- **Outcome:** + - If the tests pass, the Deploy workflow is triggered automatically. + - If tests fail, deployment is halted. + +### 2. Deploy workflow + +- **Trigger:** + - Automatically triggered by the success of the Tests workflow. + - Can also be triggered manually using `workflow_dispatch`. + +- **Environments:** + The deploy workflow operates in two environments: + - **Stage** + - **Production** + +- **GitHub Secrets:** + The following secrets are required to deploy to either Stage or Production environments: + + | Secret Name | Description | + |---------------|----------------------------------------------| + | `DEPLOY_USER` | The username with access to deploy the site. | + | `DEPLOY_HOST` | The server hostname (e.g. `mot.isitopen.ai`). | + | `DEPLOY_PATH` | The path to the repository on the server (e.g. `/var/www/html`). | + | `DEPLOY_KEY` | The SSH private key used for deployment. | + + +### Manual Invocation + +The Test and Deploy workflows can be invoked manually using the +`workflow_dispatch` event. This can be useful when you need to deploy without +going through the tests process or when deploying to the stage environment. + +--- + +## Notes + +- Ensure all necessary GitHub secrets are configured in the repository environment before deploying. +- The Deploy workflow is dependent on the success of the Tests workflow unless manually triggered. +- `DEPLOY_USER` and `DEPLOY_KEY` must have the appropriate permissions to access the server. + +--- + +**Last updated:** October 4, 2024 + diff --git a/INSTALL.md b/INSTALL.md index d93b326..5214ad0 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -41,6 +41,13 @@ A browser window should open with the MOT website. The database is empty though. *IMPORTANT NOTE*: When submitting PRs from this setup be careful not to include the `web/sites/default/settings.php` file. +## Populate database with Models + +Once MOT is up & running, run this command to populate the database with models. +```shell +vendor/bin/drush scr scripts/sync_models.php +``` + ## Advanced/Production Settings ### Create .env file @@ -53,6 +60,7 @@ DB_PASS= DB_NAME= DB_PORT= HASH_SALT= +TRUSTED_HOST= ``` ### Environment variables: @@ -63,6 +71,7 @@ HASH_SALT= - `DB_NAME`: The name of your database. - `DB_PORT`: The port number your database server is listening on (default is usually `3306` for MySQL). - `HASH_SALT`: A unique, random string used for securing passwords and other sensitive data in Drupal. This should be a long and complex string. +- `TRUSTED_HOST`: The host used to access the MOT; e.g. `mot\.isitopen\.ai` ### Configure webserver diff --git a/README.md b/README.md index 7e10a6f..d0c6dc2 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Model Openess Tool +# Model Openness Tool The Model Openness Tool (MOT) is designed to facilitate the evaluation and classification of machine learning models based on the Model Openness Framework (MOF). This tool provides a comprehensive platform for model producers to assess their models against the 16 components of the MOF, ensuring transparency, reproducibility, and usability. MOT not only evaluates the openness of the license for each component but also ranks the models, helping the community identify models that adhere to the principles of open science. Features diff --git a/composer.json b/composer.json index 25edb88..e6e409f 100644 --- a/composer.json +++ b/composer.json @@ -28,9 +28,11 @@ "drupal/matomo": "^1.23", "drupal/recaptcha_v3": "^2.0", "drupal/social_auth_github": "^4.0", + "drupal/token": "^1.15", "drupal/webform": "^6.2", "drush/drush": "^12.5", "kint-php/kint": "^5.1", + "opis/json-schema": "^2.3", "symfony/dotenv": "^7.0" }, "conflict": { @@ -122,5 +124,10 @@ " composer remove drupal/core-project-message" ] } + }, + "require-dev": { + "drupal/coder": "^8.3", + "drupal/core-dev": "^10.3", + "phpunit/phpunit": "^9.6" } } diff --git a/composer.lock b/composer.lock index 84c61a5..7c643f9 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "503593c9deb2d88807755b5c50556e75", + "content-hash": "76b580a30a0e17f5388880a88ea85f84", "packages": [ { "name": "asm89/stack-cors", @@ -1637,14 +1637,14 @@ "name": "david.sili", "homepage": "https://www.drupal.org/user/3708761" }, - { - "name": "DavorHorvacki", - "homepage": "https://www.drupal.org/user/3566953" - }, { "name": "gnikolovski", "homepage": "https://www.drupal.org/user/3451979" }, + { + "name": "holo96", + "homepage": "https://www.drupal.org/user/3566953" + }, { "name": "jvince", "homepage": "https://www.drupal.org/user/3452557" @@ -2094,7 +2094,7 @@ "extra": { "drupal": { "version": "4.1.1", - "datestamp": "1682701896", + "datestamp": "1722958666", "security-coverage": { "status": "covered", "message": "Covered by Drupal's security advisory policy" @@ -2519,6 +2519,78 @@ "issues": "https://www.drupal.org/project/issues/social_auth_github" } }, + { + "name": "drupal/token", + "version": "1.15.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/token.git", + "reference": "8.x-1.15" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/token-8.x-1.15.zip", + "reference": "8.x-1.15", + "shasum": "5916fbccc86458a5f51e71f832ac70ff4c84ebdf" + }, + "require": { + "drupal/core": "^9.2 || ^10 || ^11" + }, + "require-dev": { + "drupal/book": "*" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.15", + "datestamp": "1722206211", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + }, + "drush": { + "services": { + "drush.services.yml": ">=9" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "Berdir", + "homepage": "https://www.drupal.org/user/214652" + }, + { + "name": "Dave Reid", + "homepage": "https://www.drupal.org/user/53892" + }, + { + "name": "eaton", + "homepage": "https://www.drupal.org/user/16496" + }, + { + "name": "fago", + "homepage": "https://www.drupal.org/user/16747" + }, + { + "name": "greggles", + "homepage": "https://www.drupal.org/user/36762" + }, + { + "name": "mikeryan", + "homepage": "https://www.drupal.org/user/4420" + } + ], + "description": "Provides a user interface for the Token API, some missing core tokens.", + "homepage": "https://www.drupal.org/project/token", + "support": { + "source": "https://git.drupalcode.org/project/token" + } + }, { "name": "drupal/webform", "version": "6.2.2", @@ -2609,7 +2681,7 @@ "role": "Contributor" }, { - "name": "Liam Morland", + "name": "liam morland", "homepage": "https://www.drupal.org/user/493050" }, { @@ -3776,6 +3848,196 @@ }, "time": "2024-03-05T20:51:40+00:00" }, + { + "name": "opis/json-schema", + "version": "2.3.0", + "source": { + "type": "git", + "url": "https://github.com/opis/json-schema.git", + "reference": "c48df6d7089a45f01e1c82432348f2d5976f9bfb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/opis/json-schema/zipball/c48df6d7089a45f01e1c82432348f2d5976f9bfb", + "reference": "c48df6d7089a45f01e1c82432348f2d5976f9bfb", + "shasum": "" + }, + "require": { + "ext-json": "*", + "opis/string": "^2.0", + "opis/uri": "^1.0", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "ext-bcmath": "*", + "ext-intl": "*", + "phpunit/phpunit": "^9.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Opis\\JsonSchema\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Sorin Sarca", + "email": "sarca_sorin@hotmail.com" + }, + { + "name": "Marius Sarca", + "email": "marius.sarca@gmail.com" + } + ], + "description": "Json Schema Validator for PHP", + "homepage": "https://opis.io/json-schema", + "keywords": [ + "json", + "json-schema", + "schema", + "validation", + "validator" + ], + "support": { + "issues": "https://github.com/opis/json-schema/issues", + "source": "https://github.com/opis/json-schema/tree/2.3.0" + }, + "time": "2022-01-08T20:38:03+00:00" + }, + { + "name": "opis/string", + "version": "2.0.1", + "source": { + "type": "git", + "url": "https://github.com/opis/string.git", + "reference": "9ebf1a1f873f502f6859d11210b25a4bf5d141e7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/opis/string/zipball/9ebf1a1f873f502f6859d11210b25a4bf5d141e7", + "reference": "9ebf1a1f873f502f6859d11210b25a4bf5d141e7", + "shasum": "" + }, + "require": { + "ext-iconv": "*", + "ext-json": "*", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Opis\\String\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Marius Sarca", + "email": "marius.sarca@gmail.com" + }, + { + "name": "Sorin Sarca", + "email": "sarca_sorin@hotmail.com" + } + ], + "description": "Multibyte strings as objects", + "homepage": "https://opis.io/string", + "keywords": [ + "multi-byte", + "opis", + "string", + "string manipulation", + "utf-8" + ], + "support": { + "issues": "https://github.com/opis/string/issues", + "source": "https://github.com/opis/string/tree/2.0.1" + }, + "time": "2022-01-14T15:42:23+00:00" + }, + { + "name": "opis/uri", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://github.com/opis/uri.git", + "reference": "0f3ca49ab1a5e4a6681c286e0b2cc081b93a7d5a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/opis/uri/zipball/0f3ca49ab1a5e4a6681c286e0b2cc081b93a7d5a", + "reference": "0f3ca49ab1a5e4a6681c286e0b2cc081b93a7d5a", + "shasum": "" + }, + "require": { + "opis/string": "^2.0", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "phpunit/phpunit": "^9" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Opis\\Uri\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Marius Sarca", + "email": "marius.sarca@gmail.com" + }, + { + "name": "Sorin Sarca", + "email": "sarca_sorin@hotmail.com" + } + ], + "description": "Build, parse and validate URIs and URI-templates", + "homepage": "https://opis.io", + "keywords": [ + "URI Template", + "parse url", + "punycode", + "uri", + "uri components", + "url", + "validate uri" + ], + "support": { + "issues": "https://github.com/opis/uri/issues", + "source": "https://github.com/opis/uri/tree/1.1.0" + }, + "time": "2021-05-22T15:57:08+00:00" + }, { "name": "paragonie/random_compat", "version": "v9.99.100", @@ -7625,7 +7887,5230 @@ "time": "2020-10-27T09:42:17+00:00" } ], - "packages-dev": [], + "packages-dev": [ + { + "name": "behat/mink", + "version": "v1.11.0", + "source": { + "type": "git", + "url": "https://github.com/minkphp/Mink.git", + "reference": "d8527fdf8785aad38455fb426af457ab9937aece" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/minkphp/Mink/zipball/d8527fdf8785aad38455fb426af457ab9937aece", + "reference": "d8527fdf8785aad38455fb426af457ab9937aece", + "shasum": "" + }, + "require": { + "php": ">=7.2", + "symfony/css-selector": "^4.4 || ^5.0 || ^6.0 || ^7.0" + }, + "require-dev": { + "phpstan/phpstan": "^1.10", + "phpstan/phpstan-phpunit": "^1.3", + "phpunit/phpunit": "^8.5.22 || ^9.5.11", + "symfony/error-handler": "^4.4 || ^5.0 || ^6.0 || ^7.0", + "symfony/phpunit-bridge": "^5.4 || ^6.0 || ^7.0" + }, + "suggest": { + "behat/mink-browserkit-driver": "fast headless driver for any app without JS emulation", + "behat/mink-selenium2-driver": "slow, but JS-enabled driver for any app (requires Selenium2)", + "behat/mink-zombie-driver": "fast and JS-enabled headless driver for any app (requires node.js)", + "dmore/chrome-mink-driver": "fast and JS-enabled driver for any app (requires chromium or google chrome)" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Behat\\Mink\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" + } + ], + "description": "Browser controller/emulator abstraction for PHP", + "homepage": "https://mink.behat.org/", + "keywords": [ + "browser", + "testing", + "web" + ], + "support": { + "issues": "https://github.com/minkphp/Mink/issues", + "source": "https://github.com/minkphp/Mink/tree/v1.11.0" + }, + "time": "2023-12-09T11:23:23+00:00" + }, + { + "name": "behat/mink-browserkit-driver", + "version": "v2.2.0", + "source": { + "type": "git", + "url": "https://github.com/minkphp/MinkBrowserKitDriver.git", + "reference": "16d53476e42827ed3aafbfa4fde17a1743eafd50" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/minkphp/MinkBrowserKitDriver/zipball/16d53476e42827ed3aafbfa4fde17a1743eafd50", + "reference": "16d53476e42827ed3aafbfa4fde17a1743eafd50", + "shasum": "" + }, + "require": { + "behat/mink": "^1.11.0@dev", + "ext-dom": "*", + "php": ">=7.2", + "symfony/browser-kit": "^4.4 || ^5.0 || ^6.0 || ^7.0", + "symfony/dom-crawler": "^4.4 || ^5.0 || ^6.0 || ^7.0" + }, + "require-dev": { + "mink/driver-testsuite": "dev-master", + "phpstan/phpstan": "^1.10", + "phpstan/phpstan-phpunit": "^1.3", + "phpunit/phpunit": "^8.5 || ^9.5", + "symfony/error-handler": "^4.4 || ^5.0 || ^6.0 || ^7.0", + "symfony/http-client": "^4.4 || ^5.0 || ^6.0 || ^7.0", + "symfony/http-kernel": "^4.4 || ^5.0 || ^6.0 || ^7.0", + "symfony/mime": "^4.4 || ^5.0 || ^6.0 || ^7.0", + "yoast/phpunit-polyfills": "^1.0" + }, + "type": "mink-driver", + "extra": { + "branch-alias": { + "dev-master": "2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Behat\\Mink\\Driver\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" + } + ], + "description": "Symfony2 BrowserKit driver for Mink framework", + "homepage": "https://mink.behat.org/", + "keywords": [ + "Mink", + "Symfony2", + "browser", + "testing" + ], + "support": { + "issues": "https://github.com/minkphp/MinkBrowserKitDriver/issues", + "source": "https://github.com/minkphp/MinkBrowserKitDriver/tree/v2.2.0" + }, + "time": "2023-12-09T11:30:50+00:00" + }, + { + "name": "colinodell/psr-testlogger", + "version": "v1.3.0", + "source": { + "type": "git", + "url": "https://github.com/colinodell/psr-testlogger.git", + "reference": "291f5b70ea0d3139787d18f442365a8e2784a462" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/colinodell/psr-testlogger/zipball/291f5b70ea0d3139787d18f442365a8e2784a462", + "reference": "291f5b70ea0d3139787d18f442365a8e2784a462", + "shasum": "" + }, + "require": { + "php": "^8.0", + "psr/log": "^1.0 || ^2.0 || ^3.0" + }, + "provide": { + "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0" + }, + "require-dev": { + "phpstan/phpstan": "^1.9.2", + "phpunit/phpunit": "^9.5.5", + "scrutinizer/ocular": "^1.8.1", + "unleashedtech/php-coding-standard": "^3.1", + "vimeo/psalm": "^4.30.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "ColinODell\\PsrTestLogger\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Colin O'Dell", + "email": "colinodell@gmail.com", + "homepage": "https://www.colinodell.com", + "role": "Lead Developer" + } + ], + "description": "PSR-3 compliant test logger based on psr/log v1's, but compatible with v2 and v3 too!", + "homepage": "https://github.com/colinodell/psr-testlogger", + "keywords": [ + "log", + "logger", + "logging", + "mock", + "phpunit", + "psr", + "test", + "unit" + ], + "support": { + "issues": "https://github.com/colinodell/psr-testlogger/issues", + "rss": "https://github.com/colinodell/psr-testlogger/releases.atom", + "source": "https://github.com/colinodell/psr-testlogger" + }, + "funding": [ + { + "url": "https://www.colinodell.com/sponsor", + "type": "custom" + }, + { + "url": "https://www.paypal.me/colinpodell/10.00", + "type": "custom" + }, + { + "url": "https://github.com/colinodell", + "type": "github" + } + ], + "time": "2023-11-29T23:03:34+00:00" + }, + { + "name": "composer/ca-bundle", + "version": "1.5.1", + "source": { + "type": "git", + "url": "https://github.com/composer/ca-bundle.git", + "reference": "063d9aa8696582f5a41dffbbaf3c81024f0a604a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/ca-bundle/zipball/063d9aa8696582f5a41dffbbaf3c81024f0a604a", + "reference": "063d9aa8696582f5a41dffbbaf3c81024f0a604a", + "shasum": "" + }, + "require": { + "ext-openssl": "*", + "ext-pcre": "*", + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^1.10", + "psr/log": "^1.0 || ^2.0 || ^3.0", + "symfony/phpunit-bridge": "^4.2 || ^5", + "symfony/process": "^4.0 || ^5.0 || ^6.0 || ^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Composer\\CaBundle\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + } + ], + "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.", + "keywords": [ + "cabundle", + "cacert", + "certificate", + "ssl", + "tls" + ], + "support": { + "irc": "irc://irc.freenode.org/composer", + "issues": "https://github.com/composer/ca-bundle/issues", + "source": "https://github.com/composer/ca-bundle/tree/1.5.1" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2024-07-08T15:28:20+00:00" + }, + { + "name": "composer/class-map-generator", + "version": "1.3.4", + "source": { + "type": "git", + "url": "https://github.com/composer/class-map-generator.git", + "reference": "b1b3fd0b4eaf3ddf3ee230bc340bf3fff454a1a3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/class-map-generator/zipball/b1b3fd0b4eaf3ddf3ee230bc340bf3fff454a1a3", + "reference": "b1b3fd0b4eaf3ddf3ee230bc340bf3fff454a1a3", + "shasum": "" + }, + "require": { + "composer/pcre": "^2.1 || ^3.1", + "php": "^7.2 || ^8.0", + "symfony/finder": "^4.4 || ^5.3 || ^6 || ^7" + }, + "require-dev": { + "phpstan/phpstan": "^1.6", + "phpstan/phpstan-deprecation-rules": "^1", + "phpstan/phpstan-phpunit": "^1", + "phpstan/phpstan-strict-rules": "^1.1", + "symfony/filesystem": "^5.4 || ^6", + "symfony/phpunit-bridge": "^5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Composer\\ClassMapGenerator\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "https://seld.be" + } + ], + "description": "Utilities to scan PHP code and generate class maps.", + "keywords": [ + "classmap" + ], + "support": { + "issues": "https://github.com/composer/class-map-generator/issues", + "source": "https://github.com/composer/class-map-generator/tree/1.3.4" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2024-06-12T14:13:04+00:00" + }, + { + "name": "composer/composer", + "version": "2.7.9", + "source": { + "type": "git", + "url": "https://github.com/composer/composer.git", + "reference": "e30ccdd665828ae66eb1be78f056e39e1d5f55ab" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/composer/zipball/e30ccdd665828ae66eb1be78f056e39e1d5f55ab", + "reference": "e30ccdd665828ae66eb1be78f056e39e1d5f55ab", + "shasum": "" + }, + "require": { + "composer/ca-bundle": "^1.5", + "composer/class-map-generator": "^1.3.3", + "composer/metadata-minifier": "^1.0", + "composer/pcre": "^2.2 || ^3.2", + "composer/semver": "^3.3", + "composer/spdx-licenses": "^1.5.7", + "composer/xdebug-handler": "^2.0.2 || ^3.0.3", + "justinrainbow/json-schema": "^5.3", + "php": "^7.2.5 || ^8.0", + "psr/log": "^1.0 || ^2.0 || ^3.0", + "react/promise": "^3.2", + "seld/jsonlint": "^1.4", + "seld/phar-utils": "^1.2", + "seld/signal-handler": "^2.0", + "symfony/console": "^5.4.35 || ^6.3.12 || ^7.0.3", + "symfony/filesystem": "^5.4.35 || ^6.3.12 || ^7.0.3", + "symfony/finder": "^5.4.35 || ^6.3.12 || ^7.0.3", + "symfony/polyfill-php73": "^1.24", + "symfony/polyfill-php80": "^1.24", + "symfony/polyfill-php81": "^1.24", + "symfony/process": "^5.4.35 || ^6.3.12 || ^7.0.3" + }, + "require-dev": { + "phpstan/phpstan": "^1.11.8", + "phpstan/phpstan-deprecation-rules": "^1.2.0", + "phpstan/phpstan-phpunit": "^1.4.0", + "phpstan/phpstan-strict-rules": "^1.6.0", + "phpstan/phpstan-symfony": "^1.4.0", + "symfony/phpunit-bridge": "^6.4.3 || ^7.0.1" + }, + "suggest": { + "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages", + "ext-zip": "Enabling the zip extension allows you to unzip archives", + "ext-zlib": "Allow gzip compression of HTTP requests" + }, + "bin": [ + "bin/composer" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.7-dev" + }, + "phpstan": { + "includes": [ + "phpstan/rules.neon" + ] + } + }, + "autoload": { + "psr-4": { + "Composer\\": "src/Composer/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nils Adermann", + "email": "naderman@naderman.de", + "homepage": "https://www.naderman.de" + }, + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "https://seld.be" + } + ], + "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.", + "homepage": "https://getcomposer.org/", + "keywords": [ + "autoload", + "dependency", + "package" + ], + "support": { + "irc": "ircs://irc.libera.chat:6697/composer", + "issues": "https://github.com/composer/composer/issues", + "security": "https://github.com/composer/composer/security/policy", + "source": "https://github.com/composer/composer/tree/2.7.9" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2024-09-04T12:43:28+00:00" + }, + { + "name": "composer/metadata-minifier", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/composer/metadata-minifier.git", + "reference": "c549d23829536f0d0e984aaabbf02af91f443207" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/metadata-minifier/zipball/c549d23829536f0d0e984aaabbf02af91f443207", + "reference": "c549d23829536f0d0e984aaabbf02af91f443207", + "shasum": "" + }, + "require": { + "php": "^5.3.2 || ^7.0 || ^8.0" + }, + "require-dev": { + "composer/composer": "^2", + "phpstan/phpstan": "^0.12.55", + "symfony/phpunit-bridge": "^4.2 || ^5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Composer\\MetadataMinifier\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + } + ], + "description": "Small utility library that handles metadata minification and expansion.", + "keywords": [ + "composer", + "compression" + ], + "support": { + "issues": "https://github.com/composer/metadata-minifier/issues", + "source": "https://github.com/composer/metadata-minifier/tree/1.0.0" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2021-04-07T13:37:33+00:00" + }, + { + "name": "composer/pcre", + "version": "3.3.1", + "source": { + "type": "git", + "url": "https://github.com/composer/pcre.git", + "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/pcre/zipball/63aaeac21d7e775ff9bc9d45021e1745c97521c4", + "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0" + }, + "conflict": { + "phpstan/phpstan": "<1.11.10" + }, + "require-dev": { + "phpstan/phpstan": "^1.11.10", + "phpstan/phpstan-strict-rules": "^1.1", + "phpunit/phpunit": "^8 || ^9" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + }, + "phpstan": { + "includes": [ + "extension.neon" + ] + } + }, + "autoload": { + "psr-4": { + "Composer\\Pcre\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + } + ], + "description": "PCRE wrapping library that offers type-safe preg_* replacements.", + "keywords": [ + "PCRE", + "preg", + "regex", + "regular expression" + ], + "support": { + "issues": "https://github.com/composer/pcre/issues", + "source": "https://github.com/composer/pcre/tree/3.3.1" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2024-08-27T18:44:43+00:00" + }, + { + "name": "composer/spdx-licenses", + "version": "1.5.8", + "source": { + "type": "git", + "url": "https://github.com/composer/spdx-licenses.git", + "reference": "560bdcf8deb88ae5d611c80a2de8ea9d0358cc0a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/560bdcf8deb88ae5d611c80a2de8ea9d0358cc0a", + "reference": "560bdcf8deb88ae5d611c80a2de8ea9d0358cc0a", + "shasum": "" + }, + "require": { + "php": "^5.3.2 || ^7.0 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^0.12.55", + "symfony/phpunit-bridge": "^4.2 || ^5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Composer\\Spdx\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nils Adermann", + "email": "naderman@naderman.de", + "homepage": "http://www.naderman.de" + }, + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + }, + { + "name": "Rob Bast", + "email": "rob.bast@gmail.com", + "homepage": "http://robbast.nl" + } + ], + "description": "SPDX licenses list and validation library.", + "keywords": [ + "license", + "spdx", + "validator" + ], + "support": { + "irc": "ircs://irc.libera.chat:6697/composer", + "issues": "https://github.com/composer/spdx-licenses/issues", + "source": "https://github.com/composer/spdx-licenses/tree/1.5.8" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2023-11-20T07:44:33+00:00" + }, + { + "name": "composer/xdebug-handler", + "version": "3.0.5", + "source": { + "type": "git", + "url": "https://github.com/composer/xdebug-handler.git", + "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef", + "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef", + "shasum": "" + }, + "require": { + "composer/pcre": "^1 || ^2 || ^3", + "php": "^7.2.5 || ^8.0", + "psr/log": "^1 || ^2 || ^3" + }, + "require-dev": { + "phpstan/phpstan": "^1.0", + "phpstan/phpstan-strict-rules": "^1.1", + "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5" + }, + "type": "library", + "autoload": { + "psr-4": { + "Composer\\XdebugHandler\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "John Stevenson", + "email": "john-stevenson@blueyonder.co.uk" + } + ], + "description": "Restarts a process without Xdebug.", + "keywords": [ + "Xdebug", + "performance" + ], + "support": { + "irc": "ircs://irc.libera.chat:6697/composer", + "issues": "https://github.com/composer/xdebug-handler/issues", + "source": "https://github.com/composer/xdebug-handler/tree/3.0.5" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2024-05-06T16:37:16+00:00" + }, + { + "name": "dealerdirect/phpcodesniffer-composer-installer", + "version": "v1.0.0", + "source": { + "type": "git", + "url": "https://github.com/PHPCSStandards/composer-installer.git", + "reference": "4be43904336affa5c2f70744a348312336afd0da" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/PHPCSStandards/composer-installer/zipball/4be43904336affa5c2f70744a348312336afd0da", + "reference": "4be43904336affa5c2f70744a348312336afd0da", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^1.0 || ^2.0", + "php": ">=5.4", + "squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0" + }, + "require-dev": { + "composer/composer": "*", + "ext-json": "*", + "ext-zip": "*", + "php-parallel-lint/php-parallel-lint": "^1.3.1", + "phpcompatibility/php-compatibility": "^9.0", + "yoast/phpunit-polyfills": "^1.0" + }, + "type": "composer-plugin", + "extra": { + "class": "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin" + }, + "autoload": { + "psr-4": { + "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Franck Nijhof", + "email": "franck.nijhof@dealerdirect.com", + "homepage": "http://www.frenck.nl", + "role": "Developer / IT Manager" + }, + { + "name": "Contributors", + "homepage": "https://github.com/PHPCSStandards/composer-installer/graphs/contributors" + } + ], + "description": "PHP_CodeSniffer Standards Composer Installer Plugin", + "homepage": "http://www.dealerdirect.com", + "keywords": [ + "PHPCodeSniffer", + "PHP_CodeSniffer", + "code quality", + "codesniffer", + "composer", + "installer", + "phpcbf", + "phpcs", + "plugin", + "qa", + "quality", + "standard", + "standards", + "style guide", + "stylecheck", + "tests" + ], + "support": { + "issues": "https://github.com/PHPCSStandards/composer-installer/issues", + "source": "https://github.com/PHPCSStandards/composer-installer" + }, + "time": "2023-01-05T11:28:13+00:00" + }, + { + "name": "doctrine/instantiator", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/instantiator.git", + "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0", + "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "require-dev": { + "doctrine/coding-standard": "^11", + "ext-pdo": "*", + "ext-phar": "*", + "phpbench/phpbench": "^1.2", + "phpstan/phpstan": "^1.9.4", + "phpstan/phpstan-phpunit": "^1.3", + "phpunit/phpunit": "^9.5.27", + "vimeo/psalm": "^5.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com", + "homepage": "https://ocramius.github.io/" + } + ], + "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", + "homepage": "https://www.doctrine-project.org/projects/instantiator.html", + "keywords": [ + "constructor", + "instantiate" + ], + "support": { + "issues": "https://github.com/doctrine/instantiator/issues", + "source": "https://github.com/doctrine/instantiator/tree/2.0.0" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator", + "type": "tidelift" + } + ], + "time": "2022-12-30T00:23:10+00:00" + }, + { + "name": "drupal/coder", + "version": "8.3.24", + "source": { + "type": "git", + "url": "https://github.com/pfrenssen/coder.git", + "reference": "1a59890f972db5da091354f0191dec1037f7c582" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/pfrenssen/coder/zipball/1a59890f972db5da091354f0191dec1037f7c582", + "reference": "1a59890f972db5da091354f0191dec1037f7c582", + "shasum": "" + }, + "require": { + "dealerdirect/phpcodesniffer-composer-installer": "^0.7.1 || ^1.0.0", + "ext-mbstring": "*", + "php": ">=7.2", + "sirbrillig/phpcs-variable-analysis": "^2.11.7", + "slevomat/coding-standard": "^8.11", + "squizlabs/php_codesniffer": "^3.9.1", + "symfony/yaml": ">=3.4.0" + }, + "require-dev": { + "phpstan/phpstan": "^1.7.12", + "phpunit/phpunit": "^8.0" + }, + "type": "phpcodesniffer-standard", + "autoload": { + "psr-4": { + "Drupal\\": "coder_sniffer/Drupal/", + "DrupalPractice\\": "coder_sniffer/DrupalPractice/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Coder is a library to review Drupal code.", + "homepage": "https://www.drupal.org/project/coder", + "keywords": [ + "code review", + "phpcs", + "standards" + ], + "support": { + "issues": "https://www.drupal.org/project/issues/coder", + "source": "https://www.drupal.org/project/coder" + }, + "time": "2024-04-21T06:13:24+00:00" + }, + { + "name": "drupal/core-dev", + "version": "10.3.5", + "source": { + "type": "git", + "url": "https://github.com/drupal/core-dev.git", + "reference": "2f117398ad5e7df411b4715c1b69ab4847c5cc08" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/drupal/core-dev/zipball/2f117398ad5e7df411b4715c1b69ab4847c5cc08", + "reference": "2f117398ad5e7df411b4715c1b69ab4847c5cc08", + "shasum": "" + }, + "require": { + "behat/mink": "^1.11", + "behat/mink-browserkit-driver": "^2.2", + "colinodell/psr-testlogger": "^1.2", + "composer/composer": "^2.7.7", + "drupal/coder": "^8.3.10", + "justinrainbow/json-schema": "^5.2", + "lullabot/mink-selenium2-driver": "^1.7", + "lullabot/php-webdriver": "^2.0.4", + "mglaman/phpstan-drupal": "^1.2.10", + "micheh/phpcs-gitlab": "^1.1", + "mikey179/vfsstream": "^1.6.11", + "open-telemetry/exporter-otlp": "^1", + "open-telemetry/sdk": "^1", + "php-http/guzzle7-adapter": "^1.0", + "phpspec/prophecy-phpunit": "^2", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan": "^1.11.0", + "phpstan/phpstan-phpunit": "^1.3.16", + "phpunit/phpunit": "^9.6.13", + "symfony/browser-kit": "^6.4", + "symfony/css-selector": "^6.4", + "symfony/dom-crawler": "^6.4", + "symfony/error-handler": "^6.4", + "symfony/lock": "^6.4", + "symfony/phpunit-bridge": "^6.4", + "symfony/var-dumper": "^6.4" + }, + "conflict": { + "webflo/drupal-core-require-dev": "*" + }, + "type": "metapackage", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "description": "require-dev dependencies from drupal/drupal; use in addition to drupal/core-recommended to run tests from drupal/core.", + "support": { + "source": "https://github.com/drupal/core-dev/tree/10.3.5" + }, + "time": "2024-07-04T10:19:29+00:00" + }, + { + "name": "google/protobuf", + "version": "v3.25.4", + "source": { + "type": "git", + "url": "https://github.com/protocolbuffers/protobuf-php.git", + "reference": "749f6c8e99a7fe51d096c2db656a4af9a46a6b5e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/protocolbuffers/protobuf-php/zipball/749f6c8e99a7fe51d096c2db656a4af9a46a6b5e", + "reference": "749f6c8e99a7fe51d096c2db656a4af9a46a6b5e", + "shasum": "" + }, + "require": { + "php": ">=7.0.0" + }, + "require-dev": { + "phpunit/phpunit": ">=5.0.0" + }, + "suggest": { + "ext-bcmath": "Need to support JSON deserialization" + }, + "type": "library", + "autoload": { + "psr-4": { + "Google\\Protobuf\\": "src/Google/Protobuf", + "GPBMetadata\\Google\\Protobuf\\": "src/GPBMetadata/Google/Protobuf" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "description": "proto library for PHP", + "homepage": "https://developers.google.com/protocol-buffers/", + "keywords": [ + "proto" + ], + "support": { + "source": "https://github.com/protocolbuffers/protobuf-php/tree/v3.25.4" + }, + "time": "2024-07-24T17:10:25+00:00" + }, + { + "name": "justinrainbow/json-schema", + "version": "5.3.0", + "source": { + "type": "git", + "url": "https://github.com/jsonrainbow/json-schema.git", + "reference": "feb2ca6dd1cebdaf1ed60a4c8de2e53ce11c4fd8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/jsonrainbow/json-schema/zipball/feb2ca6dd1cebdaf1ed60a4c8de2e53ce11c4fd8", + "reference": "feb2ca6dd1cebdaf1ed60a4c8de2e53ce11c4fd8", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1", + "json-schema/json-schema-test-suite": "1.2.0", + "phpunit/phpunit": "^4.8.35" + }, + "bin": [ + "bin/validate-json" + ], + "type": "library", + "autoload": { + "psr-4": { + "JsonSchema\\": "src/JsonSchema/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bruno Prieto Reis", + "email": "bruno.p.reis@gmail.com" + }, + { + "name": "Justin Rainbow", + "email": "justin.rainbow@gmail.com" + }, + { + "name": "Igor Wiedler", + "email": "igor@wiedler.ch" + }, + { + "name": "Robert Schönthal", + "email": "seroscho@googlemail.com" + } + ], + "description": "A library to validate a json schema.", + "homepage": "https://github.com/justinrainbow/json-schema", + "keywords": [ + "json", + "schema" + ], + "support": { + "issues": "https://github.com/jsonrainbow/json-schema/issues", + "source": "https://github.com/jsonrainbow/json-schema/tree/5.3.0" + }, + "time": "2024-07-06T21:00:26+00:00" + }, + { + "name": "lullabot/mink-selenium2-driver", + "version": "v1.7.4", + "source": { + "type": "git", + "url": "https://github.com/Lullabot/MinkSelenium2Driver.git", + "reference": "145fe8ed1fb611be7409b70d609f71b0285f4724" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Lullabot/MinkSelenium2Driver/zipball/145fe8ed1fb611be7409b70d609f71b0285f4724", + "reference": "145fe8ed1fb611be7409b70d609f71b0285f4724", + "shasum": "" + }, + "require": { + "behat/mink": "^1.11@dev", + "ext-json": "*", + "lullabot/php-webdriver": "^2.0.6", + "php": ">=8.1" + }, + "replace": { + "behat/mink-selenium2-driver": "1.7.0" + }, + "require-dev": { + "mink/driver-testsuite": "dev-master", + "phpstan/phpstan": "^1.10", + "phpstan/phpstan-phpunit": "^1.3", + "phpunit/phpunit": "^8.5.22 || ^9.5.11", + "symfony/error-handler": "^4.4 || ^5.0 || ^6.0 || ^7.0" + }, + "type": "mink-driver", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Behat\\Mink\\Driver\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Pete Otaqui", + "email": "pete@otaqui.com", + "homepage": "https://github.com/pete-otaqui" + }, + { + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" + } + ], + "description": "Selenium2 (WebDriver) driver for Mink framework", + "homepage": "https://mink.behat.org/", + "keywords": [ + "ajax", + "browser", + "javascript", + "selenium", + "testing", + "webdriver" + ], + "support": { + "source": "https://github.com/Lullabot/MinkSelenium2Driver/tree/v1.7.4" + }, + "time": "2024-08-08T07:40:04+00:00" + }, + { + "name": "lullabot/php-webdriver", + "version": "v2.0.6", + "source": { + "type": "git", + "url": "https://github.com/Lullabot/php-webdriver.git", + "reference": "8c28db7151b8a73bd98861fe19972ac3f40184d2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Lullabot/php-webdriver/zipball/8c28db7151b8a73bd98861fe19972ac3f40184d2", + "reference": "8c28db7151b8a73bd98861fe19972ac3f40184d2", + "shasum": "" + }, + "require": { + "ext-curl": "*", + "php": ">=8.0.0" + }, + "replace": { + "instaclick/php-webdriver": "1.4.16" + }, + "require-dev": { + "phpunit/phpunit": "^8.5 || ^9.5" + }, + "type": "library", + "autoload": { + "psr-0": { + "WebDriver": "lib/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "description": "PHP WebDriver for Selenium 2", + "homepage": "https://www.lullabot.com/", + "keywords": [ + "browser", + "selenium", + "webdriver", + "webtest" + ], + "support": { + "issues": "https://github.com/Lullabot/php-webdriver/issues", + "source": "https://github.com/Lullabot/php-webdriver/tree/v2.0.6" + }, + "time": "2024-08-05T13:00:46+00:00" + }, + { + "name": "mglaman/phpstan-drupal", + "version": "1.2.12", + "source": { + "type": "git", + "url": "https://github.com/mglaman/phpstan-drupal.git", + "reference": "346bdddda169a56b6ebb7dc17893f0ac8f33a4f1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/346bdddda169a56b6ebb7dc17893f0ac8f33a4f1", + "reference": "346bdddda169a56b6ebb7dc17893f0ac8f33a4f1", + "shasum": "" + }, + "require": { + "php": "^8.1", + "phpstan/phpstan": "^1.10.56", + "phpstan/phpstan-deprecation-rules": "^1.1.4", + "symfony/finder": "^4.2 || ^5.0 || ^6.0 || ^7.0", + "symfony/yaml": "^4.2|| ^5.0 || ^6.0 || ^7.0", + "webflo/drupal-finder": "^1.2" + }, + "require-dev": { + "behat/mink": "^1.8", + "composer/installers": "^1.9", + "drupal/core-recommended": "^10", + "drush/drush": "^10.0 || ^11 || ^12 || ^13@beta", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan-strict-rules": "^1.0", + "phpunit/phpunit": "^8.5 || ^9 || ^10 || ^11", + "slevomat/coding-standard": "^7.1", + "squizlabs/php_codesniffer": "^3.3", + "symfony/phpunit-bridge": "^4.4 || ^5.4 || ^6.0 || ^7.0" + }, + "suggest": { + "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.", + "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.", + "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan." + }, + "type": "phpstan-extension", + "extra": { + "branch-alias": { + "dev-main": "1.0-dev" + }, + "installer-paths": { + "tests/fixtures/drupal/core": [ + "type:drupal-core" + ], + "tests/fixtures/drupal/libraries/{$name}": [ + "type:drupal-library" + ], + "tests/fixtures/drupal/modules/contrib/{$name}": [ + "type:drupal-module" + ], + "tests/fixtures/drupal/profiles/contrib/{$name}": [ + "type:drupal-profile" + ], + "tests/fixtures/drupal/themes/contrib/{$name}": [ + "type:drupal-theme" + ] + }, + "phpstan": { + "includes": [ + "extension.neon", + "rules.neon" + ] + } + }, + "autoload": { + "psr-4": { + "mglaman\\PHPStanDrupal\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Matt Glaman", + "email": "nmd.matt@gmail.com" + } + ], + "description": "Drupal extension and rules for PHPStan", + "support": { + "issues": "https://github.com/mglaman/phpstan-drupal/issues", + "source": "https://github.com/mglaman/phpstan-drupal/tree/1.2.12" + }, + "funding": [ + { + "url": "https://github.com/mglaman", + "type": "github" + }, + { + "url": "https://opencollective.com/phpstan-drupal", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal", + "type": "tidelift" + } + ], + "time": "2024-08-07T21:15:21+00:00" + }, + { + "name": "micheh/phpcs-gitlab", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://github.com/micheh/phpcs-gitlab.git", + "reference": "fd64e6579d9e30a82abba616fabcb9a2c837c7a8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/micheh/phpcs-gitlab/zipball/fd64e6579d9e30a82abba616fabcb9a2c837c7a8", + "reference": "fd64e6579d9e30a82abba616fabcb9a2c837c7a8", + "shasum": "" + }, + "require": { + "ext-json": "*" + }, + "require-dev": { + "phpunit/phpunit": "^8.0 || ^9.0", + "squizlabs/php_codesniffer": "^3.3.1", + "vimeo/psalm": "^4.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Micheh\\PhpCodeSniffer\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Michel Hunziker", + "email": "info@michelhunziker.com" + } + ], + "description": "Gitlab Report for PHP_CodeSniffer (display the violations in the Gitlab CI/CD Code Quality Report)", + "keywords": [ + "PHP_CodeSniffer", + "code quality", + "gitlab", + "phpcs", + "report" + ], + "support": { + "issues": "https://github.com/micheh/phpcs-gitlab/issues", + "source": "https://github.com/micheh/phpcs-gitlab/tree/1.1.0" + }, + "time": "2020-12-20T09:39:07+00:00" + }, + { + "name": "mikey179/vfsstream", + "version": "v1.6.12", + "source": { + "type": "git", + "url": "https://github.com/bovigo/vfsStream.git", + "reference": "fe695ec993e0a55c3abdda10a9364eb31c6f1bf0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/bovigo/vfsStream/zipball/fe695ec993e0a55c3abdda10a9364eb31c6f1bf0", + "reference": "fe695ec993e0a55c3abdda10a9364eb31c6f1bf0", + "shasum": "" + }, + "require": { + "php": ">=7.1.0" + }, + "require-dev": { + "phpunit/phpunit": "^7.5||^8.5||^9.6", + "yoast/phpunit-polyfills": "^2.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.6.x-dev" + } + }, + "autoload": { + "psr-0": { + "org\\bovigo\\vfs\\": "src/main/php" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Frank Kleine", + "homepage": "http://frankkleine.de/", + "role": "Developer" + } + ], + "description": "Virtual file system to mock the real file system in unit tests.", + "homepage": "http://vfs.bovigo.org/", + "support": { + "issues": "https://github.com/bovigo/vfsStream/issues", + "source": "https://github.com/bovigo/vfsStream/tree/master", + "wiki": "https://github.com/bovigo/vfsStream/wiki" + }, + "time": "2024-08-29T18:43:31+00:00" + }, + { + "name": "myclabs/deep-copy", + "version": "1.12.0", + "source": { + "type": "git", + "url": "https://github.com/myclabs/DeepCopy.git", + "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c", + "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "conflict": { + "doctrine/collections": "<1.6.8", + "doctrine/common": "<2.13.3 || >=3 <3.2.2" + }, + "require-dev": { + "doctrine/collections": "^1.6.8", + "doctrine/common": "^2.13.3 || ^3.2.2", + "phpspec/prophecy": "^1.10", + "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13" + }, + "type": "library", + "autoload": { + "files": [ + "src/DeepCopy/deep_copy.php" + ], + "psr-4": { + "DeepCopy\\": "src/DeepCopy/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Create deep copies (clones) of your objects", + "keywords": [ + "clone", + "copy", + "duplicate", + "object", + "object graph" + ], + "support": { + "issues": "https://github.com/myclabs/DeepCopy/issues", + "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0" + }, + "funding": [ + { + "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", + "type": "tidelift" + } + ], + "time": "2024-06-12T14:39:25+00:00" + }, + { + "name": "open-telemetry/api", + "version": "1.0.3", + "source": { + "type": "git", + "url": "https://github.com/opentelemetry-php/api.git", + "reference": "87de95d926f46262885d0d390060c095af13e2e5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/opentelemetry-php/api/zipball/87de95d926f46262885d0d390060c095af13e2e5", + "reference": "87de95d926f46262885d0d390060c095af13e2e5", + "shasum": "" + }, + "require": { + "open-telemetry/context": "^1.0", + "php": "^7.4 || ^8.0", + "psr/log": "^1.1|^2.0|^3.0", + "symfony/polyfill-php80": "^1.26", + "symfony/polyfill-php81": "^1.26", + "symfony/polyfill-php82": "^1.26" + }, + "conflict": { + "open-telemetry/sdk": "<=1.0.4" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.0.x-dev" + } + }, + "autoload": { + "files": [ + "Trace/functions.php" + ], + "psr-4": { + "OpenTelemetry\\API\\": "." + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "opentelemetry-php contributors", + "homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors" + } + ], + "description": "API for OpenTelemetry PHP.", + "keywords": [ + "Metrics", + "api", + "apm", + "logging", + "opentelemetry", + "otel", + "tracing" + ], + "support": { + "chat": "https://app.slack.com/client/T08PSQ7BQ/C01NFPCV44V", + "docs": "https://opentelemetry.io/docs/php", + "issues": "https://github.com/open-telemetry/opentelemetry-php/issues", + "source": "https://github.com/open-telemetry/opentelemetry-php" + }, + "time": "2024-02-06T01:32:25+00:00" + }, + { + "name": "open-telemetry/context", + "version": "1.0.2", + "source": { + "type": "git", + "url": "https://github.com/opentelemetry-php/context.git", + "reference": "e9d254a7c89885e63fd2fde54e31e81aaaf52b7c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/opentelemetry-php/context/zipball/e9d254a7c89885e63fd2fde54e31e81aaaf52b7c", + "reference": "e9d254a7c89885e63fd2fde54e31e81aaaf52b7c", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0", + "symfony/polyfill-php80": "^1.26", + "symfony/polyfill-php81": "^1.26", + "symfony/polyfill-php82": "^1.26" + }, + "suggest": { + "ext-ffi": "To allow context switching in Fibers" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.0.x-dev" + } + }, + "autoload": { + "files": [ + "fiber/initialize_fiber_handler.php" + ], + "psr-4": { + "OpenTelemetry\\Context\\": "." + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "opentelemetry-php contributors", + "homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors" + } + ], + "description": "Context implementation for OpenTelemetry PHP.", + "keywords": [ + "Context", + "opentelemetry", + "otel" + ], + "support": { + "chat": "https://app.slack.com/client/T08PSQ7BQ/C01NFPCV44V", + "docs": "https://opentelemetry.io/docs/php", + "issues": "https://github.com/open-telemetry/opentelemetry-php/issues", + "source": "https://github.com/open-telemetry/opentelemetry-php" + }, + "time": "2024-01-13T05:50:44+00:00" + }, + { + "name": "open-telemetry/exporter-otlp", + "version": "1.0.4", + "source": { + "type": "git", + "url": "https://github.com/opentelemetry-php/exporter-otlp.git", + "reference": "342686bfce05867b56561a0af2fc8a4a8f27b3cc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/opentelemetry-php/exporter-otlp/zipball/342686bfce05867b56561a0af2fc8a4a8f27b3cc", + "reference": "342686bfce05867b56561a0af2fc8a4a8f27b3cc", + "shasum": "" + }, + "require": { + "open-telemetry/api": "^1.0", + "open-telemetry/gen-otlp-protobuf": "^1.1", + "open-telemetry/sdk": "^1.0", + "php": "^7.4 || ^8.0", + "php-http/discovery": "^1.14" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.0.x-dev" + } + }, + "autoload": { + "files": [ + "_register.php" + ], + "psr-4": { + "OpenTelemetry\\Contrib\\Otlp\\": "." + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "opentelemetry-php contributors", + "homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors" + } + ], + "description": "OTLP exporter for OpenTelemetry.", + "keywords": [ + "Metrics", + "exporter", + "gRPC", + "http", + "opentelemetry", + "otel", + "otlp", + "tracing" + ], + "support": { + "chat": "https://app.slack.com/client/T08PSQ7BQ/C01NFPCV44V", + "docs": "https://opentelemetry.io/docs/php", + "issues": "https://github.com/open-telemetry/opentelemetry-php/issues", + "source": "https://github.com/open-telemetry/opentelemetry-php" + }, + "time": "2024-02-28T21:57:02+00:00" + }, + { + "name": "open-telemetry/gen-otlp-protobuf", + "version": "1.2.0", + "source": { + "type": "git", + "url": "https://github.com/opentelemetry-php/gen-otlp-protobuf.git", + "reference": "3aa87bc4d0279ebb53c2917a79f26602625c488e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/opentelemetry-php/gen-otlp-protobuf/zipball/3aa87bc4d0279ebb53c2917a79f26602625c488e", + "reference": "3aa87bc4d0279ebb53c2917a79f26602625c488e", + "shasum": "" + }, + "require": { + "google/protobuf": "^3.3.0", + "php": "^8.0" + }, + "suggest": { + "ext-protobuf": "For better performance, when dealing with the protobuf format" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Opentelemetry\\Proto\\": "Opentelemetry/Proto/", + "GPBMetadata\\Opentelemetry\\": "GPBMetadata/Opentelemetry/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "opentelemetry-php contributors", + "homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors" + } + ], + "description": "PHP protobuf files for communication with OpenTelemetry OTLP collectors/servers.", + "keywords": [ + "Metrics", + "apm", + "gRPC", + "logging", + "opentelemetry", + "otel", + "otlp", + "protobuf", + "tracing" + ], + "support": { + "chat": "https://app.slack.com/client/T08PSQ7BQ/C01NFPCV44V", + "docs": "https://opentelemetry.io/docs/php", + "issues": "https://github.com/open-telemetry/opentelemetry-php/issues", + "source": "https://github.com/open-telemetry/opentelemetry-php" + }, + "time": "2024-04-30T18:28:30+00:00" + }, + { + "name": "open-telemetry/sdk", + "version": "1.0.8", + "source": { + "type": "git", + "url": "https://github.com/opentelemetry-php/sdk.git", + "reference": "1da4c0ca4f1a3c0fe84b81729dadec16f464fa77" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/opentelemetry-php/sdk/zipball/1da4c0ca4f1a3c0fe84b81729dadec16f464fa77", + "reference": "1da4c0ca4f1a3c0fe84b81729dadec16f464fa77", + "shasum": "" + }, + "require": { + "ext-json": "*", + "open-telemetry/api": "^1.0", + "open-telemetry/context": "^1.0", + "open-telemetry/sem-conv": "^1.0", + "php": "^7.4 || ^8.0", + "php-http/discovery": "^1.14", + "psr/http-client": "^1.0", + "psr/http-client-implementation": "^1.0", + "psr/http-factory-implementation": "^1.0", + "psr/http-message": "^1.0.1|^2.0", + "psr/log": "^1.1|^2.0|^3.0", + "symfony/polyfill-mbstring": "^1.23", + "symfony/polyfill-php80": "^1.26", + "symfony/polyfill-php81": "^1.26", + "symfony/polyfill-php82": "^1.26" + }, + "suggest": { + "ext-gmp": "To support unlimited number of synchronous metric readers", + "ext-mbstring": "To increase performance of string operations" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.0.x-dev" + } + }, + "autoload": { + "files": [ + "Common/Util/functions.php", + "Logs/Exporter/_register.php", + "Metrics/MetricExporter/_register.php", + "Propagation/_register.php", + "Trace/SpanExporter/_register.php", + "Common/Dev/Compatibility/_load.php", + "_autoload.php" + ], + "psr-4": { + "OpenTelemetry\\SDK\\": "." + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "opentelemetry-php contributors", + "homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors" + } + ], + "description": "SDK for OpenTelemetry PHP.", + "keywords": [ + "Metrics", + "apm", + "logging", + "opentelemetry", + "otel", + "sdk", + "tracing" + ], + "support": { + "chat": "https://app.slack.com/client/T08PSQ7BQ/C01NFPCV44V", + "docs": "https://opentelemetry.io/docs/php", + "issues": "https://github.com/open-telemetry/opentelemetry-php/issues", + "source": "https://github.com/open-telemetry/opentelemetry-php" + }, + "time": "2024-02-02T03:42:40+00:00" + }, + { + "name": "open-telemetry/sem-conv", + "version": "1.27.1", + "source": { + "type": "git", + "url": "https://github.com/opentelemetry-php/sem-conv.git", + "reference": "1dba705fea74bc0718d04be26090e3697e56f4e6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/opentelemetry-php/sem-conv/zipball/1dba705fea74bc0718d04be26090e3697e56f4e6", + "reference": "1dba705fea74bc0718d04be26090e3697e56f4e6", + "shasum": "" + }, + "require": { + "php": "^8.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "OpenTelemetry\\SemConv\\": "." + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "opentelemetry-php contributors", + "homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors" + } + ], + "description": "Semantic conventions for OpenTelemetry PHP.", + "keywords": [ + "Metrics", + "apm", + "logging", + "opentelemetry", + "otel", + "semantic conventions", + "semconv", + "tracing" + ], + "support": { + "chat": "https://app.slack.com/client/T08PSQ7BQ/C01NFPCV44V", + "docs": "https://opentelemetry.io/docs/php", + "issues": "https://github.com/open-telemetry/opentelemetry-php/issues", + "source": "https://github.com/open-telemetry/opentelemetry-php" + }, + "time": "2024-08-28T09:20:31+00:00" + }, + { + "name": "phar-io/manifest", + "version": "2.0.4", + "source": { + "type": "git", + "url": "https://github.com/phar-io/manifest.git", + "reference": "54750ef60c58e43759730615a392c31c80e23176" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176", + "reference": "54750ef60c58e43759730615a392c31c80e23176", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "ext-phar": "*", + "ext-xmlwriter": "*", + "phar-io/version": "^3.0.1", + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", + "support": { + "issues": "https://github.com/phar-io/manifest/issues", + "source": "https://github.com/phar-io/manifest/tree/2.0.4" + }, + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2024-03-03T12:33:53+00:00" + }, + { + "name": "phar-io/version", + "version": "3.2.1", + "source": { + "type": "git", + "url": "https://github.com/phar-io/version.git", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + }, + { + "name": "Sebastian Heuer", + "email": "sebastian@phpeople.de", + "role": "Developer" + }, + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "Developer" + } + ], + "description": "Library for handling version information and constraints", + "support": { + "issues": "https://github.com/phar-io/version/issues", + "source": "https://github.com/phar-io/version/tree/3.2.1" + }, + "time": "2022-02-21T01:04:05+00:00" + }, + { + "name": "php-http/discovery", + "version": "1.19.4", + "source": { + "type": "git", + "url": "https://github.com/php-http/discovery.git", + "reference": "0700efda8d7526335132360167315fdab3aeb599" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-http/discovery/zipball/0700efda8d7526335132360167315fdab3aeb599", + "reference": "0700efda8d7526335132360167315fdab3aeb599", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^1.0|^2.0", + "php": "^7.1 || ^8.0" + }, + "conflict": { + "nyholm/psr7": "<1.0", + "zendframework/zend-diactoros": "*" + }, + "provide": { + "php-http/async-client-implementation": "*", + "php-http/client-implementation": "*", + "psr/http-client-implementation": "*", + "psr/http-factory-implementation": "*", + "psr/http-message-implementation": "*" + }, + "require-dev": { + "composer/composer": "^1.0.2|^2.0", + "graham-campbell/phpspec-skip-example-extension": "^5.0", + "php-http/httplug": "^1.0 || ^2.0", + "php-http/message-factory": "^1.0", + "phpspec/phpspec": "^5.1 || ^6.1 || ^7.3", + "sebastian/comparator": "^3.0.5 || ^4.0.8", + "symfony/phpunit-bridge": "^6.4.4 || ^7.0.1" + }, + "type": "composer-plugin", + "extra": { + "class": "Http\\Discovery\\Composer\\Plugin", + "plugin-optional": true + }, + "autoload": { + "psr-4": { + "Http\\Discovery\\": "src/" + }, + "exclude-from-classmap": [ + "src/Composer/Plugin.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com" + } + ], + "description": "Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations", + "homepage": "http://php-http.org", + "keywords": [ + "adapter", + "client", + "discovery", + "factory", + "http", + "message", + "psr17", + "psr7" + ], + "support": { + "issues": "https://github.com/php-http/discovery/issues", + "source": "https://github.com/php-http/discovery/tree/1.19.4" + }, + "time": "2024-03-29T13:00:05+00:00" + }, + { + "name": "php-http/guzzle7-adapter", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/php-http/guzzle7-adapter.git", + "reference": "fb075a71dbfa4847cf0c2938c4e5a9c478ef8b01" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-http/guzzle7-adapter/zipball/fb075a71dbfa4847cf0c2938c4e5a9c478ef8b01", + "reference": "fb075a71dbfa4847cf0c2938c4e5a9c478ef8b01", + "shasum": "" + }, + "require": { + "guzzlehttp/guzzle": "^7.0", + "php": "^7.2 | ^8.0", + "php-http/httplug": "^2.0", + "psr/http-client": "^1.0" + }, + "provide": { + "php-http/async-client-implementation": "1.0", + "php-http/client-implementation": "1.0", + "psr/http-client-implementation": "1.0" + }, + "require-dev": { + "php-http/client-integration-tests": "^3.0", + "phpunit/phpunit": "^8.0|^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "0.2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Http\\Adapter\\Guzzle7\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Tobias Nyholm", + "email": "tobias.nyholm@gmail.com" + } + ], + "description": "Guzzle 7 HTTP Adapter", + "homepage": "http://httplug.io", + "keywords": [ + "Guzzle", + "http" + ], + "support": { + "issues": "https://github.com/php-http/guzzle7-adapter/issues", + "source": "https://github.com/php-http/guzzle7-adapter/tree/1.0.0" + }, + "time": "2021-03-09T07:35:15+00:00" + }, + { + "name": "php-http/httplug", + "version": "2.4.0", + "source": { + "type": "git", + "url": "https://github.com/php-http/httplug.git", + "reference": "625ad742c360c8ac580fcc647a1541d29e257f67" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-http/httplug/zipball/625ad742c360c8ac580fcc647a1541d29e257f67", + "reference": "625ad742c360c8ac580fcc647a1541d29e257f67", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0", + "php-http/promise": "^1.1", + "psr/http-client": "^1.0", + "psr/http-message": "^1.0 || ^2.0" + }, + "require-dev": { + "friends-of-phpspec/phpspec-code-coverage": "^4.1 || ^5.0 || ^6.0", + "phpspec/phpspec": "^5.1 || ^6.0 || ^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Http\\Client\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Eric GELOEN", + "email": "geloen.eric@gmail.com" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com", + "homepage": "https://sagikazarmark.hu" + } + ], + "description": "HTTPlug, the HTTP client abstraction for PHP", + "homepage": "http://httplug.io", + "keywords": [ + "client", + "http" + ], + "support": { + "issues": "https://github.com/php-http/httplug/issues", + "source": "https://github.com/php-http/httplug/tree/2.4.0" + }, + "time": "2023-04-14T15:10:03+00:00" + }, + { + "name": "php-http/promise", + "version": "1.3.1", + "source": { + "type": "git", + "url": "https://github.com/php-http/promise.git", + "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-http/promise/zipball/fc85b1fba37c169a69a07ef0d5a8075770cc1f83", + "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83", + "shasum": "" + }, + "require": { + "php": "^7.1 || ^8.0" + }, + "require-dev": { + "friends-of-phpspec/phpspec-code-coverage": "^4.3.2 || ^6.3", + "phpspec/phpspec": "^5.1.2 || ^6.2 || ^7.4" + }, + "type": "library", + "autoload": { + "psr-4": { + "Http\\Promise\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Joel Wurtz", + "email": "joel.wurtz@gmail.com" + }, + { + "name": "Márk Sági-Kazár", + "email": "mark.sagikazar@gmail.com" + } + ], + "description": "Promise used for asynchronous HTTP requests", + "homepage": "http://httplug.io", + "keywords": [ + "promise" + ], + "support": { + "issues": "https://github.com/php-http/promise/issues", + "source": "https://github.com/php-http/promise/tree/1.3.1" + }, + "time": "2024-03-15T13:55:21+00:00" + }, + { + "name": "phpdocumentor/reflection-common", + "version": "2.2.0", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/ReflectionCommon.git", + "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b", + "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-2.x": "2.x-dev" + } + }, + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jaap van Otterdijk", + "email": "opensource@ijaap.nl" + } + ], + "description": "Common reflection classes used by phpdocumentor to reflect the code structure", + "homepage": "http://www.phpdoc.org", + "keywords": [ + "FQSEN", + "phpDocumentor", + "phpdoc", + "reflection", + "static analysis" + ], + "support": { + "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues", + "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x" + }, + "time": "2020-06-27T09:03:43+00:00" + }, + { + "name": "phpdocumentor/reflection-docblock", + "version": "5.4.1", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", + "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c", + "reference": "9d07b3f7fdcf5efec5d1609cba3c19c5ea2bdc9c", + "shasum": "" + }, + "require": { + "doctrine/deprecations": "^1.1", + "ext-filter": "*", + "php": "^7.4 || ^8.0", + "phpdocumentor/reflection-common": "^2.2", + "phpdocumentor/type-resolver": "^1.7", + "phpstan/phpdoc-parser": "^1.7", + "webmozart/assert": "^1.9.1" + }, + "require-dev": { + "mockery/mockery": "~1.3.5", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-mockery": "^1.1", + "phpstan/phpstan-webmozart-assert": "^1.2", + "phpunit/phpunit": "^9.5", + "vimeo/psalm": "^5.13" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.x-dev" + } + }, + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mike van Riel", + "email": "me@mikevanriel.com" + }, + { + "name": "Jaap van Otterdijk", + "email": "opensource@ijaap.nl" + } + ], + "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", + "support": { + "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues", + "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.4.1" + }, + "time": "2024-05-21T05:55:05+00:00" + }, + { + "name": "phpdocumentor/type-resolver", + "version": "1.8.2", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/TypeResolver.git", + "reference": "153ae662783729388a584b4361f2545e4d841e3c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/153ae662783729388a584b4361f2545e4d841e3c", + "reference": "153ae662783729388a584b4361f2545e4d841e3c", + "shasum": "" + }, + "require": { + "doctrine/deprecations": "^1.0", + "php": "^7.3 || ^8.0", + "phpdocumentor/reflection-common": "^2.0", + "phpstan/phpdoc-parser": "^1.13" + }, + "require-dev": { + "ext-tokenizer": "*", + "phpbench/phpbench": "^1.2", + "phpstan/extension-installer": "^1.1", + "phpstan/phpstan": "^1.8", + "phpstan/phpstan-phpunit": "^1.1", + "phpunit/phpunit": "^9.5", + "rector/rector": "^0.13.9", + "vimeo/psalm": "^4.25" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mike van Riel", + "email": "me@mikevanriel.com" + } + ], + "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", + "support": { + "issues": "https://github.com/phpDocumentor/TypeResolver/issues", + "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.8.2" + }, + "time": "2024-02-23T11:10:43+00:00" + }, + { + "name": "phpspec/prophecy", + "version": "v1.19.0", + "source": { + "type": "git", + "url": "https://github.com/phpspec/prophecy.git", + "reference": "67a759e7d8746d501c41536ba40cd9c0a07d6a87" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/67a759e7d8746d501c41536ba40cd9c0a07d6a87", + "reference": "67a759e7d8746d501c41536ba40cd9c0a07d6a87", + "shasum": "" + }, + "require": { + "doctrine/instantiator": "^1.2 || ^2.0", + "php": "^7.2 || 8.0.* || 8.1.* || 8.2.* || 8.3.*", + "phpdocumentor/reflection-docblock": "^5.2", + "sebastian/comparator": "^3.0 || ^4.0 || ^5.0 || ^6.0", + "sebastian/recursion-context": "^3.0 || ^4.0 || ^5.0 || ^6.0" + }, + "require-dev": { + "phpspec/phpspec": "^6.0 || ^7.0", + "phpstan/phpstan": "^1.9", + "phpunit/phpunit": "^8.0 || ^9.0 || ^10.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Prophecy\\": "src/Prophecy" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Konstantin Kudryashov", + "email": "ever.zet@gmail.com", + "homepage": "http://everzet.com" + }, + { + "name": "Marcello Duarte", + "email": "marcello.duarte@gmail.com" + } + ], + "description": "Highly opinionated mocking framework for PHP 5.3+", + "homepage": "https://github.com/phpspec/prophecy", + "keywords": [ + "Double", + "Dummy", + "dev", + "fake", + "mock", + "spy", + "stub" + ], + "support": { + "issues": "https://github.com/phpspec/prophecy/issues", + "source": "https://github.com/phpspec/prophecy/tree/v1.19.0" + }, + "time": "2024-02-29T11:52:51+00:00" + }, + { + "name": "phpspec/prophecy-phpunit", + "version": "v2.2.0", + "source": { + "type": "git", + "url": "https://github.com/phpspec/prophecy-phpunit.git", + "reference": "16e1247e139434bce0bac09848bc5c8d882940fc" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpspec/prophecy-phpunit/zipball/16e1247e139434bce0bac09848bc5c8d882940fc", + "reference": "16e1247e139434bce0bac09848bc5c8d882940fc", + "shasum": "" + }, + "require": { + "php": "^7.3 || ^8", + "phpspec/prophecy": "^1.18", + "phpunit/phpunit": "^9.1 || ^10.1 || ^11.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Prophecy\\PhpUnit\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Christophe Coevoet", + "email": "stof@notk.org" + } + ], + "description": "Integrating the Prophecy mocking library in PHPUnit test cases", + "homepage": "http://phpspec.net", + "keywords": [ + "phpunit", + "prophecy" + ], + "support": { + "issues": "https://github.com/phpspec/prophecy-phpunit/issues", + "source": "https://github.com/phpspec/prophecy-phpunit/tree/v2.2.0" + }, + "time": "2024-03-01T08:33:58+00:00" + }, + { + "name": "phpstan/extension-installer", + "version": "1.4.3", + "source": { + "type": "git", + "url": "https://github.com/phpstan/extension-installer.git", + "reference": "85e90b3942d06b2326fba0403ec24fe912372936" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpstan/extension-installer/zipball/85e90b3942d06b2326fba0403ec24fe912372936", + "reference": "85e90b3942d06b2326fba0403ec24fe912372936", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^2.0", + "php": "^7.2 || ^8.0", + "phpstan/phpstan": "^1.9.0 || ^2.0" + }, + "require-dev": { + "composer/composer": "^2.0", + "php-parallel-lint/php-parallel-lint": "^1.2.0", + "phpstan/phpstan-strict-rules": "^0.11 || ^0.12 || ^1.0" + }, + "type": "composer-plugin", + "extra": { + "class": "PHPStan\\ExtensionInstaller\\Plugin" + }, + "autoload": { + "psr-4": { + "PHPStan\\ExtensionInstaller\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Composer plugin for automatic installation of PHPStan extensions", + "keywords": [ + "dev", + "static analysis" + ], + "support": { + "issues": "https://github.com/phpstan/extension-installer/issues", + "source": "https://github.com/phpstan/extension-installer/tree/1.4.3" + }, + "time": "2024-09-04T20:21:43+00:00" + }, + { + "name": "phpstan/phpdoc-parser", + "version": "1.30.1", + "source": { + "type": "git", + "url": "https://github.com/phpstan/phpdoc-parser.git", + "reference": "51b95ec8670af41009e2b2b56873bad96682413e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/51b95ec8670af41009e2b2b56873bad96682413e", + "reference": "51b95ec8670af41009e2b2b56873bad96682413e", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "doctrine/annotations": "^2.0", + "nikic/php-parser": "^4.15", + "php-parallel-lint/php-parallel-lint": "^1.2", + "phpstan/extension-installer": "^1.0", + "phpstan/phpstan": "^1.5", + "phpstan/phpstan-phpunit": "^1.1", + "phpstan/phpstan-strict-rules": "^1.0", + "phpunit/phpunit": "^9.5", + "symfony/process": "^5.2" + }, + "type": "library", + "autoload": { + "psr-4": { + "PHPStan\\PhpDocParser\\": [ + "src/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "PHPDoc parser with support for nullable, intersection and generic types", + "support": { + "issues": "https://github.com/phpstan/phpdoc-parser/issues", + "source": "https://github.com/phpstan/phpdoc-parser/tree/1.30.1" + }, + "time": "2024-09-07T20:13:05+00:00" + }, + { + "name": "phpstan/phpstan", + "version": "1.12.3", + "source": { + "type": "git", + "url": "https://github.com/phpstan/phpstan.git", + "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0fcbf194ab63d8159bb70d9aa3e1350051632009", + "reference": "0fcbf194ab63d8159bb70d9aa3e1350051632009", + "shasum": "" + }, + "require": { + "php": "^7.2|^8.0" + }, + "conflict": { + "phpstan/phpstan-shim": "*" + }, + "bin": [ + "phpstan", + "phpstan.phar" + ], + "type": "library", + "autoload": { + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "PHPStan - PHP Static Analysis Tool", + "keywords": [ + "dev", + "static analysis" + ], + "support": { + "docs": "https://phpstan.org/user-guide/getting-started", + "forum": "https://github.com/phpstan/phpstan/discussions", + "issues": "https://github.com/phpstan/phpstan/issues", + "security": "https://github.com/phpstan/phpstan/security/policy", + "source": "https://github.com/phpstan/phpstan-src" + }, + "funding": [ + { + "url": "https://github.com/ondrejmirtes", + "type": "github" + }, + { + "url": "https://github.com/phpstan", + "type": "github" + } + ], + "time": "2024-09-09T08:10:35+00:00" + }, + { + "name": "phpstan/phpstan-deprecation-rules", + "version": "1.2.1", + "source": { + "type": "git", + "url": "https://github.com/phpstan/phpstan-deprecation-rules.git", + "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/f94d246cc143ec5a23da868f8f7e1393b50eaa82", + "reference": "f94d246cc143ec5a23da868f8f7e1393b50eaa82", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0", + "phpstan/phpstan": "^1.12" + }, + "require-dev": { + "php-parallel-lint/php-parallel-lint": "^1.2", + "phpstan/phpstan-phpunit": "^1.0", + "phpunit/phpunit": "^9.5" + }, + "type": "phpstan-extension", + "extra": { + "phpstan": { + "includes": [ + "rules.neon" + ] + } + }, + "autoload": { + "psr-4": { + "PHPStan\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.", + "support": { + "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues", + "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/1.2.1" + }, + "time": "2024-09-11T15:52:35+00:00" + }, + { + "name": "phpstan/phpstan-phpunit", + "version": "1.4.0", + "source": { + "type": "git", + "url": "https://github.com/phpstan/phpstan-phpunit.git", + "reference": "f3ea021866f4263f07ca3636bf22c64be9610c11" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpstan/phpstan-phpunit/zipball/f3ea021866f4263f07ca3636bf22c64be9610c11", + "reference": "f3ea021866f4263f07ca3636bf22c64be9610c11", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0", + "phpstan/phpstan": "^1.11" + }, + "conflict": { + "phpunit/phpunit": "<7.0" + }, + "require-dev": { + "nikic/php-parser": "^4.13.0", + "php-parallel-lint/php-parallel-lint": "^1.2", + "phpstan/phpstan-strict-rules": "^1.5.1", + "phpunit/phpunit": "^9.5" + }, + "type": "phpstan-extension", + "extra": { + "phpstan": { + "includes": [ + "extension.neon", + "rules.neon" + ] + } + }, + "autoload": { + "psr-4": { + "PHPStan\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "PHPUnit extensions and rules for PHPStan", + "support": { + "issues": "https://github.com/phpstan/phpstan-phpunit/issues", + "source": "https://github.com/phpstan/phpstan-phpunit/tree/1.4.0" + }, + "time": "2024-04-20T06:39:00+00:00" + }, + { + "name": "phpunit/php-code-coverage", + "version": "9.2.31", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-code-coverage.git", + "reference": "48c34b5d8d983006bd2adc2d0de92963b9155965" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/48c34b5d8d983006bd2adc2d0de92963b9155965", + "reference": "48c34b5d8d983006bd2adc2d0de92963b9155965", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-libxml": "*", + "ext-xmlwriter": "*", + "nikic/php-parser": "^4.18 || ^5.0", + "php": ">=7.3", + "phpunit/php-file-iterator": "^3.0.3", + "phpunit/php-text-template": "^2.0.2", + "sebastian/code-unit-reverse-lookup": "^2.0.2", + "sebastian/complexity": "^2.0", + "sebastian/environment": "^5.1.2", + "sebastian/lines-of-code": "^1.0.3", + "sebastian/version": "^3.0.1", + "theseer/tokenizer": "^1.2.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "suggest": { + "ext-pcov": "PHP extension that provides line coverage", + "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "9.2-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", + "homepage": "https://github.com/sebastianbergmann/php-code-coverage", + "keywords": [ + "coverage", + "testing", + "xunit" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", + "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.31" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T06:37:42+00:00" + }, + { + "name": "phpunit/php-file-iterator", + "version": "3.0.6", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-file-iterator.git", + "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf", + "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "FilterIterator implementation that filters files based on a list of suffixes.", + "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", + "keywords": [ + "filesystem", + "iterator" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", + "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2021-12-02T12:48:52+00:00" + }, + { + "name": "phpunit/php-invoker", + "version": "3.1.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-invoker.git", + "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67", + "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "ext-pcntl": "*", + "phpunit/phpunit": "^9.3" + }, + "suggest": { + "ext-pcntl": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Invoke callables with a timeout", + "homepage": "https://github.com/sebastianbergmann/php-invoker/", + "keywords": [ + "process" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-invoker/issues", + "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-09-28T05:58:55+00:00" + }, + { + "name": "phpunit/php-text-template", + "version": "2.0.4", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-text-template.git", + "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", + "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Simple template engine.", + "homepage": "https://github.com/sebastianbergmann/php-text-template/", + "keywords": [ + "template" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-text-template/issues", + "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-10-26T05:33:50+00:00" + }, + { + "name": "phpunit/php-timer", + "version": "5.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/php-timer.git", + "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", + "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Utility class for timing", + "homepage": "https://github.com/sebastianbergmann/php-timer/", + "keywords": [ + "timer" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-timer/issues", + "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-10-26T13:16:10+00:00" + }, + { + "name": "phpunit/phpunit", + "version": "9.6.20", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/phpunit.git", + "reference": "49d7820565836236411f5dc002d16dd689cde42f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/49d7820565836236411f5dc002d16dd689cde42f", + "reference": "49d7820565836236411f5dc002d16dd689cde42f", + "shasum": "" + }, + "require": { + "doctrine/instantiator": "^1.5.0 || ^2", + "ext-dom": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-xml": "*", + "ext-xmlwriter": "*", + "myclabs/deep-copy": "^1.12.0", + "phar-io/manifest": "^2.0.4", + "phar-io/version": "^3.2.1", + "php": ">=7.3", + "phpunit/php-code-coverage": "^9.2.31", + "phpunit/php-file-iterator": "^3.0.6", + "phpunit/php-invoker": "^3.1.1", + "phpunit/php-text-template": "^2.0.4", + "phpunit/php-timer": "^5.0.3", + "sebastian/cli-parser": "^1.0.2", + "sebastian/code-unit": "^1.0.8", + "sebastian/comparator": "^4.0.8", + "sebastian/diff": "^4.0.6", + "sebastian/environment": "^5.1.5", + "sebastian/exporter": "^4.0.6", + "sebastian/global-state": "^5.0.7", + "sebastian/object-enumerator": "^4.0.4", + "sebastian/resource-operations": "^3.0.4", + "sebastian/type": "^3.2.1", + "sebastian/version": "^3.0.2" + }, + "suggest": { + "ext-soap": "To be able to generate mocks based on WSDL files", + "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" + }, + "bin": [ + "phpunit" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "9.6-dev" + } + }, + "autoload": { + "files": [ + "src/Framework/Assert/Functions.php" + ], + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "The PHP Unit Testing framework.", + "homepage": "https://phpunit.de/", + "keywords": [ + "phpunit", + "testing", + "xunit" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/phpunit/issues", + "security": "https://github.com/sebastianbergmann/phpunit/security/policy", + "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.20" + }, + "funding": [ + { + "url": "https://phpunit.de/sponsors.html", + "type": "custom" + }, + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit", + "type": "tidelift" + } + ], + "time": "2024-07-10T11:45:39+00:00" + }, + { + "name": "react/promise", + "version": "v3.2.0", + "source": { + "type": "git", + "url": "https://github.com/reactphp/promise.git", + "reference": "8a164643313c71354582dc850b42b33fa12a4b63" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63", + "reference": "8a164643313c71354582dc850b42b33fa12a4b63", + "shasum": "" + }, + "require": { + "php": ">=7.1.0" + }, + "require-dev": { + "phpstan/phpstan": "1.10.39 || 1.4.10", + "phpunit/phpunit": "^9.6 || ^7.5" + }, + "type": "library", + "autoload": { + "files": [ + "src/functions_include.php" + ], + "psr-4": { + "React\\Promise\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jan Sorgalla", + "email": "jsorgalla@gmail.com", + "homepage": "https://sorgalla.com/" + }, + { + "name": "Christian Lück", + "email": "christian@clue.engineering", + "homepage": "https://clue.engineering/" + }, + { + "name": "Cees-Jan Kiewiet", + "email": "reactphp@ceesjankiewiet.nl", + "homepage": "https://wyrihaximus.net/" + }, + { + "name": "Chris Boden", + "email": "cboden@gmail.com", + "homepage": "https://cboden.dev/" + } + ], + "description": "A lightweight implementation of CommonJS Promises/A for PHP", + "keywords": [ + "promise", + "promises" + ], + "support": { + "issues": "https://github.com/reactphp/promise/issues", + "source": "https://github.com/reactphp/promise/tree/v3.2.0" + }, + "funding": [ + { + "url": "https://opencollective.com/reactphp", + "type": "open_collective" + } + ], + "time": "2024-05-24T10:39:05+00:00" + }, + { + "name": "sebastian/cli-parser", + "version": "1.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/cli-parser.git", + "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b", + "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for parsing CLI options", + "homepage": "https://github.com/sebastianbergmann/cli-parser", + "support": { + "issues": "https://github.com/sebastianbergmann/cli-parser/issues", + "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T06:27:43+00:00" + }, + { + "name": "sebastian/code-unit", + "version": "1.0.8", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit.git", + "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120", + "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Collection of value objects that represent the PHP code units", + "homepage": "https://github.com/sebastianbergmann/code-unit", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit/issues", + "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-10-26T13:08:54+00:00" + }, + { + "name": "sebastian/code-unit-reverse-lookup", + "version": "2.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", + "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", + "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Looks up which function or method a line of code belongs to", + "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", + "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-09-28T05:30:19+00:00" + }, + { + "name": "sebastian/comparator", + "version": "4.0.8", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/comparator.git", + "reference": "fa0f136dd2334583309d32b62544682ee972b51a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a", + "reference": "fa0f136dd2334583309d32b62544682ee972b51a", + "shasum": "" + }, + "require": { + "php": ">=7.3", + "sebastian/diff": "^4.0", + "sebastian/exporter": "^4.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@2bepublished.at" + } + ], + "description": "Provides the functionality to compare PHP values for equality", + "homepage": "https://github.com/sebastianbergmann/comparator", + "keywords": [ + "comparator", + "compare", + "equality" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/comparator/issues", + "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2022-09-14T12:41:17+00:00" + }, + { + "name": "sebastian/complexity", + "version": "2.0.3", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/complexity.git", + "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a", + "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^4.18 || ^5.0", + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for calculating the complexity of PHP code units", + "homepage": "https://github.com/sebastianbergmann/complexity", + "support": { + "issues": "https://github.com/sebastianbergmann/complexity/issues", + "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-12-22T06:19:30+00:00" + }, + { + "name": "sebastian/environment", + "version": "5.1.5", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/environment.git", + "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", + "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "suggest": { + "ext-posix": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.1-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides functionality to handle HHVM/PHP environments", + "homepage": "http://www.github.com/sebastianbergmann/environment", + "keywords": [ + "Xdebug", + "environment", + "hhvm" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/environment/issues", + "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:03:51+00:00" + }, + { + "name": "sebastian/exporter", + "version": "4.0.6", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/exporter.git", + "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/78c00df8f170e02473b682df15bfcdacc3d32d72", + "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72", + "shasum": "" + }, + "require": { + "php": ">=7.3", + "sebastian/recursion-context": "^4.0" + }, + "require-dev": { + "ext-mbstring": "*", + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Volker Dusch", + "email": "github@wallbash.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Provides the functionality to export PHP variables for visualization", + "homepage": "https://www.github.com/sebastianbergmann/exporter", + "keywords": [ + "export", + "exporter" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/exporter/issues", + "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T06:33:00+00:00" + }, + { + "name": "sebastian/global-state", + "version": "5.0.7", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/global-state.git", + "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9", + "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9", + "shasum": "" + }, + "require": { + "php": ">=7.3", + "sebastian/object-reflector": "^2.0", + "sebastian/recursion-context": "^4.0" + }, + "require-dev": { + "ext-dom": "*", + "phpunit/phpunit": "^9.3" + }, + "suggest": { + "ext-uopz": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Snapshotting of global state", + "homepage": "http://www.github.com/sebastianbergmann/global-state", + "keywords": [ + "global state" + ], + "support": { + "issues": "https://github.com/sebastianbergmann/global-state/issues", + "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-02T06:35:11+00:00" + }, + { + "name": "sebastian/lines-of-code", + "version": "1.0.4", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/lines-of-code.git", + "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5", + "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5", + "shasum": "" + }, + "require": { + "nikic/php-parser": "^4.18 || ^5.0", + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library for counting the lines of code in PHP source code", + "homepage": "https://github.com/sebastianbergmann/lines-of-code", + "support": { + "issues": "https://github.com/sebastianbergmann/lines-of-code/issues", + "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-12-22T06:20:34+00:00" + }, + { + "name": "sebastian/object-enumerator", + "version": "4.0.4", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-enumerator.git", + "reference": "5c9eeac41b290a3712d88851518825ad78f45c71" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71", + "reference": "5c9eeac41b290a3712d88851518825ad78f45c71", + "shasum": "" + }, + "require": { + "php": ">=7.3", + "sebastian/object-reflector": "^2.0", + "sebastian/recursion-context": "^4.0" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Traverses array structures and object graphs to enumerate all referenced objects", + "homepage": "https://github.com/sebastianbergmann/object-enumerator/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", + "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-10-26T13:12:34+00:00" + }, + { + "name": "sebastian/object-reflector", + "version": "2.0.4", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/object-reflector.git", + "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", + "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Allows reflection of object attributes, including inherited and non-public ones", + "homepage": "https://github.com/sebastianbergmann/object-reflector/", + "support": { + "issues": "https://github.com/sebastianbergmann/object-reflector/issues", + "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-10-26T13:14:26+00:00" + }, + { + "name": "sebastian/recursion-context", + "version": "4.0.5", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/recursion-context.git", + "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", + "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, + { + "name": "Adam Harvey", + "email": "aharvey@php.net" + } + ], + "description": "Provides functionality to recursively process PHP variables", + "homepage": "https://github.com/sebastianbergmann/recursion-context", + "support": { + "issues": "https://github.com/sebastianbergmann/recursion-context/issues", + "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:07:39+00:00" + }, + { + "name": "sebastian/resource-operations", + "version": "3.0.4", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/resource-operations.git", + "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e", + "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + } + ], + "description": "Provides a list of PHP built-in functions that operate on resources", + "homepage": "https://www.github.com/sebastianbergmann/resource-operations", + "support": { + "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2024-03-14T16:00:52+00:00" + }, + { + "name": "sebastian/type", + "version": "3.2.1", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/type.git", + "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", + "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "require-dev": { + "phpunit/phpunit": "^9.5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.2-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Collection of value objects that represent the types of the PHP type system", + "homepage": "https://github.com/sebastianbergmann/type", + "support": { + "issues": "https://github.com/sebastianbergmann/type/issues", + "source": "https://github.com/sebastianbergmann/type/tree/3.2.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2023-02-03T06:13:03+00:00" + }, + { + "name": "sebastian/version", + "version": "3.0.2", + "source": { + "type": "git", + "url": "https://github.com/sebastianbergmann/version.git", + "reference": "c6c1022351a901512170118436c764e473f6de8c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c", + "reference": "c6c1022351a901512170118436c764e473f6de8c", + "shasum": "" + }, + "require": { + "php": ">=7.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.0-dev" + } + }, + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de", + "role": "lead" + } + ], + "description": "Library that helps with managing the version number of Git-hosted PHP projects", + "homepage": "https://github.com/sebastianbergmann/version", + "support": { + "issues": "https://github.com/sebastianbergmann/version/issues", + "source": "https://github.com/sebastianbergmann/version/tree/3.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-09-28T06:39:44+00:00" + }, + { + "name": "seld/jsonlint", + "version": "1.11.0", + "source": { + "type": "git", + "url": "https://github.com/Seldaek/jsonlint.git", + "reference": "1748aaf847fc731cfad7725aec413ee46f0cc3a2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/1748aaf847fc731cfad7725aec413ee46f0cc3a2", + "reference": "1748aaf847fc731cfad7725aec413ee46f0cc3a2", + "shasum": "" + }, + "require": { + "php": "^5.3 || ^7.0 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^1.11", + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^8.5.13" + }, + "bin": [ + "bin/jsonlint" + ], + "type": "library", + "autoload": { + "psr-4": { + "Seld\\JsonLint\\": "src/Seld/JsonLint/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "https://seld.be" + } + ], + "description": "JSON Linter", + "keywords": [ + "json", + "linter", + "parser", + "validator" + ], + "support": { + "issues": "https://github.com/Seldaek/jsonlint/issues", + "source": "https://github.com/Seldaek/jsonlint/tree/1.11.0" + }, + "funding": [ + { + "url": "https://github.com/Seldaek", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint", + "type": "tidelift" + } + ], + "time": "2024-07-11T14:55:45+00:00" + }, + { + "name": "seld/phar-utils", + "version": "1.2.1", + "source": { + "type": "git", + "url": "https://github.com/Seldaek/phar-utils.git", + "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/ea2f4014f163c1be4c601b9b7bd6af81ba8d701c", + "reference": "ea2f4014f163c1be4c601b9b7bd6af81ba8d701c", + "shasum": "" + }, + "require": { + "php": ">=5.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Seld\\PharUtils\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be" + } + ], + "description": "PHAR file format utilities, for when PHP phars you up", + "keywords": [ + "phar" + ], + "support": { + "issues": "https://github.com/Seldaek/phar-utils/issues", + "source": "https://github.com/Seldaek/phar-utils/tree/1.2.1" + }, + "time": "2022-08-31T10:31:18+00:00" + }, + { + "name": "seld/signal-handler", + "version": "2.0.2", + "source": { + "type": "git", + "url": "https://github.com/Seldaek/signal-handler.git", + "reference": "04a6112e883ad76c0ada8e4a9f7520bbfdb6bb98" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Seldaek/signal-handler/zipball/04a6112e883ad76c0ada8e4a9f7520bbfdb6bb98", + "reference": "04a6112e883ad76c0ada8e4a9f7520bbfdb6bb98", + "shasum": "" + }, + "require": { + "php": ">=7.2.0" + }, + "require-dev": { + "phpstan/phpstan": "^1", + "phpstan/phpstan-deprecation-rules": "^1.0", + "phpstan/phpstan-phpunit": "^1", + "phpstan/phpstan-strict-rules": "^1.3", + "phpunit/phpunit": "^7.5.20 || ^8.5.23", + "psr/log": "^1 || ^2 || ^3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "2.x-dev" + } + }, + "autoload": { + "psr-4": { + "Seld\\Signal\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + } + ], + "description": "Simple unix signal handler that silently fails where signals are not supported for easy cross-platform development", + "keywords": [ + "posix", + "sigint", + "signal", + "sigterm", + "unix" + ], + "support": { + "issues": "https://github.com/Seldaek/signal-handler/issues", + "source": "https://github.com/Seldaek/signal-handler/tree/2.0.2" + }, + "time": "2023-09-03T09:24:00+00:00" + }, + { + "name": "sirbrillig/phpcs-variable-analysis", + "version": "v2.11.19", + "source": { + "type": "git", + "url": "https://github.com/sirbrillig/phpcs-variable-analysis.git", + "reference": "bc8d7e30e2005bce5c59018b7cdb08e9fb45c0d1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/sirbrillig/phpcs-variable-analysis/zipball/bc8d7e30e2005bce5c59018b7cdb08e9fb45c0d1", + "reference": "bc8d7e30e2005bce5c59018b7cdb08e9fb45c0d1", + "shasum": "" + }, + "require": { + "php": ">=5.4.0", + "squizlabs/php_codesniffer": "^3.5.6" + }, + "require-dev": { + "dealerdirect/phpcodesniffer-composer-installer": "^0.7 || ^1.0", + "phpcsstandards/phpcsdevcs": "^1.1", + "phpstan/phpstan": "^1.7", + "phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.5 || ^7.0 || ^8.0 || ^9.0", + "sirbrillig/phpcs-import-detection": "^1.1", + "vimeo/psalm": "^0.2 || ^0.3 || ^1.1 || ^4.24 || ^5.0@beta" + }, + "type": "phpcodesniffer-standard", + "autoload": { + "psr-4": { + "VariableAnalysis\\": "VariableAnalysis/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-2-Clause" + ], + "authors": [ + { + "name": "Sam Graham", + "email": "php-codesniffer-variableanalysis@illusori.co.uk" + }, + { + "name": "Payton Swick", + "email": "payton@foolord.com" + } + ], + "description": "A PHPCS sniff to detect problems with variables.", + "keywords": [ + "phpcs", + "static analysis" + ], + "support": { + "issues": "https://github.com/sirbrillig/phpcs-variable-analysis/issues", + "source": "https://github.com/sirbrillig/phpcs-variable-analysis", + "wiki": "https://github.com/sirbrillig/phpcs-variable-analysis/wiki" + }, + "time": "2024-06-26T20:08:34+00:00" + }, + { + "name": "slevomat/coding-standard", + "version": "8.15.0", + "source": { + "type": "git", + "url": "https://github.com/slevomat/coding-standard.git", + "reference": "7d1d957421618a3803b593ec31ace470177d7817" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/7d1d957421618a3803b593ec31ace470177d7817", + "reference": "7d1d957421618a3803b593ec31ace470177d7817", + "shasum": "" + }, + "require": { + "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7 || ^1.0", + "php": "^7.2 || ^8.0", + "phpstan/phpdoc-parser": "^1.23.1", + "squizlabs/php_codesniffer": "^3.9.0" + }, + "require-dev": { + "phing/phing": "2.17.4", + "php-parallel-lint/php-parallel-lint": "1.3.2", + "phpstan/phpstan": "1.10.60", + "phpstan/phpstan-deprecation-rules": "1.1.4", + "phpstan/phpstan-phpunit": "1.3.16", + "phpstan/phpstan-strict-rules": "1.5.2", + "phpunit/phpunit": "8.5.21|9.6.8|10.5.11" + }, + "type": "phpcodesniffer-standard", + "extra": { + "branch-alias": { + "dev-master": "8.x-dev" + } + }, + "autoload": { + "psr-4": { + "SlevomatCodingStandard\\": "SlevomatCodingStandard/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "description": "Slevomat Coding Standard for PHP_CodeSniffer complements Consistence Coding Standard by providing sniffs with additional checks.", + "keywords": [ + "dev", + "phpcs" + ], + "support": { + "issues": "https://github.com/slevomat/coding-standard/issues", + "source": "https://github.com/slevomat/coding-standard/tree/8.15.0" + }, + "funding": [ + { + "url": "https://github.com/kukulich", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/slevomat/coding-standard", + "type": "tidelift" + } + ], + "time": "2024-03-09T15:20:58+00:00" + }, + { + "name": "squizlabs/php_codesniffer", + "version": "3.10.3", + "source": { + "type": "git", + "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git", + "reference": "62d32998e820bddc40f99f8251958aed187a5c9c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/62d32998e820bddc40f99f8251958aed187a5c9c", + "reference": "62d32998e820bddc40f99f8251958aed187a5c9c", + "shasum": "" + }, + "require": { + "ext-simplexml": "*", + "ext-tokenizer": "*", + "ext-xmlwriter": "*", + "php": ">=5.4.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4" + }, + "bin": [ + "bin/phpcbf", + "bin/phpcs" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Greg Sherwood", + "role": "Former lead" + }, + { + "name": "Juliette Reinders Folmer", + "role": "Current lead" + }, + { + "name": "Contributors", + "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer/graphs/contributors" + } + ], + "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.", + "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer", + "keywords": [ + "phpcs", + "standards", + "static analysis" + ], + "support": { + "issues": "https://github.com/PHPCSStandards/PHP_CodeSniffer/issues", + "security": "https://github.com/PHPCSStandards/PHP_CodeSniffer/security/policy", + "source": "https://github.com/PHPCSStandards/PHP_CodeSniffer", + "wiki": "https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki" + }, + "funding": [ + { + "url": "https://github.com/PHPCSStandards", + "type": "github" + }, + { + "url": "https://github.com/jrfnl", + "type": "github" + }, + { + "url": "https://opencollective.com/php_codesniffer", + "type": "open_collective" + } + ], + "time": "2024-09-18T10:38:58+00:00" + }, + { + "name": "symfony/browser-kit", + "version": "v6.4.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/browser-kit.git", + "reference": "62ab90b92066ef6cce5e79365625b4b1432464c8" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/browser-kit/zipball/62ab90b92066ef6cce5e79365625b4b1432464c8", + "reference": "62ab90b92066ef6cce5e79365625b4b1432464c8", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "symfony/dom-crawler": "^5.4|^6.0|^7.0" + }, + "require-dev": { + "symfony/css-selector": "^5.4|^6.0|^7.0", + "symfony/http-client": "^5.4|^6.0|^7.0", + "symfony/mime": "^5.4|^6.0|^7.0", + "symfony/process": "^5.4|^6.0|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\BrowserKit\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/browser-kit/tree/v6.4.8" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-05-31T14:49:08+00:00" + }, + { + "name": "symfony/css-selector", + "version": "v6.4.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/css-selector.git", + "reference": "4b61b02fe15db48e3687ce1c45ea385d1780fe08" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/4b61b02fe15db48e3687ce1c45ea385d1780fe08", + "reference": "4b61b02fe15db48e3687ce1c45ea385d1780fe08", + "shasum": "" + }, + "require": { + "php": ">=8.1" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\CssSelector\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Jean-François Simon", + "email": "jeanfrancois.simon@sensiolabs.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Converts CSS selectors to XPath expressions", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/css-selector/tree/v6.4.8" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-05-31T14:49:08+00:00" + }, + { + "name": "symfony/dom-crawler", + "version": "v6.4.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/dom-crawler.git", + "reference": "105b56a0305d219349edeb60a800082eca864e4b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/105b56a0305d219349edeb60a800082eca864e4b", + "reference": "105b56a0305d219349edeb60a800082eca864e4b", + "shasum": "" + }, + "require": { + "masterminds/html5": "^2.6", + "php": ">=8.1", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-mbstring": "~1.0" + }, + "require-dev": { + "symfony/css-selector": "^5.4|^6.0|^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\DomCrawler\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Eases DOM navigation for HTML and XML documents", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/dom-crawler/tree/v6.4.8" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-05-31T14:49:08+00:00" + }, + { + "name": "symfony/lock", + "version": "v6.4.8", + "source": { + "type": "git", + "url": "https://github.com/symfony/lock.git", + "reference": "1387f50285c23607467c1f05b258bde65f1ab276" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/lock/zipball/1387f50285c23607467c1f05b258bde65f1ab276", + "reference": "1387f50285c23607467c1f05b258bde65f1ab276", + "shasum": "" + }, + "require": { + "php": ">=8.1", + "psr/log": "^1|^2|^3", + "symfony/deprecation-contracts": "^2.5|^3" + }, + "conflict": { + "doctrine/dbal": "<2.13", + "symfony/cache": "<6.2" + }, + "require-dev": { + "doctrine/dbal": "^2.13|^3|^4", + "predis/predis": "^1.1|^2.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Lock\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jérémy Derussé", + "email": "jeremy@derusse.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Creates and manages locks, a mechanism to provide exclusive access to a shared resource", + "homepage": "https://symfony.com", + "keywords": [ + "cas", + "flock", + "locking", + "mutex", + "redlock", + "semaphore" + ], + "support": { + "source": "https://github.com/symfony/lock/tree/v6.4.8" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-05-31T14:49:08+00:00" + }, + { + "name": "symfony/phpunit-bridge", + "version": "v6.4.11", + "source": { + "type": "git", + "url": "https://github.com/symfony/phpunit-bridge.git", + "reference": "168f412dcd6caf3813a9cc0f286cd68f6a76f070" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/168f412dcd6caf3813a9cc0f286cd68f6a76f070", + "reference": "168f412dcd6caf3813a9cc0f286cd68f6a76f070", + "shasum": "" + }, + "require": { + "php": ">=7.1.3" + }, + "conflict": { + "phpunit/phpunit": "<7.5|9.1.2" + }, + "require-dev": { + "symfony/deprecation-contracts": "^2.5|^3.0", + "symfony/error-handler": "^5.4|^6.0|^7.0", + "symfony/polyfill-php81": "^1.27" + }, + "bin": [ + "bin/simple-phpunit" + ], + "type": "symfony-bridge", + "extra": { + "thanks": { + "name": "phpunit/phpunit", + "url": "https://github.com/sebastianbergmann/phpunit" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Bridge\\PhpUnit\\": "" + }, + "exclude-from-classmap": [ + "/Tests/", + "/bin/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides utilities for PHPUnit, especially user deprecation notices management", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/phpunit-bridge/tree/v6.4.11" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-08-13T14:27:37+00:00" + }, + { + "name": "symfony/polyfill-php73", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php73.git", + "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb", + "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php73\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php73/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "symfony/polyfill-php82", + "version": "v1.31.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php82.git", + "reference": "5d2ed36f7734637dacc025f179698031951b1692" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php82/zipball/5d2ed36f7734637dacc025f179698031951b1692", + "reference": "5d2ed36f7734637dacc025f179698031951b1692", + "shasum": "" + }, + "require": { + "php": ">=7.2" + }, + "type": "library", + "extra": { + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "files": [ + "bootstrap.php" + ], + "psr-4": { + "Symfony\\Polyfill\\Php82\\": "" + }, + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.2+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php82/tree/v1.31.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2024-09-09T11:45:10+00:00" + }, + { + "name": "theseer/tokenizer", + "version": "1.2.3", + "source": { + "type": "git", + "url": "https://github.com/theseer/tokenizer.git", + "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2", + "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2", + "shasum": "" + }, + "require": { + "ext-dom": "*", + "ext-tokenizer": "*", + "ext-xmlwriter": "*", + "php": "^7.2 || ^8.0" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Arne Blankerts", + "email": "arne@blankerts.de", + "role": "Developer" + } + ], + "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", + "support": { + "issues": "https://github.com/theseer/tokenizer/issues", + "source": "https://github.com/theseer/tokenizer/tree/1.2.3" + }, + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2024-03-03T12:36:25+00:00" + }, + { + "name": "webmozart/assert", + "version": "1.11.0", + "source": { + "type": "git", + "url": "https://github.com/webmozarts/assert.git", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991", + "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "php": "^7.2 || ^8.0" + }, + "conflict": { + "phpstan/phpstan": "<0.12.20", + "vimeo/psalm": "<4.6.1 || 4.6.2" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.13" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.10-dev" + } + }, + "autoload": { + "psr-4": { + "Webmozart\\Assert\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" + } + ], + "description": "Assertions to validate method input/output with nice error messages.", + "keywords": [ + "assert", + "check", + "validate" + ], + "support": { + "issues": "https://github.com/webmozarts/assert/issues", + "source": "https://github.com/webmozarts/assert/tree/1.11.0" + }, + "time": "2022-06-03T18:03:27+00:00" + } + ], "aliases": [], "minimum-stability": "stable", "stability-flags": { diff --git a/models/Amber.yml b/models/Amber.yml new file mode 100644 index 0000000..5dd43eb --- /dev/null +++ b/models/Amber.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Amber + version: 7B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: Amber + producer: LLM360 + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/Aquila-7B.yml b/models/Aquila-7B.yml new file mode 100644 index 0000000..c903add --- /dev/null +++ b/models/Aquila-7B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Aquila-7B + version: 7B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: '' + producer: BAAI + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'BAAI Aquila Model License' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/AraGPT2.yml b/models/AraGPT2.yml new file mode 100644 index 0000000..52ada30 --- /dev/null +++ b/models/AraGPT2.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: AraGPT2 + version: 1.5B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: '' + producer: 'American University of Beirut' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Arctic-Base.yml b/models/Arctic-Base.yml new file mode 100644 index 0000000..fdf6d44 --- /dev/null +++ b/models/Arctic-Base.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Arctic-Base + version: 480B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: Arctic-Base + producer: Snowflake + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' diff --git a/models/Arctic-Instruct.yml b/models/Arctic-Instruct.yml new file mode 100644 index 0000000..1ab4f55 --- /dev/null +++ b/models/Arctic-Instruct.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Arctic-Instruct + version: 480B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: Arctic-Base + producer: Snowflake + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' diff --git a/models/BLOOM.yml b/models/BLOOM.yml new file mode 100644 index 0000000..4f283dc --- /dev/null +++ b/models/BLOOM.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: BLOOM + version: 176B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: '' + producer: BigScience + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: bigscience-bloom-rail-1.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'BigScience RAIL License v1.0' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' diff --git a/models/BTLM-3B-8k-base-.yml b/models/BTLM-3B-8k-base-.yml new file mode 100644 index 0000000..d4917cb --- /dev/null +++ b/models/BTLM-3B-8k-base-.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: BTLM-3B-8k-base- + version: 3B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: '' + producer: Cerebras + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' diff --git a/models/Baichuan-1-13B.yml b/models/Baichuan-1-13B.yml new file mode 100644 index 0000000..7691faa --- /dev/null +++ b/models/Baichuan-1-13B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Baichuan-1-13B + version: 13B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: Baichuan-1 + producer: 'Baichuan AI' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' diff --git a/models/Baichuan-1-53B.yml b/models/Baichuan-1-53B.yml new file mode 100644 index 0000000..1cf535c --- /dev/null +++ b/models/Baichuan-1-53B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Baichuan-1-53B + version: 53B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: Baichuan-1 + producer: 'Baichuan AI' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' diff --git a/models/Baichuan-1-7B.yml b/models/Baichuan-1-7B.yml new file mode 100644 index 0000000..a5c55db --- /dev/null +++ b/models/Baichuan-1-7B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Baichuan-1-7B + version: 7B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: Baichuan-1 + producer: 'Baichuan AI' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Baichuan-7B License' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' diff --git a/models/Baichuan-2.yml b/models/Baichuan-2.yml new file mode 100644 index 0000000..ff2cba3 --- /dev/null +++ b/models/Baichuan-2.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Baichuan-2 + version: 13B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: Baichuan-2 + producer: 'Baichuan AI' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Bilingual-gpt-neox-4b.yml b/models/Bilingual-gpt-neox-4b.yml new file mode 100644 index 0000000..b97acac --- /dev/null +++ b/models/Bilingual-gpt-neox-4b.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Bilingual-gpt-neox-4b + version: 3.8B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: GPT-NeoX + producer: Rinna + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'MIT license' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: MIT + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'mc4, cc100, wikipedia, EleutherAI/pile, togethercomputer/RedPajama-Data-1T' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' diff --git a/models/BioMedGPT.yml b/models/BioMedGPT.yml new file mode 100644 index 0000000..2b9a8c5 --- /dev/null +++ b/models/BioMedGPT.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: BioMedGPT + version: 2.7B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: '' + producer: 'Stanford CRFM' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: bigscience-bloom-rail-1.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: bigscience-bloom-rail-1.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: pubmed + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: bigscience-bloom-rail-1.0 + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' diff --git a/models/BlackMamba-2.8B.yml b/models/BlackMamba-2.8B.yml new file mode 100644 index 0000000..7a92baf --- /dev/null +++ b/models/BlackMamba-2.8B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: BlackMamba-2.8B + version: 2.8B + date: '2024-10-03' + type: language + architecture: '' + origin: '' + producer: Zyphra + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' diff --git a/models/BloombergGPT.yml b/models/BloombergGPT.yml new file mode 100644 index 0000000..05b3d3b --- /dev/null +++ b/models/BloombergGPT.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: BloombergGPT + version: 50B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: '' + producer: Bloomberg + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Undisclosed + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: Undisclosed + license_path: '' diff --git a/models/ByT5.yml b/models/ByT5.yml new file mode 100644 index 0000000..532b939 --- /dev/null +++ b/models/ByT5.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: ByT5 + version: 13B + date: '2024-10-03' + type: language + architecture: 'transformer encoder-decoder' + origin: '' + producer: Google + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' diff --git a/models/CPM-2.yml b/models/CPM-2.yml new file mode 100644 index 0000000..52f71e7 --- /dev/null +++ b/models/CPM-2.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: CPM-2 + version: 11B + date: '2024-10-03' + type: language + architecture: decoder + origin: '' + producer: 'Tsinghua University' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/CPM.yml b/models/CPM.yml new file mode 100644 index 0000000..144fd6d --- /dev/null +++ b/models/CPM.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: CPM + version: 2.6B + date: '2024-10-03' + type: language + architecture: decoder + origin: '' + producer: 'Tsinghua University' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/CerebrasGPT.yml b/models/CerebrasGPT.yml new file mode 100644 index 0000000..3ad54ba --- /dev/null +++ b/models/CerebrasGPT.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: CerebrasGPT + version: 13B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: '' + producer: Cerebras + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' diff --git a/models/ChatGLM.yml b/models/ChatGLM.yml new file mode 100644 index 0000000..fc3d891 --- /dev/null +++ b/models/ChatGLM.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: ChatGLM + version: 6B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: '' + producer: 'Tsinghua University' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'ChatGLM-6B License' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/ChatGLM2.yml b/models/ChatGLM2.yml new file mode 100644 index 0000000..b7cd726 --- /dev/null +++ b/models/ChatGLM2.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: ChatGLM2 + version: 6B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: ChatGLM3-6B-Base + producer: 'Tsinghua University' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'ChatGLM2-6B License' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/ChatGLM3.yml b/models/ChatGLM3.yml new file mode 100644 index 0000000..1cc9b29 --- /dev/null +++ b/models/ChatGLM3.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: ChatGLM3 + version: 6B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: ChatGLM3-6B-Base + producer: 'Tsinghua University' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'ChatGLM3-6B License' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/Chinchilla.yml b/models/Chinchilla.yml new file mode 100644 index 0000000..4b11a27 --- /dev/null +++ b/models/Chinchilla.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Chinchilla + version: 70B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: '' + producer: DeepMind + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' diff --git a/models/Claude-1.yml b/models/Claude-1.yml new file mode 100644 index 0000000..f979a1f --- /dev/null +++ b/models/Claude-1.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Claude-1 + version: Undisclosed + date: '2024-10-03' + type: language + architecture: undisclosed + origin: '' + producer: Anthropic + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'MIT license' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: MIT + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/Claude-2.yml b/models/Claude-2.yml new file mode 100644 index 0000000..acdf111 --- /dev/null +++ b/models/Claude-2.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Claude-2 + version: Undisclosed + date: '2024-10-03' + type: language + architecture: undisclosed + origin: Claude-1 + producer: Anthropic + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'MIT license' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: MIT + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/CodeFuse.yml b/models/CodeFuse.yml new file mode 100644 index 0000000..cfc95ae --- /dev/null +++ b/models/CodeFuse.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: CodeFuse + version: 13B + date: '2024-10-03' + type: code + architecture: 'transformer decoder' + origin: '' + producer: 'Ant Group' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'CodeFuse COMMUNITY LICENSE ' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' diff --git a/models/CodeGemma-2B.yml b/models/CodeGemma-2B.yml new file mode 100644 index 0000000..17874a6 --- /dev/null +++ b/models/CodeGemma-2B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: CodeGemma-2B + version: 2B + date: '2024-10-03' + type: code + architecture: 'transformer decoder' + origin: Gemma + producer: Google + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Gemma + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: gemma + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: gemma + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/CodeGemma-7B-Instruct.yml b/models/CodeGemma-7B-Instruct.yml new file mode 100644 index 0000000..ff56cd6 --- /dev/null +++ b/models/CodeGemma-7B-Instruct.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: CodeGemma-7B-Instruct + version: 7B + date: '2024-10-03' + type: code + architecture: 'transformer decoder' + origin: Gemma + producer: Google + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Gemma + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: gemma + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: gemma + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/CodeGemma-7B.yml b/models/CodeGemma-7B.yml new file mode 100644 index 0000000..f527cf3 --- /dev/null +++ b/models/CodeGemma-7B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: CodeGemma-7B + version: 7B + date: '2024-10-03' + type: code + architecture: 'transformer decoder' + origin: Gemma + producer: Google + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Gemma + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: gemma + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: gemma + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/CodeGen.yml b/models/CodeGen.yml new file mode 100644 index 0000000..9d64071 --- /dev/null +++ b/models/CodeGen.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: CodeGen + version: 16B + date: '2024-10-03' + type: code + architecture: 'transformer decoder' + origin: '' + producer: Salesforce + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: BSD + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/CodeGen2.yml b/models/CodeGen2.yml new file mode 100644 index 0000000..2ec15d6 --- /dev/null +++ b/models/CodeGen2.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: CodeGen2 + version: 16B + date: '2024-10-03' + type: code + architecture: 'transformer decoder' + origin: '' + producer: Salesforce + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/CodeT5+-16B.yml b/models/CodeT5+-16B.yml new file mode 100644 index 0000000..e35b032 --- /dev/null +++ b/models/CodeT5+-16B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: CodeT5+-16B + version: 16B + date: '2024-10-03' + type: code + architecture: 'transformer encoder-decoder' + origin: '' + producer: Salesforce + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: BSD-3 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: BSD-3 + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: BSD-3 + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'datasets with "mit" “apache-2”, “bsd-3-clause”, “bsd-2-clause”, “cc0-1.0”, “unlicense”, “isc”' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/CodeT5+-220M.yml b/models/CodeT5+-220M.yml new file mode 100644 index 0000000..b7b5ce0 --- /dev/null +++ b/models/CodeT5+-220M.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: CodeT5+-220M + version: 220M + date: '2024-10-03' + type: code + architecture: 'transformer encoder-decoder' + origin: '' + producer: Salesforce + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: BSD-3 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: BSD-3 + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: BSD-3 + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'datasets with "mit" “apache-2”, “bsd-3-clause”, “bsd-2-clause”, “cc0-1.0”, “unlicense”, “isc”' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/CodeT5+-2B.yml b/models/CodeT5+-2B.yml new file mode 100644 index 0000000..55915b0 --- /dev/null +++ b/models/CodeT5+-2B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: CodeT5+-2B + version: 2B + date: '2024-10-03' + type: code + architecture: 'transformer encoder-decoder' + origin: '' + producer: Salesforce + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: BSD-3 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: BSD-3 + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: BSD-3 + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'datasets with "mit" “apache-2”, “bsd-3-clause”, “bsd-2-clause”, “cc0-1.0”, “unlicense”, “isc”' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/CodeT5+-6B.yml b/models/CodeT5+-6B.yml new file mode 100644 index 0000000..c085000 --- /dev/null +++ b/models/CodeT5+-6B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: CodeT5+-6B + version: 6B + date: '2024-10-03' + type: code + architecture: 'transformer encoder-decoder' + origin: '' + producer: Salesforce + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: BSD-3 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: BSD-3 + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: BSD-3 + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'datasets with "mit" “apache-2”, “bsd-3-clause”, “bsd-2-clause”, “cc0-1.0”, “unlicense”, “isc”' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/CodeT5+-770M.yml b/models/CodeT5+-770M.yml new file mode 100644 index 0000000..ed3f912 --- /dev/null +++ b/models/CodeT5+-770M.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: CodeT5+-770M + version: 770M + date: '2024-10-03' + type: code + architecture: 'transformer encoder-decoder' + origin: '' + producer: Salesforce + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: BSD-3 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: BSD-3 + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: BSD-3 + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'datasets with "mit" “apache-2”, “bsd-3-clause”, “bsd-2-clause”, “cc0-1.0”, “unlicense”, “isc”' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/CodeT5.yml b/models/CodeT5.yml new file mode 100644 index 0000000..d493719 --- /dev/null +++ b/models/CodeT5.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: CodeT5 + version: 16B + date: '2024-10-03' + type: code + architecture: 'transformer encoder-decoder' + origin: '' + producer: Salesforce + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: BSD-3 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: BSD-3 + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: BSD-3 + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/Codegen2.5.yml b/models/Codegen2.5.yml new file mode 100644 index 0000000..a406331 --- /dev/null +++ b/models/Codegen2.5.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Codegen2.5 + version: 7B + date: '2024-10-03' + type: code + architecture: 'transformer decoder' + origin: '' + producer: Salesforce + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: BSD-3 + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: BSD-3 + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License only specified in original dataset starcoderdata' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/Codex.yml b/models/Codex.yml new file mode 100644 index 0000000..5ff0cc7 --- /dev/null +++ b/models/Codex.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Codex + version: Undisclosed + date: '2024-10-03' + type: code + architecture: 'transformer decoder' + origin: '' + producer: OpenAI + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' diff --git a/models/Command-R+.yml b/models/Command-R+.yml new file mode 100644 index 0000000..8deefe4 --- /dev/null +++ b/models/Command-R+.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Command-R+ + version: 104B + date: '2024-10-03' + type: language + architecture: undisclosed + origin: '' + producer: Cohere + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: CC-BY-NC-4.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/Command-R.yml b/models/Command-R.yml new file mode 100644 index 0000000..7df3f67 --- /dev/null +++ b/models/Command-R.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Command-R + version: 35B + date: '2024-10-03' + type: language + architecture: undisclosed + origin: '' + producer: Cohere + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: CC-BY-NC-4.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' diff --git a/models/CrystalChat.yml b/models/CrystalChat.yml new file mode 100644 index 0000000..aeabee9 --- /dev/null +++ b/models/CrystalChat.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: CrystalChat + version: 7B + date: '2024-10-03' + type: language + architecture: decoder + origin: Crystal + producer: LLM360 + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/CrystalCoder.yml b/models/CrystalCoder.yml new file mode 100644 index 0000000..6c88a8d --- /dev/null +++ b/models/CrystalCoder.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: CrystalCoder + version: 7B + date: '2024-10-03' + type: code + architecture: decoder + origin: Crystal + producer: LLM360 + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/DeBERTa.yml b/models/DeBERTa.yml new file mode 100644 index 0000000..5cf4096 --- /dev/null +++ b/models/DeBERTa.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: DeBERTa + version: 1.5B + date: '2024-10-03' + type: language + architecture: encoder + origin: '' + producer: Microsoft + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'MIT license' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: MIT + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/DeciCoder.yml b/models/DeciCoder.yml new file mode 100644 index 0000000..e25b3ed --- /dev/null +++ b/models/DeciCoder.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: DeciCoder + version: 1B + date: '2024-10-03' + type: language + architecture: decoder + origin: '' + producer: Deci + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/DeepSeek-Coder.yml b/models/DeepSeek-Coder.yml new file mode 100644 index 0000000..f18d43a --- /dev/null +++ b/models/DeepSeek-Coder.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: DeepSeek-Coder + version: 33B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: '' + producer: DeepSeek + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'MIT license' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/DeepSeek-MoE-145B.yml b/models/DeepSeek-MoE-145B.yml new file mode 100644 index 0000000..6ef72f9 --- /dev/null +++ b/models/DeepSeek-MoE-145B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: DeepSeek-MoE-145B + version: 145B + date: '2024-10-03' + type: language + architecture: '' + origin: DeepSeek-MoE-16B + producer: 'DeepSeek AI' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/DeepSeek-MoE-16B.yml b/models/DeepSeek-MoE-16B.yml new file mode 100644 index 0000000..5f81210 --- /dev/null +++ b/models/DeepSeek-MoE-16B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: DeepSeek-MoE-16B + version: 16.4B + date: '2024-10-03' + type: language + architecture: '' + origin: '' + producer: 'DeepSeek AI' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'MIT license' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/Dou-Bao.yml b/models/Dou-Bao.yml new file mode 100644 index 0000000..cada7dd --- /dev/null +++ b/models/Dou-Bao.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Dou-Bao + version: Undisclosed + date: '2024-10-03' + type: language + architecture: undisclosed + origin: '' + producer: ByteDance + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Undisclosed + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: Undisclosed + license_path: '' diff --git a/models/ERNIE-3.0-Titan.yml b/models/ERNIE-3.0-Titan.yml new file mode 100644 index 0000000..f24fcb5 --- /dev/null +++ b/models/ERNIE-3.0-Titan.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: ERNIE-3.0-Titan + version: 10B + date: '2024-10-03' + type: language + architecture: '' + origin: '' + producer: Baidu + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Undisclosed + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: Undisclosed + license_path: '' diff --git a/models/ERNIE-3.0.yml b/models/ERNIE-3.0.yml new file mode 100644 index 0000000..a27d03b --- /dev/null +++ b/models/ERNIE-3.0.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: ERNIE-3.0 + version: 260B + date: '2024-10-03' + type: language + architecture: '' + origin: '' + producer: Baidu + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Undisclosed + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: Undisclosed + license_path: '' diff --git a/models/Eagle.yml b/models/Eagle.yml new file mode 100644 index 0000000..4097153 --- /dev/null +++ b/models/Eagle.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Eagle + version: 3B + date: '2024-10-03' + type: language + architecture: RNN + origin: '' + producer: 'EleutherAI and LF AI and Data' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Exaone.yml b/models/Exaone.yml new file mode 100644 index 0000000..de1a9bf --- /dev/null +++ b/models/Exaone.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Exaone + version: 300B + date: '2024-10-03' + type: language + architecture: undisclosed + origin: '' + producer: LG + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Undisclosed + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: Undisclosed + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: Undisclosed + license_path: '' diff --git a/models/FLM-101B.yml b/models/FLM-101B.yml new file mode 100644 index 0000000..4721809 --- /dev/null +++ b/models/FLM-101B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: FLM-101B + version: 101B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: '' + producer: 'Multilateral, lead by BAAI' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Apache 2.0' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Apache 2.0' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/FORGE.yml b/models/FORGE.yml new file mode 100644 index 0000000..daf74a0 --- /dev/null +++ b/models/FORGE.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: FORGE + version: 26B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: '' + producer: 'Oak Ridge National Lab' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component Not Included but listed sources' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/FairSeq-Dense.yml b/models/FairSeq-Dense.yml new file mode 100644 index 0000000..5d2f3c8 --- /dev/null +++ b/models/FairSeq-Dense.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: FairSeq-Dense + version: 13B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: '' + producer: Meta + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: MIT + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: MIT + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: MIT + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: MIT + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: MIT + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/Falcon-180B.yml b/models/Falcon-180B.yml new file mode 100644 index 0000000..1bf83a9 --- /dev/null +++ b/models/Falcon-180B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Falcon-180B + version: 180B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: 'GPT-3, some differences' + producer: 'Technology Innovation Institute, LightOn' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Falcon-180B TII License' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Falcon-180B TII License' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' diff --git a/models/Falcon-40B.yml b/models/Falcon-40B.yml new file mode 100644 index 0000000..63e9d3f --- /dev/null +++ b/models/Falcon-40B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Falcon-40B + version: 40B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: 'GPT-3, some differences' + producer: 'Technology Innovation Institute, LightOn' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Apache 2.0' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Apache 2.0' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' diff --git a/models/GLM-130B.yml b/models/GLM-130B.yml new file mode 100644 index 0000000..9df10cf --- /dev/null +++ b/models/GLM-130B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: GLM-130B + version: 130B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: '' + producer: 'Tsinghua University' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Apache 2.0' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Apache 2.0' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Apache 2.0' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'GLM-130B License ??' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Apache 2.0' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Apache 2.0' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/GLaM.yml b/models/GLaM.yml new file mode 100644 index 0000000..4f17c95 --- /dev/null +++ b/models/GLaM.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: GLaM + version: 1.2T + date: '2024-10-03' + type: language + architecture: '' + origin: '' + producer: Google + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/GPT-2.yml b/models/GPT-2.yml new file mode 100644 index 0000000..9d0ed68 --- /dev/null +++ b/models/GPT-2.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: GPT-2 + version: 1.5B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: '' + producer: OpenAI + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Component not included' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component Component not included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' diff --git a/models/GPT-3-Finnish.yml b/models/GPT-3-Finnish.yml new file mode 100644 index 0000000..249345b --- /dev/null +++ b/models/GPT-3-Finnish.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: GPT-3-Finnish + version: 13B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: GPT + producer: 'University of Turku' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Bloom + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Component not included' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component Component not included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' diff --git a/models/GPT-3.5.yml b/models/GPT-3.5.yml new file mode 100644 index 0000000..04c439a --- /dev/null +++ b/models/GPT-3.5.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: GPT-3.5 + version: Undisclosed + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: '' + producer: OpenAI + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Proprietary + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Component not included' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Proprietary + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component Component not included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: Proprietary + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' diff --git a/models/GPT-3.yml b/models/GPT-3.yml new file mode 100644 index 0000000..90283f4 --- /dev/null +++ b/models/GPT-3.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: GPT-3 + version: 175B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: '' + producer: OpenAI + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Proprietary + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Component not included' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Proprietary + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component Component not included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: Proprietary + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' diff --git a/models/GPT-4.yml b/models/GPT-4.yml new file mode 100644 index 0000000..4eaaab3 --- /dev/null +++ b/models/GPT-4.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: GPT-4 + version: Undisclosed + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: '' + producer: OpenAI + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Proprietary + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Component not included' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Proprietary + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component Component not included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: Proprietary + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' diff --git a/models/GPT-4o.yml b/models/GPT-4o.yml new file mode 100644 index 0000000..25d7c7e --- /dev/null +++ b/models/GPT-4o.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: GPT-4o + version: Undisclosed + date: '2024-10-03' + type: language + architecture: undisclosed + origin: '' + producer: OpenAI + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Proprietary + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Component not included' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Proprietary + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component Component not included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: Proprietary + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' diff --git a/models/GPT-J.yml b/models/GPT-J.yml new file mode 100644 index 0000000..d33bd93 --- /dev/null +++ b/models/GPT-J.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: GPT-J + version: 6B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: GPT + producer: EleutherAI + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' diff --git a/models/GPT-Neo.yml b/models/GPT-Neo.yml new file mode 100644 index 0000000..f2cb974 --- /dev/null +++ b/models/GPT-Neo.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: GPT-Neo + version: 2.7B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: GPT + producer: EleutherAI + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' diff --git a/models/GPT-NeoX-20B.yml b/models/GPT-NeoX-20B.yml new file mode 100644 index 0000000..c3c852a --- /dev/null +++ b/models/GPT-NeoX-20B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: GPT-NeoX-20B + version: 20B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: 'GPT Megatron' + producer: EleutherAI + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' diff --git a/models/GPT-SW3-40B.yml b/models/GPT-SW3-40B.yml new file mode 100644 index 0000000..2015e38 --- /dev/null +++ b/models/GPT-SW3-40B.yml @@ -0,0 +1,117 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: GPT-SW3-40B + version: 40B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: 'GPT Megatron' + producer: 'AI Sweden, RISE' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: "AI Sweden's LLM AI Model License Agreement" + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: | + AI Sweden's LLM AI Model License Agreement + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' diff --git a/models/GPT-SW3.yml b/models/GPT-SW3.yml new file mode 100644 index 0000000..7be13c3 --- /dev/null +++ b/models/GPT-SW3.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: GPT-SW3 + version: 3.5B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: '' + producer: 'AI Sweden' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Galactica.yml b/models/Galactica.yml new file mode 100644 index 0000000..db6a72f --- /dev/null +++ b/models/Galactica.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Galactica + version: 120B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: '' + producer: Meta + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Apache 2.0' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Apache 2.0' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/Gemini-1.5.yml b/models/Gemini-1.5.yml new file mode 100644 index 0000000..5482768 --- /dev/null +++ b/models/Gemini-1.5.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Gemini-1.5 + version: Undisclosed + date: '2024-10-03' + type: language + architecture: '' + origin: '' + producer: Google + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Apache 2.0' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/Gopher.yml b/models/Gopher.yml new file mode 100644 index 0000000..de58117 --- /dev/null +++ b/models/Gopher.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Gopher + version: 280B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: '' + producer: DeepMind + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/Granite-20B-Code-Instruct.yml b/models/Granite-20B-Code-Instruct.yml new file mode 100644 index 0000000..1d4a5d0 --- /dev/null +++ b/models/Granite-20B-Code-Instruct.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Granite-20B-Code-Instruct + version: 20B + date: '2024-10-03' + type: code + architecture: 'transformer decoder' + origin: Granite-20B-Code-Base + producer: IBM + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' diff --git a/models/Granite-34B-Code-Instruct.yml b/models/Granite-34B-Code-Instruct.yml new file mode 100644 index 0000000..7615992 --- /dev/null +++ b/models/Granite-34B-Code-Instruct.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Granite-34B-Code-Instruct + version: 34B + date: '2024-10-03' + type: code + architecture: 'transformer decoder' + origin: Granite-34B-Code-Base + producer: IBM + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' diff --git a/models/Granite-3B-Code-Instruct.yml b/models/Granite-3B-Code-Instruct.yml new file mode 100644 index 0000000..9360b39 --- /dev/null +++ b/models/Granite-3B-Code-Instruct.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Granite-3B-Code-Instruct + version: 3B + date: '2024-10-03' + type: code + architecture: 'transformer decoder' + origin: Granite-3B-Code-Base + producer: IBM + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' diff --git a/models/Granite-8B-Code-Instruct.yml b/models/Granite-8B-Code-Instruct.yml new file mode 100644 index 0000000..15159a8 --- /dev/null +++ b/models/Granite-8B-Code-Instruct.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Granite-8B-Code-Instruct + version: 8B + date: '2024-10-03' + type: code + architecture: 'transformer decoder' + origin: Granite-8B-Code-Base + producer: IBM + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' diff --git a/models/Griffin.yml b/models/Griffin.yml new file mode 100644 index 0000000..03458a2 --- /dev/null +++ b/models/Griffin.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Griffin + version: 14B + date: '2024-10-03' + type: language + architecture: '' + origin: '' + producer: '' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Grok-0.yml b/models/Grok-0.yml new file mode 100644 index 0000000..379891f --- /dev/null +++ b/models/Grok-0.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Grok-0 + version: 33B + date: '2024-10-03' + type: language + architecture: undisclosed + origin: '' + producer: xAI + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Grok-1.yml b/models/Grok-1.yml new file mode 100644 index 0000000..ca79c79 --- /dev/null +++ b/models/Grok-1.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Grok-1 + version: 314B + date: '2024-10-03' + type: language + architecture: undisclosed + origin: '' + producer: xAI + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/HGRN2.yml b/models/HGRN2.yml new file mode 100644 index 0000000..8d8dbd6 --- /dev/null +++ b/models/HGRN2.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: HGRN2 + version: 2.9B + date: '2024-10-03' + type: language + architecture: RNN + origin: '' + producer: 'Shanghai AI Lab' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/Hawk.yml b/models/Hawk.yml new file mode 100644 index 0000000..d01da4a --- /dev/null +++ b/models/Hawk.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Hawk + version: 7B + date: '2024-10-03' + type: language + architecture: RNN + origin: 'tinyllama-bnb-4bit model' + producer: '' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' diff --git a/models/HyperCLOVA.yml b/models/HyperCLOVA.yml new file mode 100644 index 0000000..3e2bfd8 --- /dev/null +++ b/models/HyperCLOVA.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: HyperCLOVA + version: 204B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: '' + producer: NAVER + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/InCoder-6B.yml b/models/InCoder-6B.yml new file mode 100644 index 0000000..b2f1a55 --- /dev/null +++ b/models/InCoder-6B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: InCoder-6B + version: 6B + date: '2024-10-03' + type: code + architecture: 'transformer decoder' + origin: '' + producer: Meta + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Creative Commons Attribution Non Commercial 4.0' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' diff --git a/models/Inflection-1.yml b/models/Inflection-1.yml new file mode 100644 index 0000000..540afb1 --- /dev/null +++ b/models/Inflection-1.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Inflection-1 + version: Undisclosed + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: '' + producer: Inflection + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' diff --git a/models/Inflection-2.yml b/models/Inflection-2.yml new file mode 100644 index 0000000..734407d --- /dev/null +++ b/models/Inflection-2.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Inflection-2 + version: Undisclosed + date: '2024-10-03' + type: language + architecture: undisclosed + origin: '' + producer: Inflection + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' diff --git a/models/InternLM.yml b/models/InternLM.yml new file mode 100644 index 0000000..58f2a3a --- /dev/null +++ b/models/InternLM.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: InternLM + version: 20B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: '' + producer: 'Shanghai AI Laboratory' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/Jais.yml b/models/Jais.yml new file mode 100644 index 0000000..3c1cb68 --- /dev/null +++ b/models/Jais.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Jais + version: 13B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: GPT-3 + producer: 'Technology Innovation Institute, LightOn' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/Jamba-v0.1.yml b/models/Jamba-v0.1.yml new file mode 100644 index 0000000..edf6f1e --- /dev/null +++ b/models/Jamba-v0.1.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Jamba-v0.1 + version: v0.1 + date: '2024-10-03' + type: language + architecture: '' + origin: Jamba + producer: 'AI21 Labs' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/Jamba.yml b/models/Jamba.yml new file mode 100644 index 0000000..5d8bbc9 --- /dev/null +++ b/models/Jamba.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Jamba + version: 2.8B + date: '2024-10-03' + type: language + architecture: '' + origin: '' + producer: AI21 + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Jiang.yml b/models/Jiang.yml new file mode 100644 index 0000000..e753b4e --- /dev/null +++ b/models/Jiang.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Jiang + version: 30B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: '' + producer: KDF + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Jurassic-1.yml b/models/Jurassic-1.yml new file mode 100644 index 0000000..cb317eb --- /dev/null +++ b/models/Jurassic-1.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Jurassic-1 + version: 178B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: '' + producer: 'AI21 Labs' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Jurassic-2.yml b/models/Jurassic-2.yml new file mode 100644 index 0000000..d3adc55 --- /dev/null +++ b/models/Jurassic-2.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Jurassic-2 + version: Undisclosed + date: '2024-10-03' + type: language + architecture: undisclosed + origin: '' + producer: AI21 + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/LaMDA.yml b/models/LaMDA.yml new file mode 100644 index 0000000..2b4edf6 --- /dev/null +++ b/models/LaMDA.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: LaMDA + version: 137B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: '' + producer: Google + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Llama-2-13B.yml b/models/Llama-2-13B.yml new file mode 100644 index 0000000..3261019 --- /dev/null +++ b/models/Llama-2-13B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Llama-2-13B + version: 13B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: '' + producer: Meta + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Llama 2 Community License' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Llama 2 Community License' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Llama-2-70B.yml b/models/Llama-2-70B.yml new file mode 100644 index 0000000..e5fbe2f --- /dev/null +++ b/models/Llama-2-70B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Llama-2-70B + version: 70B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: '' + producer: Meta + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Llama 2 Community License' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Llama 2 Community License' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Llama-2-7B.yml b/models/Llama-2-7B.yml new file mode 100644 index 0000000..4649173 --- /dev/null +++ b/models/Llama-2-7B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Llama-2-7B + version: 7B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: llama-2-7b + producer: Meta + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Llama 2 Community License' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Llama 2 Community License' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Llama-2-chat-13B.yml b/models/Llama-2-chat-13B.yml new file mode 100644 index 0000000..d8fe610 --- /dev/null +++ b/models/Llama-2-chat-13B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Llama-2-chat-13B + version: 13B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: '' + producer: Meta + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Llama 2 Community License' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Llama 2 Community License' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Llama-2-chat-70B.yml b/models/Llama-2-chat-70B.yml new file mode 100644 index 0000000..a6582a2 --- /dev/null +++ b/models/Llama-2-chat-70B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Llama-2-chat-70B + version: 70B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: '' + producer: Meta + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Llama 2 Community License' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Llama 2 Community License' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Llama-2-chat-7B.yml b/models/Llama-2-chat-7B.yml new file mode 100644 index 0000000..1fe16ae --- /dev/null +++ b/models/Llama-2-chat-7B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Llama-2-chat-7B + version: 7B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: '' + producer: Meta + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Llama 2 Community License' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Llama 2 Community License' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Llama-3-70B-Instruct.yml b/models/Llama-3-70B-Instruct.yml new file mode 100644 index 0000000..e9dc164 --- /dev/null +++ b/models/Llama-3-70B-Instruct.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Llama-3-70B-Instruct + version: 70B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: llama-3-70B + producer: Meta + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Llama 3 Community License' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Llama 3 Community License' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Llama-3-70B.yml b/models/Llama-3-70B.yml new file mode 100644 index 0000000..8c229d9 --- /dev/null +++ b/models/Llama-3-70B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Llama-3-70B + version: 70B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: llama-3-70B + producer: Meta + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Llama 3 Community License' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Llama 3 Community License' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Llama-3-8B-Instruct.yml b/models/Llama-3-8B-Instruct.yml new file mode 100644 index 0000000..34ac3c1 --- /dev/null +++ b/models/Llama-3-8B-Instruct.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Llama-3-8B-Instruct + version: 8B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: llama-3-8B + producer: Meta + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Llama 3 Community License' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Llama 3 Community License' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Llama-3-8B.yml b/models/Llama-3-8B.yml new file mode 100644 index 0000000..99328dc --- /dev/null +++ b/models/Llama-3-8B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Llama-3-8B + version: 8B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: llama-3-8B + producer: Meta + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Llama 3 Community License' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Llama 3 Community License' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Lyra-fr.yml b/models/Lyra-fr.yml new file mode 100644 index 0000000..5a715a0 --- /dev/null +++ b/models/Lyra-fr.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Lyra-fr + version: 10B + date: '2024-10-03' + type: '' + architecture: 'transformer decoder' + origin: '' + producer: LightOn + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/MPT-30B.yml b/models/MPT-30B.yml new file mode 100644 index 0000000..c0c83b6 --- /dev/null +++ b/models/MPT-30B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: MPT-30B + version: 30B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: MosaicML + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/MPT-7B.yml b/models/MPT-7B.yml new file mode 100644 index 0000000..c1198c1 --- /dev/null +++ b/models/MPT-7B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: MPT-7B + version: 6.7B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: MosaicML + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Mamba.yml b/models/Mamba.yml new file mode 100644 index 0000000..9fbcd9f --- /dev/null +++ b/models/Mamba.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Mamba + version: 2.8B + date: '2024-10-03' + type: '' + architecture: '' + origin: '' + producer: 'Carnegie Mellon University and Princeton' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Meena.yml b/models/Meena.yml new file mode 100644 index 0000000..1e97a11 --- /dev/null +++ b/models/Meena.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Meena + version: 2.6B + date: '2024-10-03' + type: '' + architecture: '' + origin: '' + producer: Google + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Megalogon.yml b/models/Megalogon.yml new file mode 100644 index 0000000..4e3dded --- /dev/null +++ b/models/Megalogon.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Megalogon + version: 7B + date: '2024-10-03' + type: '' + architecture: RNN + origin: '' + producer: 'USC, Meta, CMU, and UCSD' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Megatron-BERT.yml b/models/Megatron-BERT.yml new file mode 100644 index 0000000..2d46c0f --- /dev/null +++ b/models/Megatron-BERT.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Megatron-BERT + version: 3.9B + date: '2024-10-03' + type: '' + architecture: encoder + origin: '' + producer: NVIDIA + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Megatron-LM.yml b/models/Megatron-LM.yml new file mode 100644 index 0000000..1ea6629 --- /dev/null +++ b/models/Megatron-LM.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Megatron-LM + version: 8.3B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: NVIDIA + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Megatron-Turing.yml b/models/Megatron-Turing.yml new file mode 100644 index 0000000..b93861d --- /dev/null +++ b/models/Megatron-Turing.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Megatron-Turing + version: 530B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: 'Microsoft, NVIDIA' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Mistral-7B-Instruct-v0.1.yml b/models/Mistral-7B-Instruct-v0.1.yml new file mode 100644 index 0000000..70a9ae1 --- /dev/null +++ b/models/Mistral-7B-Instruct-v0.1.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Mistral-7B-Instruct-v0.1 + version: 7B + date: '2024-10-03' + type: language + architecture: decoder + origin: Mistral + producer: Mistral + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Mistral-7B-Instruct-v0.2.yml b/models/Mistral-7B-Instruct-v0.2.yml new file mode 100644 index 0000000..b0ac17b --- /dev/null +++ b/models/Mistral-7B-Instruct-v0.2.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Mistral-7B-Instruct-v0.2 + version: 7B + date: '2024-10-03' + type: language + architecture: decoder + origin: Mistral + producer: Mistral + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Mistral-7B-v0.1.yml b/models/Mistral-7B-v0.1.yml new file mode 100644 index 0000000..fdae696 --- /dev/null +++ b/models/Mistral-7B-v0.1.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Mistral-7B-v0.1 + version: 7B + date: '2024-10-03' + type: '' + architecture: decoder + origin: Mistral + producer: Mistral + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Mixtral-8x22B-Instruct-v0.1.yml b/models/Mixtral-8x22B-Instruct-v0.1.yml new file mode 100644 index 0000000..c2f7814 --- /dev/null +++ b/models/Mixtral-8x22B-Instruct-v0.1.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Mixtral-8x22B-Instruct-v0.1 + version: 22B + date: '2024-10-03' + type: language + architecture: decoder + origin: Mistral + producer: Mistral + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Mixtral-8x22B-v0.1.yml b/models/Mixtral-8x22B-v0.1.yml new file mode 100644 index 0000000..ce9518f --- /dev/null +++ b/models/Mixtral-8x22B-v0.1.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Mixtral-8x22B-v0.1 + version: 22B + date: '2024-10-03' + type: language + architecture: decoder + origin: Mistral + producer: Mistral + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Mixtral-8x7B-Instruct-v0.1.yml b/models/Mixtral-8x7B-Instruct-v0.1.yml new file mode 100644 index 0000000..a7a7b51 --- /dev/null +++ b/models/Mixtral-8x7B-Instruct-v0.1.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Mixtral-8x7B-Instruct-v0.1 + version: 7B + date: '2024-10-03' + type: language + architecture: decoder + origin: Mistral + producer: Mistral + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Mixtral-8x7B-v0.1.yml b/models/Mixtral-8x7B-v0.1.yml new file mode 100644 index 0000000..27dbb9c --- /dev/null +++ b/models/Mixtral-8x7B-v0.1.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Mixtral-8x7B-v0.1 + version: 7B + date: '2024-10-03' + type: language + architecture: decoder + origin: Mistral + producer: Mistral + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/NOOR.yml b/models/NOOR.yml new file mode 100644 index 0000000..82136d9 --- /dev/null +++ b/models/NOOR.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: NOOR + version: 13B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: 'Technology Innovation Institute, LightOn' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/NTT-Dialog.yml b/models/NTT-Dialog.yml new file mode 100644 index 0000000..8276bc7 --- /dev/null +++ b/models/NTT-Dialog.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: NTT-Dialog + version: 1.6B + date: '2024-10-03' + type: '' + architecture: '' + origin: '' + producer: NTT + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/NeMo-Megatron.yml b/models/NeMo-Megatron.yml new file mode 100644 index 0000000..4140a2e --- /dev/null +++ b/models/NeMo-Megatron.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: NeMo-Megatron + version: 20B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: NVIDIA + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Nemotron-4.yml b/models/Nemotron-4.yml new file mode 100644 index 0000000..3980e88 --- /dev/null +++ b/models/Nemotron-4.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Nemotron-4 + version: 15B + date: '2024-10-03' + type: '' + architecture: '' + origin: '' + producer: NVIDIA + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/OLMO-7B.yml b/models/OLMO-7B.yml new file mode 100644 index 0000000..6cf8ba1 --- /dev/null +++ b/models/OLMO-7B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: OLMO-7B + version: 7B + date: '2024-10-03' + type: language + architecture: transformer + origin: oLMO + producer: 'Allen Institute' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' diff --git a/models/OPT.yml b/models/OPT.yml new file mode 100644 index 0000000..6ae1e33 --- /dev/null +++ b/models/OPT.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: OPT + version: 175B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: Meta + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/OpenBMB.yml b/models/OpenBMB.yml new file mode 100644 index 0000000..756289e --- /dev/null +++ b/models/OpenBMB.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: OpenBMB + version: '' + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: '' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/OpenCALM.yml b/models/OpenCALM.yml new file mode 100644 index 0000000..fb79d68 --- /dev/null +++ b/models/OpenCALM.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: OpenCALM + version: 7B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: CyberAgent + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/OpenELM-1_1B-Instruct.yml b/models/OpenELM-1_1B-Instruct.yml new file mode 100644 index 0000000..412ba19 --- /dev/null +++ b/models/OpenELM-1_1B-Instruct.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: OpenELM-1_1B-Instruct + version: 1_1B + date: '2024-10-03' + type: language + architecture: transformer + origin: OpenELM-1_1B + producer: Apple + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: apple-sample-code-license + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: apple-sample-code-license + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' diff --git a/models/OpenELM-1_1B.yml b/models/OpenELM-1_1B.yml new file mode 100644 index 0000000..f4548ff --- /dev/null +++ b/models/OpenELM-1_1B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: OpenELM-1_1B + version: 1_1B + date: '2024-10-03' + type: language + architecture: transformer + origin: OpenELM-1_1B + producer: Apple + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: apple-sample-code-license + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: apple-sample-code-license + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' diff --git a/models/OpenELM-270M-Instruct.yml b/models/OpenELM-270M-Instruct.yml new file mode 100644 index 0000000..6b1d6d2 --- /dev/null +++ b/models/OpenELM-270M-Instruct.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: OpenELM-270M-Instruct + version: 270M + date: '2024-10-03' + type: language + architecture: transformer + origin: OpenELM-270M + producer: Apple + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: apple-sample-code-license + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: apple-sample-code-license + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' diff --git a/models/OpenELM-270M.yml b/models/OpenELM-270M.yml new file mode 100644 index 0000000..6362d9e --- /dev/null +++ b/models/OpenELM-270M.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: OpenELM-270M + version: 270M + date: '2024-10-03' + type: language + architecture: transformer + origin: OpenELM-270M + producer: Apple + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: apple-sample-code-license + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: apple-sample-code-license + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' diff --git a/models/OpenELM-3B-Instruct.yml b/models/OpenELM-3B-Instruct.yml new file mode 100644 index 0000000..e659609 --- /dev/null +++ b/models/OpenELM-3B-Instruct.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: OpenELM-3B-Instruct + version: 3B + date: '2024-10-03' + type: language + architecture: transformer + origin: OpenELM-3B + producer: Apple + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: apple-sample-code-license + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: apple-sample-code-license + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' diff --git a/models/OpenELM-3B.yml b/models/OpenELM-3B.yml new file mode 100644 index 0000000..6284762 --- /dev/null +++ b/models/OpenELM-3B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: OpenELM-3B + version: 3B + date: '2024-10-03' + type: language + architecture: transformer + origin: OpenELM-3B + producer: Apple + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: apple-sample-code-license + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: apple-sample-code-license + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' diff --git a/models/OpenELM-450M-Instruct.yml b/models/OpenELM-450M-Instruct.yml new file mode 100644 index 0000000..34516cd --- /dev/null +++ b/models/OpenELM-450M-Instruct.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: OpenELM-450M-Instruct + version: 450M + date: '2024-10-03' + type: language + architecture: transformer + origin: OpenELM-450M + producer: Apple + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: apple-sample-code-license + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: apple-sample-code-license + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' diff --git a/models/OpenELM-450M.yml b/models/OpenELM-450M.yml new file mode 100644 index 0000000..6f30f26 --- /dev/null +++ b/models/OpenELM-450M.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: OpenELM-450M + version: 450M + date: '2024-10-03' + type: language + architecture: transformer + origin: OpenELM-450M + producer: Apple + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: apple-sample-code-license + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: apple-sample-code-license + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' diff --git a/models/OpenLLaMA-3Bv2.yml b/models/OpenLLaMA-3Bv2.yml new file mode 100644 index 0000000..fe96f4f --- /dev/null +++ b/models/OpenLLaMA-3Bv2.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: OpenLLaMA-3Bv2 + version: 3B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: 'UC Berkeley' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/OpenLLaMA-7Bv2.yml b/models/OpenLLaMA-7Bv2.yml new file mode 100644 index 0000000..9f0224a --- /dev/null +++ b/models/OpenLLaMA-7Bv2.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: OpenLLaMA-7Bv2 + version: 7B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: 'UC Berkeley' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/OpenLLaMA.yml b/models/OpenLLaMA.yml new file mode 100644 index 0000000..d38eae6 --- /dev/null +++ b/models/OpenLLaMA.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: OpenLLaMA + version: 3B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: 'UC Berkeley' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/OpenVoice.yml b/models/OpenVoice.yml new file mode 100644 index 0000000..92c7f79 --- /dev/null +++ b/models/OpenVoice.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: OpenVoice + version: '' + date: '2024-10-03' + type: '' + architecture: '' + origin: OpenVoice + producer: MyShell + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: MIT + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: MIT + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/PAGnol.yml b/models/PAGnol.yml new file mode 100644 index 0000000..0468dc9 --- /dev/null +++ b/models/PAGnol.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: PAGnol + version: 1.5B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: LightOn + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/PULI-GPTrio.yml b/models/PULI-GPTrio.yml new file mode 100644 index 0000000..d945f53 --- /dev/null +++ b/models/PULI-GPTrio.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: PULI-GPTrio + version: 7.7B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: 'Hungarian Research Centre for Linguistics' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/PaLM-2.yml b/models/PaLM-2.yml new file mode 100644 index 0000000..fe7a06a --- /dev/null +++ b/models/PaLM-2.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: PaLM-2 + version: Undisclosed + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: Google + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/PaLM.yml b/models/PaLM.yml new file mode 100644 index 0000000..bf73d8f --- /dev/null +++ b/models/PaLM.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: PaLM + version: 540B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: Google + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Palmyra.yml b/models/Palmyra.yml new file mode 100644 index 0000000..3b98f23 --- /dev/null +++ b/models/Palmyra.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Palmyra + version: 20B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: Writer + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/PanGu-a.yml b/models/PanGu-a.yml new file mode 100644 index 0000000..960ff79 --- /dev/null +++ b/models/PanGu-a.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: PanGu-α + version: 200B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: Huawei + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Persimmon-8B.yml b/models/Persimmon-8B.yml new file mode 100644 index 0000000..2e58e06 --- /dev/null +++ b/models/Persimmon-8B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Persimmon-8B + version: 8B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: 'Adept AI' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Phi-1.5.yml b/models/Phi-1.5.yml new file mode 100644 index 0000000..34504d0 --- /dev/null +++ b/models/Phi-1.5.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Phi-1.5 + version: 1.3B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: Microsoft + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Phi-1.yml b/models/Phi-1.yml new file mode 100644 index 0000000..939c6f7 --- /dev/null +++ b/models/Phi-1.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Phi-1 + version: 1.3B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: Microsoft + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Phi-2.yml b/models/Phi-2.yml new file mode 100644 index 0000000..bcad15f --- /dev/null +++ b/models/Phi-2.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Phi-2 + version: 2.7B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: Microsoft + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Plato-2.yml b/models/Plato-2.yml new file mode 100644 index 0000000..ce31bae --- /dev/null +++ b/models/Plato-2.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Plato-2 + version: 1.6B + date: '2024-10-03' + type: '' + architecture: '' + origin: '' + producer: Baidu + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Plato-XL.yml b/models/Plato-XL.yml new file mode 100644 index 0000000..eeb9386 --- /dev/null +++ b/models/Plato-XL.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Plato-XL + version: 11B + date: '2024-10-03' + type: '' + architecture: '' + origin: '' + producer: Baidu + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/PolyCoder.yml b/models/PolyCoder.yml new file mode 100644 index 0000000..d6cbfd7 --- /dev/null +++ b/models/PolyCoder.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: PolyCoder + version: 2.7B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: 'Carnegie Mellon University' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Polyglot-Ko.yml b/models/Polyglot-Ko.yml new file mode 100644 index 0000000..34c668c --- /dev/null +++ b/models/Polyglot-Ko.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Polyglot-Ko + version: 12.8B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: EleutherAI + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Qwen-14B.yml b/models/Qwen-14B.yml new file mode 100644 index 0000000..f7d6712 --- /dev/null +++ b/models/Qwen-14B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Qwen-14B + version: 14B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: Alibaba + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Qwen-72B.yml b/models/Qwen-72B.yml new file mode 100644 index 0000000..e740c96 --- /dev/null +++ b/models/Qwen-72B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Qwen-72B + version: 72B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: Alibaba + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Qwen1.5-32B.yml b/models/Qwen1.5-32B.yml new file mode 100644 index 0000000..f787356 --- /dev/null +++ b/models/Qwen1.5-32B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Qwen1.5-32B + version: 32B + date: '2024-10-03' + type: language + architecture: decoder + origin: '' + producer: Alibaba + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Qwen1.5-72B-Chat.yml b/models/Qwen1.5-72B-Chat.yml new file mode 100644 index 0000000..f53ea7d --- /dev/null +++ b/models/Qwen1.5-72B-Chat.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Qwen1.5-72B-Chat + version: 72B + date: '2024-10-03' + type: language + architecture: decoder + origin: '' + producer: Alibaba + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Qwen1.5-7B.yml b/models/Qwen1.5-7B.yml new file mode 100644 index 0000000..7733862 --- /dev/null +++ b/models/Qwen1.5-7B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Qwen1.5-7B + version: 14B + date: '2024-10-03' + type: language + architecture: decoder + origin: '' + producer: Alibaba + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Qwen1.5-MoE-A2.7B.yml b/models/Qwen1.5-MoE-A2.7B.yml new file mode 100644 index 0000000..b978c15 --- /dev/null +++ b/models/Qwen1.5-MoE-A2.7B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Qwen1.5-MoE-A2.7B + version: 7B + date: '2024-10-03' + type: '' + architecture: '' + origin: '' + producer: Alibaba + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/RWKV-v4-(Raven).yml b/models/RWKV-v4-(Raven).yml new file mode 100644 index 0000000..f404183 --- /dev/null +++ b/models/RWKV-v4-(Raven).yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: RWKV-v4-(Raven) + version: 14B + date: '2024-10-03' + type: '' + architecture: RNN + origin: '' + producer: RWKV + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' diff --git a/models/RWKV-v4-World.yml b/models/RWKV-v4-World.yml new file mode 100644 index 0000000..1f01c77 --- /dev/null +++ b/models/RWKV-v4-World.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: RWKV-v4-World + version: 7B + date: '2024-10-03' + type: '' + architecture: RNN + origin: '' + producer: RWKV + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' diff --git a/models/RWKV-v5.yml b/models/RWKV-v5.yml new file mode 100644 index 0000000..693e775 --- /dev/null +++ b/models/RWKV-v5.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: RWKV-v5 + version: 3B + date: '2024-10-03' + type: '' + architecture: RNN + origin: '' + producer: RWKV + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' diff --git a/models/RecurrentGemma.yml b/models/RecurrentGemma.yml new file mode 100644 index 0000000..c184ab2 --- /dev/null +++ b/models/RecurrentGemma.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: RecurrentGemma + version: '' + date: '2024-10-03' + type: '' + architecture: '' + origin: '' + producer: '' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/RedPajamas-INCITE.yml b/models/RedPajamas-INCITE.yml new file mode 100644 index 0000000..bba6d47 --- /dev/null +++ b/models/RedPajamas-INCITE.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: RedPajamas-INCITE + version: 7B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: TogetherAI + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/SEA-LION.yml b/models/SEA-LION.yml new file mode 100644 index 0000000..4663389 --- /dev/null +++ b/models/SEA-LION.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: SEA-LION + version: 7B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: 'AI Singapore' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/SHAI.yml b/models/SHAI.yml new file mode 100644 index 0000000..fb76004 --- /dev/null +++ b/models/SHAI.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: SHAI + version: 14B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: 'China Asset Management Co.' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/SantaCoder.yml b/models/SantaCoder.yml new file mode 100644 index 0000000..2a3baa9 --- /dev/null +++ b/models/SantaCoder.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: SantaCoder + version: 1.1B + date: '2024-10-03' + type: '' + architecture: '' + origin: '' + producer: 'BigCode Project' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Silo.yml b/models/Silo.yml new file mode 100644 index 0000000..5fe7d46 --- /dev/null +++ b/models/Silo.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Silo + version: 1.3B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: 'University of Washington' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Skywork.yml b/models/Skywork.yml new file mode 100644 index 0000000..cd9c021 --- /dev/null +++ b/models/Skywork.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Skywork + version: 13B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: Kunlun + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Stable-Diffusion-v1-3.yml b/models/Stable-Diffusion-v1-3.yml new file mode 100644 index 0000000..391c092 --- /dev/null +++ b/models/Stable-Diffusion-v1-3.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Stable-Diffusion-v1-3 + version: v1.3 + date: '2024-10-03' + type: '' + architecture: diffusion + origin: '' + producer: 'Stability AI' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: OpenRAIL + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: OpenRAIL + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' diff --git a/models/Stable-Diffusion-v1.1.yml b/models/Stable-Diffusion-v1.1.yml new file mode 100644 index 0000000..10e7112 --- /dev/null +++ b/models/Stable-Diffusion-v1.1.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Stable-Diffusion-v1.1 + version: v1.1 + date: '2024-10-03' + type: '' + architecture: diffusion + origin: '' + producer: 'Stability AI' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: OpenRAIL + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: OpenRAIL + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' diff --git a/models/Stable-Diffusion-v1.2.yml b/models/Stable-Diffusion-v1.2.yml new file mode 100644 index 0000000..6406f4e --- /dev/null +++ b/models/Stable-Diffusion-v1.2.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Stable-Diffusion-v1.2 + version: v1.2 + date: '2024-10-03' + type: '' + architecture: diffusion + origin: '' + producer: 'Stability AI' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: OpenRAIL + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: OpenRAIL + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' diff --git a/models/Stable-Diffusion.yml b/models/Stable-Diffusion.yml new file mode 100644 index 0000000..2c8aca4 --- /dev/null +++ b/models/Stable-Diffusion.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Stable-Diffusion + version: '' + date: '2024-10-03' + type: '' + architecture: diffusion + origin: '' + producer: 'Stability AI' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: OpenRAIL + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: OpenRAIL + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' diff --git a/models/StableLM-2.yml b/models/StableLM-2.yml new file mode 100644 index 0000000..cffed61 --- /dev/null +++ b/models/StableLM-2.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: StableLM-2 + version: 1.6B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: 'Stability AI' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: OpenRAIL + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: OpenRAIL + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' diff --git a/models/StableLM-Japanese.yml b/models/StableLM-Japanese.yml new file mode 100644 index 0000000..6288c35 --- /dev/null +++ b/models/StableLM-Japanese.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: StableLM-Japanese + version: 7B + date: '2024-10-03' + type: '' + architecture: '' + origin: '' + producer: 'Stability AI' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: OpenRAIL + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: OpenRAIL + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Creative Commons Attribution Non Commercial Share Alike 4.0' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' diff --git a/models/StableLM.yml b/models/StableLM.yml new file mode 100644 index 0000000..2bdc2e8 --- /dev/null +++ b/models/StableLM.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: StableLM + version: 7B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: 'Stability AI' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: OpenRAIL + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: OpenRAIL + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' diff --git a/models/StarCoder.yml b/models/StarCoder.yml new file mode 100644 index 0000000..8d1283a --- /dev/null +++ b/models/StarCoder.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: StarCoder + version: 15B + date: '2024-10-03' + type: '' + architecture: '' + origin: '' + producer: 'BigCode Project' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/StellarX.yml b/models/StellarX.yml new file mode 100644 index 0000000..4f3f386 --- /dev/null +++ b/models/StellarX.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: StellarX + version: 4B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: 'Arkane Industries' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Switch-C.yml b/models/Switch-C.yml new file mode 100644 index 0000000..812bd18 --- /dev/null +++ b/models/Switch-C.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Switch-C + version: 1.5T + date: '2024-10-03' + type: '' + architecture: '' + origin: '' + producer: Google + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/T5-Pile.yml b/models/T5-Pile.yml new file mode 100644 index 0000000..3c2e9e4 --- /dev/null +++ b/models/T5-Pile.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: T5-Pile + version: 11B + date: '2024-10-03' + type: '' + architecture: '' + origin: '' + producer: EleutherAI + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/T5.yml b/models/T5.yml new file mode 100644 index 0000000..933c08c --- /dev/null +++ b/models/T5.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: T5 + version: 11B + date: '2024-10-03' + type: '' + architecture: '' + origin: '' + producer: Google + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/TeleChat-12B.yml b/models/TeleChat-12B.yml new file mode 100644 index 0000000..84881d2 --- /dev/null +++ b/models/TeleChat-12B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: TeleChat-12B + version: 12B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: Telecom + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/TeleChat-7B.yml b/models/TeleChat-7B.yml new file mode 100644 index 0000000..fbee0e1 --- /dev/null +++ b/models/TeleChat-7B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: TeleChat-7B + version: 7B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: Telecom + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Turing-NLG.yml b/models/Turing-NLG.yml new file mode 100644 index 0000000..82ebdf9 --- /dev/null +++ b/models/Turing-NLG.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Turing-NLG + version: 17.2B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: Microsoft + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/UL2.yml b/models/UL2.yml new file mode 100644 index 0000000..848deba --- /dev/null +++ b/models/UL2.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: UL2 + version: 20B + date: '2024-10-03' + type: '' + architecture: '' + origin: '' + producer: Google + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Unnamed-Model.yml b/models/Unnamed-Model.yml new file mode 100644 index 0000000..03d213b --- /dev/null +++ b/models/Unnamed-Model.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Unnamed-Model + version: 3.6B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: 'Line Corporation' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Wu-Dao-1.0.yml b/models/Wu-Dao-1.0.yml new file mode 100644 index 0000000..ff1d64c --- /dev/null +++ b/models/Wu-Dao-1.0.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Wu-Dao-1.0 + version: 2.6B + date: '2024-10-03' + type: '' + architecture: '' + origin: '' + producer: BAAI + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Wu-Dao-2.0.yml b/models/Wu-Dao-2.0.yml new file mode 100644 index 0000000..6747357 --- /dev/null +++ b/models/Wu-Dao-2.0.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Wu-Dao-2.0 + version: 1.8T + date: '2024-10-03' + type: '' + architecture: '' + origin: '' + producer: BAAI + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Wu-Dao-GLM-XXL.yml b/models/Wu-Dao-GLM-XXL.yml new file mode 100644 index 0000000..54298ce --- /dev/null +++ b/models/Wu-Dao-GLM-XXL.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Wu-Dao-GLM-XXL + version: 10B + date: '2024-10-03' + type: '' + architecture: '' + origin: '' + producer: BAAI + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/XGLM.yml b/models/XGLM.yml new file mode 100644 index 0000000..1308a5a --- /dev/null +++ b/models/XGLM.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: XGLM + version: 7.5B + date: '2024-10-03' + type: '' + architecture: decoder + origin: MIT + producer: 'FAIR (Fundamental Artificial Intelligence Research)' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: MIT + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: MIT + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' diff --git a/models/XGen.yml b/models/XGen.yml new file mode 100644 index 0000000..580a9ff --- /dev/null +++ b/models/XGen.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: XGen + version: 7B + date: '2024-10-03' + type: '' + architecture: decoder + origin: Apache-2.0 + producer: Salesforce + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' diff --git a/models/XVERSE.yml b/models/XVERSE.yml new file mode 100644 index 0000000..f5d4e17 --- /dev/null +++ b/models/XVERSE.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: XVERSE + version: 65B + date: '2024-10-03' + type: '' + architecture: decoder + origin: Apache-2.0 + producer: 'Shenzhen Yuanxiang Technology' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' diff --git a/models/YaLM.yml b/models/YaLM.yml new file mode 100644 index 0000000..f2bbedb --- /dev/null +++ b/models/YaLM.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: YaLM + version: 100B + date: '2024-10-03' + type: language + architecture: decoder + origin: Apache-2.0 + producer: Yandex + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' diff --git a/models/Yayi-2.yml b/models/Yayi-2.yml new file mode 100644 index 0000000..e9b729a --- /dev/null +++ b/models/Yayi-2.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Yayi-2 + version: 30B + date: '2024-10-03' + type: '' + architecture: decoder + origin: 'Other License' + producer: 'Wenge Research' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Other License' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Other License' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' diff --git a/models/Yi-1.5.yml b/models/Yi-1.5.yml new file mode 100644 index 0000000..54710de --- /dev/null +++ b/models/Yi-1.5.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Yi-1.5 + version: 34B + date: '2024-10-03' + type: language + architecture: decoder + origin: Apache-2.0 + producer: 01.AI + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' diff --git a/models/Yuan-1.0.yml b/models/Yuan-1.0.yml new file mode 100644 index 0000000..bc62b9f --- /dev/null +++ b/models/Yuan-1.0.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Yuan-1.0 + version: 245B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: 'Inspur AI Research' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' diff --git a/models/Yuan-2.0.yml b/models/Yuan-2.0.yml new file mode 100644 index 0000000..ffa844b --- /dev/null +++ b/models/Yuan-2.0.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Yuan-2.0 + version: 102.6B + date: '2024-10-03' + type: '' + architecture: decoder + origin: '' + producer: 'Inspur AI Research' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' diff --git a/models/Zephyr-141B.yml b/models/Zephyr-141B.yml new file mode 100644 index 0000000..6a8e187 --- /dev/null +++ b/models/Zephyr-141B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Zephyr-141B + version: 141B + date: '2024-10-03' + type: '' + architecture: '' + origin: MIT + producer: '' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: MIT + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: MIT + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' diff --git a/models/Zidong-Taichu-2.0.yml b/models/Zidong-Taichu-2.0.yml new file mode 100644 index 0000000..0b58197 --- /dev/null +++ b/models/Zidong-Taichu-2.0.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Zidong-Taichu-2.0 + version: 100B + date: '2024-10-03' + type: '' + architecture: undisclosed + origin: '' + producer: 'Chinese Academy of Sciences' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/Zidong-Taichu.yml b/models/Zidong-Taichu.yml new file mode 100644 index 0000000..232662f --- /dev/null +++ b/models/Zidong-Taichu.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: Zidong-Taichu + version: 100B + date: '2024-10-03' + type: '' + architecture: undisclosed + origin: '' + producer: 'Chinese Academy of Sciences' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Component Not Include' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/dbrx-base.yml b/models/dbrx-base.yml new file mode 100644 index 0000000..735993c --- /dev/null +++ b/models/dbrx-base.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: dbrx-base + version: '132B ' + date: '2024-10-03' + type: language + architecture: decoder + origin: dbrx-base + producer: Databricks + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Databricks Open Model License' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Databricks Open Model License' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/dbrx-instruct.yml b/models/dbrx-instruct.yml new file mode 100644 index 0000000..1b08a46 --- /dev/null +++ b/models/dbrx-instruct.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: dbrx-instruct + version: '132B ' + date: '2024-10-03' + type: language + architecture: decoder + origin: dbrx-base + producer: Databricks + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Databricks Open Model License' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Databricks Open Model License' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component not included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/gemma-1.1-2b.yml b/models/gemma-1.1-2b.yml new file mode 100644 index 0000000..5905dd5 --- /dev/null +++ b/models/gemma-1.1-2b.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: gemma-1.1-2b + version: 2B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: gemma-2b + producer: Google + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: gemma + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/gemma-1.1-7b.yml b/models/gemma-1.1-7b.yml new file mode 100644 index 0000000..ca9cdad --- /dev/null +++ b/models/gemma-1.1-7b.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: gemma-1.1-7b + version: 7B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: gemma-7b + producer: Google + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: gemma + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/gemma-2b.yml b/models/gemma-2b.yml new file mode 100644 index 0000000..0c5e8eb --- /dev/null +++ b/models/gemma-2b.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: gemma-2b + version: 2B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: gemma-2b + producer: Google + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: gemma + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/gemma-7b.yml b/models/gemma-7b.yml new file mode 100644 index 0000000..706b4ee --- /dev/null +++ b/models/gemma-7b.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: gemma-7b + version: 7B + date: '2024-10-03' + type: language + architecture: 'transformer decoder' + origin: gemma-7b + producer: Google + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: gemma + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Component Not Included' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'License not specified' + license_path: '' diff --git a/models/mT5.yml b/models/mT5.yml new file mode 100644 index 0000000..9bf1416 --- /dev/null +++ b/models/mT5.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: mT5 + version: 13B + date: '2024-10-03' + type: '' + architecture: '' + origin: '' + producer: Google + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/pythia-1.4B.yml b/models/pythia-1.4B.yml new file mode 100644 index 0000000..6c36136 --- /dev/null +++ b/models/pythia-1.4B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: pythia-1.4B + version: 1.4B + date: '2024-10-03' + type: language + architecture: transformer + origin: Pythia + producer: EleutherAI + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/pythia-12B.yml b/models/pythia-12B.yml new file mode 100644 index 0000000..62788ef --- /dev/null +++ b/models/pythia-12B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: pythia-12B + version: 12B + date: '2024-10-03' + type: language + architecture: transformer + origin: '' + producer: EleutherAI + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/pythia-14M.yml b/models/pythia-14M.yml new file mode 100644 index 0000000..f020176 --- /dev/null +++ b/models/pythia-14M.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: pythia-14M + version: 14M + date: '2024-10-03' + type: language + architecture: transformer + origin: '' + producer: EleutherAI + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/pythia-160M.yml b/models/pythia-160M.yml new file mode 100644 index 0000000..26182eb --- /dev/null +++ b/models/pythia-160M.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: pythia-160M + version: 160M + date: '2024-10-03' + type: language + architecture: transformer + origin: '' + producer: EleutherAI + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/pythia-1B.yml b/models/pythia-1B.yml new file mode 100644 index 0000000..4743435 --- /dev/null +++ b/models/pythia-1B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: pythia-1B + version: 1B + date: '2024-10-03' + type: language + architecture: transformer + origin: '' + producer: EleutherAI + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/pythia-2.8B.yml b/models/pythia-2.8B.yml new file mode 100644 index 0000000..847e503 --- /dev/null +++ b/models/pythia-2.8B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: pythia-2.8B + version: 2.8B + date: '2024-10-03' + type: language + architecture: transformer + origin: '' + producer: EleutherAI + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/pythia-31M.yml b/models/pythia-31M.yml new file mode 100644 index 0000000..e0e703a --- /dev/null +++ b/models/pythia-31M.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: pythia-31M + version: 31M + date: '2024-10-03' + type: language + architecture: transformer + origin: '' + producer: EleutherAI + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/pythia-410M.yml b/models/pythia-410M.yml new file mode 100644 index 0000000..169f2c0 --- /dev/null +++ b/models/pythia-410M.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: pythia-410M + version: 410M + date: '2024-10-03' + type: language + architecture: transformer + origin: '' + producer: EleutherAI + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/pythia-6.9B.yml b/models/pythia-6.9B.yml new file mode 100644 index 0000000..b19a55f --- /dev/null +++ b/models/pythia-6.9B.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: pythia-6.9B + version: 6.9B + date: '2024-10-03' + type: language + architecture: transformer + origin: '' + producer: EleutherAI + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/models/pythia-70M.yml b/models/pythia-70M.yml new file mode 100644 index 0000000..d6c5be7 --- /dev/null +++ b/models/pythia-70M.yml @@ -0,0 +1,116 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: pythia-70M + version: 70M + date: '2024-10-03' + type: language + architecture: transformer + origin: Eagle + producer: EleutherAI + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: Apache-2.0 + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: 'License not specified' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: 'Pending evaluation' + license_path: '' diff --git a/schema/mof_schema.json b/schema/mof_schema.json new file mode 100644 index 0000000..bc51fd9 --- /dev/null +++ b/schema/mof_schema.json @@ -0,0 +1,132 @@ +{ + "type": "object", + "properties": { + "framework": { + "type": "object", + "properties": { + "name": { + "type": "string", + "enum": ["Model Openness Framework"] + }, + "version": { + "type": "string" + }, + "date": { + "type": "string", + "format": "date" + } + }, + "required": ["name", "version", "date"] + }, + "release": { + "type": "object", + "properties": { + "name": { + "type": "string", + "minLength": 1 + }, + "version": { + "type": "string" + }, + "date": { + "type": "string", + "format": "date" + }, + "type": { + "type": "string", + "enum": [ + "", + "language", + "vision", + "image", + "audio", + "video", + "3d", + "code", + "multimodal", + "other" + ] + }, + "architecture": { + "type": "string", + "enum": [ + "", + "transformer", + "transformer decoder", + "transformer encoder-decoder", + "decoder", + "encoder", + "diffusion", + "RNN", + "CNN", + "LSTM", + "NeRF", + "hybrid", + "undisclosed", + "other" + ] + }, + "treatment": { + "type": "string", + "enum": [ + "pre-trained", + "instruct fine-tuned", + "chat fine-tuned" + ] + }, + "origin": { + "type": "string" + }, + "producer": { + "type": "string" + }, + "contact": { + "type": "string" + }, + "components": { + "type": "array", + "minItems": 17, + "maxItems": 17, + "items": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "description": { + "type": "string" + }, + "location": { + "type": "string" + }, + "license_name": { + "type": "string" + }, + "license_path": { + "type": "string" + } + }, + "required": [ + "name", + "description", + "location", + "license_name", + "license_path" + ] + } + } + }, + "required": [ + "name", + "version", + "date", + "architecture", + "origin", + "producer", + "contact", + "components" + ] + } + }, + "required": ["framework", "release"] +} diff --git a/schema/sample_model.yml b/schema/sample_model.yml new file mode 100644 index 0000000..550ba2e --- /dev/null +++ b/schema/sample_model.yml @@ -0,0 +1,117 @@ +framework: + name: 'Model Openness Framework' + version: '1.0' + date: '2024-12-15' +release: + name: 'My-model' + version: '' + date: '2024-06-13' + type: '' + architecture: '' + origin: '' + producer: '' + contact: '' + components: + - + name: 'Model architecture' + description: "Well commented code for the model's architecture" + location: '' + license_name: '' + license_path: '' + - + name: 'Data preprocessing code' + description: 'Code for data cleansing, normalization, and augmentation' + location: '' + license_name: '' + license_path: '' + - + name: 'Training code' + description: 'Code used for training the model' + location: '' + license_name: '' + license_path: '' + - + name: 'Inference code' + description: 'Code used for running the model to make predictions' + location: '' + license_name: '' + license_path: '' + - + name: 'Evaluation code' + description: 'Code used for evaluating the model' + location: '' + license_name: '' + license_path: '' + - + name: 'Supporting libraries and tools' + description: "Libraries and tools used in the model's development" + location: '' + license_name: '' + license_path: '' + - + name: 'Model parameters (Final)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: '' + license_path: '' + - + name: 'Model parameters (Intermediate)' + description: 'Trained model parameters, weights and biases' + location: '' + license_name: '' + license_path: '' + - + name: Datasets + description: 'Training, validation and testing datasets used for the model' + location: '' + license_name: '' + license_path: '' + - + name: 'Evaluation data' + description: 'Data used for evaluating the model' + location: '' + license_name: '' + license_path: '' + - + name: 'Model metadata' + description: 'Any model metadata including training configuration and optimizer states' + location: '' + license_name: '' + license_path: '' + - + name: 'Sample model outputs' + description: 'Examples of outputs generated by the model' + location: '' + license_name: '' + license_path: '' + - + name: 'Model card' + description: 'Model details including performance metrics, intended use, and limitations' + location: '' + license_name: '' + license_path: '' + - + name: 'Data card' + description: 'Documentation for datasets including source, characteristics, and preprocessing details' + location: '' + license_name: '' + license_path: '' + - + name: 'Technical report' + description: 'Technical report detailing capabilities and usage instructions for the model' + location: '' + license_name: '' + license_path: '' + - + name: 'Research paper' + description: 'Research paper detailing the development and capabilities of the model' + location: '' + license_name: '' + license_path: '' + - + name: 'Evaluation results' + description: 'The results from evaluating the model' + location: '' + license_name: '' + license_path: '' + diff --git a/scripts/sync_models.php b/scripts/sync_models.php new file mode 100644 index 0000000..7403ba2 --- /dev/null +++ b/scripts/sync_models.php @@ -0,0 +1,78 @@ +isDot()) continue; + if (!$file->isFile()) continue; + if ($file->getExtension() !== 'yml') continue; + + $filename = $file->getFilename(); + $filepath = $file->getPathname(); + + $yamlstr = file_get_contents($filepath); + + if (file_exists($model_path . '/.processed/' . $filename)) { + $processed = file_get_contents($model_path . '/.processed/' . $filename); + if ($yamlstr === $processed) continue; + } + + print "Processing {$filename}" . PHP_EOL; + + if (!$validator->validate($filepath, $schema)) { + print 'Model failed validation.' . PHP_EOL; + continue; + } + + $model = Yaml::parse($yamlstr)['release']; + if (($entity = $updater->exists($model)) !== NULL) { + $rc = $updater->update($entity, $model); + } + else { + $rc = $updater->create($model); + } + + if ($rc === SAVED_NEW || $rc === SAVED_UPDATED) { + if ($rc === SAVED_NEW) { + print "Created model {$model['name']}" . PHP_EOL; + } + else if ($rc === SAVED_UPDATED) { + print "Updated model {$model['name']}" . PHP_EOL; + } + + copy($filepath, $model_path . '/.processed/' . $filename); + } + } + } + catch (\UnexpectedValueException $e) { + print 'Failed opening models directory: ' . $e->getMessage(); + } + catch (\ValueError $e) { + print "Invalid value: " . $e->getMessage(); + } + catch (ParseException $e) { + print 'Invalid YAML format: ' . $e->getMessage(); + } +} +else { + print "Models directory does not exist."; +} + diff --git a/scripts/validate-model.php b/scripts/validate-model.php new file mode 100644 index 0000000..de2668a --- /dev/null +++ b/scripts/validate-model.php @@ -0,0 +1,61 @@ +release = (object) $yaml->release; + $yaml->framework = (object) $yaml->framework; + foreach ($yaml->release->components as $key => $component) { + if (is_array($component)) { + $yaml->release->components[$key] = (object) $component; + } + } + + $validator = new Validator(); + $result = $validator->validate($yaml, $schema); + + print $result->isValid() ? 'Model is valid.' : 'Model failed validation.'; + print PHP_EOL; + + if ($result->hasError()) { + print_r((new ErrorFormatter())->formatKeyed($result->error())); + exit(1); + } +} +catch (\Symfony\Component\Yaml\Exception\ParseException $e) { + fwrite(STDERR, $e->getMessage() . PHP_EOL); + exit(1); +} +catch (\Opis\JsonSchema\Exceptions\SchemaException $e) { + fwrite(STDERR, $e->getMessage() . PHP_EOL); + exit(1); +} +catch (\ValueError $e) { + fwrite(STDERR, $e->getMessage() . PHP_EOL); + exit(1); +} + +exit; + diff --git a/web/modules/mof/css/layout/model_evaluation.css b/web/modules/mof/css/layout/model_evaluation.css index d5fa58f..2ec855c 100644 --- a/web/modules/mof/css/layout/model_evaluation.css +++ b/web/modules/mof/css/layout/model_evaluation.css @@ -1,3 +1,7 @@ +.button--action:not(:first-child) { + margin-left: 10px; +} + .evaluation { display: flex; flex-wrap: wrap; diff --git a/web/modules/mof/mof.routing.yml b/web/modules/mof/mof.routing.yml index 169f80b..7aa0512 100644 --- a/web/modules/mof/mof.routing.yml +++ b/web/modules/mof/mof.routing.yml @@ -51,6 +51,19 @@ entity.model.json: _entity_access: model.view _custom_access: \Drupal\mof\Controller\ModelController::pendingAccessCheck +entity.model.yaml: + path: '/model/{model}/yaml' + defaults: + _controller: \Drupal\mof\Controller\ModelController::yaml + _title: 'Model YAML' + options: + parameters: + model: + type: entity:model + requirements: + _entity_access: model.view + _custom_access: \Drupal\mof\Controller\ModelController::pendingAccessCheck + entity.model.admin_import: path: '/admin/model/import' defaults: diff --git a/web/modules/mof/mof.services.yml b/web/modules/mof/mof.services.yml index e92ce1c..ddc95cc 100644 --- a/web/modules/mof/mof.services.yml +++ b/web/modules/mof/mof.services.yml @@ -25,6 +25,15 @@ services: - '@model_evaluator' - '@component.manager' + model_validator: + class: Drupal\mof\ModelValidator + + model_updater: + class: Drupal\mof\ModelUpdater + arguments: + - '@entity_type.manager' + - '@component.manager' + component.manager: class: Drupal\mof\ComponentManager arguments: diff --git a/web/modules/mof/src/Batch/ModelCsvImport.php b/web/modules/mof/src/Batch/ModelCsvImport.php index 11879b8..49ac627 100644 --- a/web/modules/mof/src/Batch/ModelCsvImport.php +++ b/web/modules/mof/src/Batch/ModelCsvImport.php @@ -32,14 +32,13 @@ public static function import(array $data, array &$context) { 'description' => $data['Description'] ?: '-', 'version' => $data['Version/Parameters'], 'organization' => $data['Organization'], - 'type' => $data['Model Type'], - 'architecture' => $data['Architecture'], - 'treatment' => $data['Training Treatment'], + 'type' => self::getAllowedValueKey('type', $data['Model Type']) ?? '', + 'architecture' => self::getAllowedValueKey('architecture', $data['Architecture']) ?? '', + 'treatment' => self::getAllowedValueKey('treatment', $data['Training Treatment']) ?? '', 'origin' => $data['Base Model'], 'github' => self::getPathFromUrl($data['Github Repo URL']), 'huggingface' => self::getPathFromUrl($data['HuggingFace Model URL']), - 'approver' => self::setApprover($data['Researcher']), - 'status' => 'approved', + 'approver' => self::setApprover($data['Researcher']), 'status' => 'approved', ]; $license_data = [ @@ -139,6 +138,54 @@ public static function import(array $data, array &$context) { } } + public static function getAllowedValueKey(string $field, string $label): ?string { + $label = strtolower($label); + + switch ($field) { + case 'type': + $map = [ + 'language model' => 'language', + 'vision model' => 'vision', + 'image model' => 'image', + 'audio model' => 'audio', + 'video model' => 'video', + '3d model' => '3d', + 'code model' => 'code', + 'multimodal model' => 'multimodal', + 'other model' => 'other', + ]; + break; + + case 'architecture': + $map = [ + 'transformer' => 'transformer', + 'transformer (decoder-only)' => 'transformer decoder', + 'transformer (encoder-only)' => 'transformer encoder', + 'transformer (encoder-decoder)' => 'transformer encoder-decoder', + 'decoder-only' => 'decoder', + 'encoder-only' => 'encoder', + 'undisclosed' => 'undisclosed', + 'diffusion' => 'diffusion', + 'rnn' => 'RNN', + 'cnn' => 'CNN', + 'lstm' => 'LSTM', + 'nerf' => 'NeRF', + 'hybrid' => 'hybrid', + 'other' => 'other', + ]; + break; + + case 'treatment': + $map = [ + 'pre-trained' => 'pre-trained', + 'instruct fine-tuned' => 'instruct fine-tuned', + 'chat fine-tuned' => 'chat fine-tuned', + ]; + } + + return $map[$label] ?? NULL; + } + public static function getPathFromUrl(string $url): string { $parsed = parse_url($url); return isset($parsed['path']) ? ltrim($parsed['path'], '/') : ''; diff --git a/web/modules/mof/src/ComponentManager.php b/web/modules/mof/src/ComponentManager.php index 993bb9d..b0cc3a4 100644 --- a/web/modules/mof/src/ComponentManager.php +++ b/web/modules/mof/src/ComponentManager.php @@ -35,6 +35,14 @@ public function getComponents(): array { return $this->components; } + /** + * Get component by name. + */ + public function getComponentByName(string $name): Component { + $key = array_search($name, array_column($this->components, 'name')); + return $this->components[$key]; + } + /** * Get a single component by ID. */ diff --git a/web/modules/mof/src/Controller/ModelController.php b/web/modules/mof/src/Controller/ModelController.php index f323ca0..379cb5a 100644 --- a/web/modules/mof/src/Controller/ModelController.php +++ b/web/modules/mof/src/Controller/ModelController.php @@ -116,6 +116,21 @@ public function badge(ModelInterface $model, int $class): Response { return $response; } + /** + * Return a yaml representation of the model. + */ + public function yaml(ModelInterface $model): Response { + $yaml = $this->modelSerializer->toYaml($model); + + $response = new Response(); + $response->setContent($yaml); + $response->headers->set('Content-Type', 'application/json'); + $response->headers->set('Content-Length', (string)strlen($yaml)); + $response->headers->set('Content-Disposition', 'attachment; filename="mof.yml"'); + + return $response; + } + /** * Return a json file representation of the model. */ diff --git a/web/modules/mof/src/Entity/Model.php b/web/modules/mof/src/Entity/Model.php index 4793645..1094907 100644 --- a/web/modules/mof/src/Entity/Model.php +++ b/web/modules/mof/src/Entity/Model.php @@ -378,12 +378,17 @@ public static function baseFieldDefinitions(EntityTypeInterface $entity_type): a ->setRequired(TRUE) ->setSetting('allowed_values', [ 'transformer' => t('Transformer'), + 'transformer decoder' => t('Transformer (Decoder-only)'), + 'transformer encoder-decoder' => t('Transformer (Encoder-Decoder)'), + 'decoder' => t('Decoder-only'), + 'encoder' => t('Encoder-only'), 'diffusion' => t('Diffusion'), 'RNN' => t('RNN'), 'CNN' => t('CNN'), 'LSTM' => t('LSTM'), 'NeRF' => t('NeRF'), 'hybrid' => t('Hybrid'), + 'undisclosed' => t('Undisclosed'), 'other' => t('Other'), ]) ->setDisplayOptions('form', [ @@ -405,9 +410,9 @@ public static function baseFieldDefinitions(EntityTypeInterface $entity_type): a ->setDescription(t('The training treatment, includes pre-training, fine-tuning, RLHF or other training techniques.')) ->setRequired(TRUE) ->setSetting('allowed_values', [ - 'pre_trained' => t('Pre-trained'), - 'instruct_fine_tuned' => t('Instruct fine-tuned'), - 'chat_fine_tuned' => t('Chat fine-tuned'), + 'pre-trained' => t('Pre-trained'), + 'instruct fine-tuned' => t('Instruct fine-tuned'), + 'chat fine-tuned' => t('Chat fine-tuned'), ]) ->setDisplayOptions('form', [ 'type' => 'options_select', diff --git a/web/modules/mof/src/Form/ModelEvaluateForm.php b/web/modules/mof/src/Form/ModelEvaluateForm.php index b480d3a..7fa5139 100644 --- a/web/modules/mof/src/Form/ModelEvaluateForm.php +++ b/web/modules/mof/src/Form/ModelEvaluateForm.php @@ -53,11 +53,30 @@ public function form(array $form, FormStateInterface $form_state): array { protected function actions(array $form, FormStateInterface $form_state) { $actions = parent::actions($form, $form_state); $actions['submit']['#value'] = $this->t('Evaluate'); + + if ($this->session->get('model_data') !== NULL) { + $actions['reset'] = [ + '#type' => 'submit', + '#value' => $this->t('Start over'), + '#submit' => [[$this, 'resetForm']], + ]; + } + return $actions; } + /** + * {@inheritdoc} + */ public function submitForm(array &$form, FormStateInterface $form_state): void { parent::submitForm($form, $form_state); + $this + ->session + ->set('model_evaluation', TRUE); + $this + ->session + ->set('model_data', $form_state + ->getValue('license_data')); $form_state ->setRebuild(TRUE); $form_state @@ -76,4 +95,17 @@ public function save(array $form, FormStateInterface $form_state): int { return 0; } + /** + * Clear session variables. + * + * @param array $form + * An associative array containing the structure of the form. + * @param \Drupal\Core\Form\FormStateInterface $form_state + * The current state of the form. + */ + public function resetForm(array &$form, FormStateInterface $form_state): void { + $this->session->remove('model_evaluation'); + $this->session->remove('model_data'); + } + } diff --git a/web/modules/mof/src/Form/ModelForm.php b/web/modules/mof/src/Form/ModelForm.php index 66af476..40cdbe3 100644 --- a/web/modules/mof/src/Form/ModelForm.php +++ b/web/modules/mof/src/Form/ModelForm.php @@ -14,6 +14,7 @@ use Drupal\mof\ComponentManagerInterface; use Drupal\mof\GitHubService; use Symfony\Component\DependencyInjection\ContainerInterface; +use Symfony\Component\HttpFoundation\Session\Session; /** * Form controller for the model entity. @@ -32,6 +33,9 @@ abstract class ModelForm extends ContentEntityForm { /** @var \Drupal\mof\ComponentManager */ protected ComponentManagerInterface $componentManager; + /** @var \Symfony\Component\HttpFoundation\Session\Session. */ + protected Session $session; + /** * {@inheritdoc} */ @@ -42,13 +46,15 @@ public function __construct( LicenseHandlerInterface $license_handler, ModelEvaluatorInterface $model_evaluator, GitHubService $github, - ComponentManagerInterface $component_manager + ComponentManagerInterface $component_manager, + Session $session ) { parent::__construct($entity_repository, $entity_type_bundle_info, $time); $this->licenseHandler = $license_handler; $this->modelEvaluator = $model_evaluator; $this->github = $github; $this->componentManager = $component_manager; + $this->session = $session; } /** @@ -62,7 +68,8 @@ public static function create(ContainerInterface $container) { $container->get('license_handler'), $container->get('model_evaluator'), $container->get('github'), - $container->get('component.manager') + $container->get('component.manager'), + $container->get('session') ); } @@ -114,10 +121,11 @@ public function form(array $form, FormStateInterface $form_state): array { // Use the first content type for form placement. $group = is_array($component->contentType) ? $component->contentType[0] : $component->contentType; - // Set default license value if one is set or if community preferred is selected. + // Set default license value if we're editing an existing model. if (isset($model_licenses[$cid]['license'])) { $default_license = $model_licenses[$cid]['license']; } + // Set default licenses to community preferred if requested. else if ($this->getRequest()->query->get('community') !== NULL) { $this->messenger()->addMessage($this->t('Component licenses set to community preferred')); if ($group === 'code') { @@ -130,6 +138,11 @@ public function form(array $form, FormStateInterface $form_state): array { $default_license = 'CC-BY-4.0'; } } + // Set default licenses if user is coming from evaluate model form. + else if (($session_model = $this->session->get('model_data')) !== NULL) { + $default_license = $session_model['licenses'][$cid]['license'] ?? ''; + } + // No default licenses to use. else { $default_license = ''; } diff --git a/web/modules/mof/src/ModelSerializer.php b/web/modules/mof/src/ModelSerializer.php index c6cac75..e4a47a7 100644 --- a/web/modules/mof/src/ModelSerializer.php +++ b/web/modules/mof/src/ModelSerializer.php @@ -6,6 +6,7 @@ use Drupal\mof\ModelInterface; use Drupal\mof\ComponentManagerInterface; +use Drupal\Component\Serialization\Yaml; use Symfony\Component\Serializer\SerializerInterface; /** @@ -17,15 +18,23 @@ final class ModelSerializer { * Construct a ModelSerializer instance. */ public function __construct( - private SerializerInterface $serializer, - private ModelEvaluatorInterface $modelEvaluator, - private ComponentManagerInterface $componentManager + private readonly SerializerInterface $serializer, + private readonly ModelEvaluatorInterface $modelEvaluator, + private readonly ComponentManagerInterface $componentManager ) {} - public function toJson(ModelInterface $model): string { + /** + * Transform model to an array for serialization. + * + * @param \Drupal\mof\ModelInterface $model + * The model to process. + * @return array + * An array representing the model. + */ + private function processModel(ModelInterface $model): array { $owner = $model->getOwner(); - $json = [ + $data = [ 'framework' => [ 'name' => 'Model Openness Framework', 'version' => '1.0', @@ -33,22 +42,24 @@ public function toJson(ModelInterface $model): string { ], 'release' => [ 'name' => $model->label(), - 'version' => $model->getVersion(), + 'version' => $model->getVersion() ?? '', 'date' => date('Y-m-d', $model->getChangedTime()), - 'type' => $model->getType(), - 'architecture' => $model->getArchitecture(), - 'origin' => $model->getOrigin(), - 'producer' => $model->getOrganization(), + 'type' => $model->getType() ?? '', + 'architecture' => $model->getArchitecture() ?? '', + 'origin' => $model->getOrigin() ?? '', + 'producer' => $model->getOrganization() ?? '', 'contact' => $owner->id() > 1 ? $owner->getEmail() : '', - 'mof_class' => $this->modelEvaluator->setModel($model)->getClassification(), ], ]; - $licenses = $model->getLicenses(); - $completed = array_filter($this->componentManager->getComponents(), fn($c) => in_array($c->id, $model->getCompletedComponents())); + $completed = array_filter( + $this->componentManager->getComponents(), + fn($c) => in_array($c->id, $model->getCompletedComponents())); + $licenses = $model->getLicenses(); foreach ($completed as $component) { - $json['components'][$component->name] = [ + $data['release']['components'][] = [ + 'name' => $component->name, 'description' => $component->description, 'location' => $licenses[$component->id]['component_path'], 'license_name' => $licenses[$component->id]['license'], @@ -56,9 +67,36 @@ public function toJson(ModelInterface $model): string { ]; } + return $data; + } + + /** + * Return a YAML representation of the model. + * + * @param \Drupal\mof\ModelInterface $model + * The model to convert to YAML. + * @return string + * A string representing the model in YAML format. + */ + public function toYaml(ModelInterface $model): string { + return Yaml::encode($this->processModel($model)); + } + + /** + * Return a JSON representation of the model. + * + * @param \Drupal\mof\ModelInterface $model + * The model to convert to JSON. + * @return string + * A string representing the model in JSON format. + */ + public function toJson(ModelInterface $model): string { return $this ->serializer - ->serialize($json, 'json', ['json_encode_options' => \JSON_PRETTY_PRINT | \JSON_UNESCAPED_SLASHES]); + ->serialize($this + ->processModel($model), 'json', [ + 'json_encode_options' => \JSON_PRETTY_PRINT | \JSON_UNESCAPED_SLASHES + ]); } } diff --git a/web/modules/mof/src/ModelUpdater.php b/web/modules/mof/src/ModelUpdater.php new file mode 100644 index 0000000..f0fa3a0 --- /dev/null +++ b/web/modules/mof/src/ModelUpdater.php @@ -0,0 +1,161 @@ +modelStorage = $entityTypeManager->getStorage('model'); + $this->userStorage = $entityTypeManager->getStorage('user'); + } + + /** + * Check if a model exists by its name/label. + * + * @param array $model_data + * The model data in array format. + * @return \Drupal\mof\ModelInterface|NULL + * The model if it exists; NULL otherwise. + */ + public function exists(array $model_data): ?ModelInterface { + $model = $this + ->modelStorage + ->loadByProperties(['label' => $model_data['name']]); + + if (empty($model)) { + return NULL; + } + + return reset($model); + } + + /** + * Update a model entity with supplied model data. + * + * @param \Drupal\mof\ModelInterface $model + * The model entity that will be updated. + * @param array $model_data + * The model data we are updating $model with. + * @param int + * Either SAVED_NEW or SAVED_UPDATED. + */ + public function update(ModelInterface $model, array $model_data): int { + foreach ($model_data as $field => $value) { + // @todo Rename these fields on the entity(?) + if ($field === 'name') $field = 'label'; + if ($field === 'producer') $field = 'organization'; + + if ($field === 'components') { + $license_data = $this->processLicenses($value); + $model->set('license_data', ['licenses' => $license_data]); + $model->set('components', array_keys($license_data)); + } + else if ($field === 'contact') { + $model->set('uid', $this->processOwnerContact($value)); + } + else if ($field === 'date') { + $model->set('changed', strtotime($value)); + } + else { + $model->set($field, $value); + } + } + + $model->setStatus(Model::STATUS_APPROVED); + return $model->save(); + } + + /** + * Create a model entity. + * + * @param array $model_data + * The model data. + * @return int * Should always be SAVED_NEW. + */ + public function create(array $model_data): int { + $model = $this->modelStorage->create(); + return $this->update($model, $model_data); + } + + /** + * Process contact field. + * Find or create a Drupal user entity. + * + * @param string $email + * An email address belonging to the model contact. + * @return \Drupal\user\UserInterface. + * A Drupal user account or NULL if not found or cannot be created. + */ + private function processOwnerContact(string $email): ?UserInterface { + if (filter_var($email, FILTER_VALIDATE_EMAIL) === FALSE) { + return NULL; + } + + $user = $this->userStorage->loadByProperties(['mail' => $email]); + + if (empty($user)) { + $user = $this->userStorage->create([ + 'mail' => $email, + 'name' => explode('@', $email)[0], + 'pass' => \Drupal::service('password')->hash(random_bytes(16)), + ]); + + $user->save(); + } + else { + $user = reset($user); + } + + return $user; + } + + /** + * Process licenses for each component of the model. + * + * @param array $license_data + * The license data to process for each component. + * @return array + * The license array structured for a model entity. + */ + private function processLicenses(array $license_data): array { + $licenses = []; + + foreach ($license_data as $component_data) { + $component = $this + ->componentManager + ->getComponentByName($component_data['name']); + + $licenses[$component->id] = [ + 'license' => $component_data['license_name'], + 'license_path' => $component_data['license_path'], + 'component_path' => $component_data['location'], + ]; + } + + return $licenses; + } + +} + diff --git a/web/modules/mof/src/ModelValidator.php b/web/modules/mof/src/ModelValidator.php new file mode 100644 index 0000000..3fd21dd --- /dev/null +++ b/web/modules/mof/src/ModelValidator.php @@ -0,0 +1,63 @@ +validator = new Validator(); + } + + /** + * Validate a YAML representation of a model. + * Ensure it adheres to the MOF model schema. + * + * @param string $yaml + * Path to a model yaml file. + * @param stdClass $schema + * JSON schema converted to a stdClass object via json_decode(). + * @return bool + * TRUE if valid, FALSE if invalid. + */ + public function validate(string $yaml, \stdClass $schema): bool { + $yaml_model = Yaml::parseFile($yaml); + $json_model = $this->convert($yaml_model); + $result = $this->validator->validate($json_model, $schema); + + if ($result->hasError()) { + print_r((new ErrorFormatter())->format($result->error())); + } + + return $result->isValid(); + } + + /** + * Convert our YAML structure to a stdClass object. + * + * @param mixed $yaml + * YAML data to convert. + * @return mixed + * The converted data as a stdClass object. + */ + private function convert($yaml) { + if (is_array($yaml)) { + $is_assoc = array_keys($yaml) !== range(0, sizeof($yaml) - 1); + $result = array_map([$this, __FUNCTION__], $yaml); + return $is_assoc ? (object) $result : $result; + } + return $yaml; + } + +} + + diff --git a/web/modules/mof/src/ModelViewBuilder.php b/web/modules/mof/src/ModelViewBuilder.php index b54cfc6..947a9b3 100644 --- a/web/modules/mof/src/ModelViewBuilder.php +++ b/web/modules/mof/src/ModelViewBuilder.php @@ -11,10 +11,13 @@ use Drupal\Core\Messenger\MessengerInterface; use Drupal\Core\Language\LanguageManagerInterface; use Drupal\Core\Theme\Registry; +use Drupal\Core\Url; +use Drupal\Component\Utility\SortArray; use Drupal\mof\Entity\Model; use Drupal\mof\ModelEvaluatorInterface; use Drupal\mof\ComponentManagerInterface; use Symfony\Component\DependencyInjection\ContainerInterface; +use Symfony\Component\HttpFoundation\Session\Session; /** * ModelViewBuilder class. @@ -30,6 +33,9 @@ class ModelViewBuilder extends EntityViewBuilder { /** @var \Drupal\Core\Messenger\MessengerInterface. */ protected MessengerInterface $messenger; + /** @var \Symfony\Component\HttpFoundation\Session\Session. */ + protected Session $session; + /** * {@inheritdoc} */ @@ -41,7 +47,8 @@ public function __construct( EntityDisplayRepositoryInterface $entity_display_repository, ModelEvaluatorInterface $model_evaluator, ComponentManagerInterface $component_manager, - MessengerInterface $messenger + MessengerInterface $messenger, + Session $session ) { parent::__construct( $entity_type, @@ -53,6 +60,7 @@ public function __construct( $this->modelEvaluator = $model_evaluator; $this->modelComponents = $component_manager->getComponents(); $this->messenger = $messenger; + $this->session = $session; } /** @@ -70,7 +78,8 @@ public static function createInstance( $container->get('entity_display.repository'), $container->get('model_evaluator'), $container->get('component.manager'), - $container->get('messenger') + $container->get('messenger'), + $container->get('session') ); } @@ -131,9 +140,12 @@ public function build(array $build) { ], 'badge' => $badges[$i], 'evaluation' => [ - 'included' => $this->buildIncluded($evaluation[$i]['included']), - 'missing' => $this->buildMissing($evaluation[$i]['missing']), - 'invalid' => $this->buildInvalid($evaluation[$i]['invalid']), + 'included' => $this + ->getComponentList($evaluation[$i]['included'], 'included'), + 'missing' => $this + ->getComponentList($evaluation[$i]['missing'], 'missing'), + 'invalid' => $this + ->getComponentList($evaluation[$i]['invalid'], 'invalid'), '#weight' => 10, ], ]; @@ -143,65 +155,67 @@ public function build(array $build) { $this->messenger->addMessage($this->t('This model conditionally meets Class III because it has an open source license for Model Parameters (Final)')); } - $build['#attached']['library'][] = 'mof/model-evaluation'; - return parent::build($build); - } - - private function buildIncluded(array $included_components): array { - $build = []; - - if (!empty($included_components)) { - $build = [ - 'included_components' => [ - '#theme' => 'item_list', - '#title' => $this->t('Included'), + if ($this->session->get('model_evaluation') === TRUE) { + $build['retry'] = [ + '#type' => 'link', + '#title' => $this->t('Retry'), + '#url' => Url::fromRoute('mof.model.evaluate_form'), + '#weight' => -200, + '#attributes' => [ + 'class' => ['button', 'button--action', 'button--primary'], ], ]; - } - - $components = array_filter($this->modelComponents, fn($c) => in_array($c->id, $included_components)); - foreach ($components as $component) { - $build['included_components']['#items'][] = $component->name; - } - - return $build; - } - private function buildInvalid(array $components): array { - $build = []; - - $invalid = array_filter($this->modelComponents, fn($c) => in_array($c->id, $components)); - if (!empty($invalid)) { - $build = [ - 'invalid_components' => [ - '#theme' => 'item_list', - '#title' => $this->t('Invalid license'), + $build['submit'] = [ + '#type' => 'link', + '#title' => $this->t('Submit model'), + '#url' => Url::fromRoute('entity.model.add_form'), + '#weight' => -200, + '#attributes' => [ + 'class' => ['button', 'button--action', 'button--primary'], ], ]; - foreach ($invalid as $component) { - $build['invalid_components']['#items'][] = $component->name; - } + $this->session->set('model_evaluation', FALSE); } + $build['#attached']['library'][] = 'mof/model-evaluation'; + $build += parent::build($build); + + uasort($build, [SortArray::class, 'sortByWeightProperty']); return $build; } - private function buildMissing(array $missing_components): array { + /** + * Build a render array of completed, missing or invalid model components. + * + * @param array $components + * Model components. + * @param string $status + * A value of "missing" or "completed" or "invalid" + * @return array + * A drupal render array of components. + */ + private function getComponentList(array $components, string $status): array { $build = []; - if (!empty($missing_components)) { - $build = [ - 'missing_components' => [ - '#theme' => 'item_list', - '#title' => $this->t('Missing components'), - ], - ]; + if (empty($components) && !in_array($status, ['missing', 'invalid', 'completed'])) { + return $build; } - $components = array_filter($this->modelComponents, fn($c) => in_array($c->id, $missing_components)); + $build = [ + "{$status}_components" => [ + '#theme' => 'item_list', + '#title' => $this->t('@status components', ['@status' => ucfirst($status)]), + ], + ]; + + $components = array_filter( + $this->modelComponents, + fn($c) => in_array($c->id, $components)); + foreach ($components as $component) { - $build['missing_components']['#items'][] = $component->name; + $build["{$status}_components"]['#items'][] = $component->name; } return $build; diff --git a/web/sites/default/settings.php b/web/sites/default/settings.php index 7959f14..40a8f17 100644 --- a/web/sites/default/settings.php +++ b/web/sites/default/settings.php @@ -27,3 +27,7 @@ 'node_modules', 'bower_components', ]; + +$settings['trusted_host_patterns'] = [ + '^' . $_ENV['TRUSTED_HOST'] . '$', +];