From 8c0dec91d394a1ef326b1dde700457eb395ee8ae Mon Sep 17 00:00:00 2001 From: Leohearts Date: Tue, 1 Jul 2025 14:47:10 +0800 Subject: [PATCH 1/2] Update model_collection.yml --- .github/ISSUE_TEMPLATE/model_collection.yml | 50 ++++++++++++++++++--- 1 file changed, 45 insertions(+), 5 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/model_collection.yml b/.github/ISSUE_TEMPLATE/model_collection.yml index 53629a7..45ea2ff 100644 --- a/.github/ISSUE_TEMPLATE/model_collection.yml +++ b/.github/ISSUE_TEMPLATE/model_collection.yml @@ -6,11 +6,19 @@ body: - type: input attributes: label: "Provider" - description: "The provider of the model." + description: "The organization that created the model. (e.g., openai, meta)" placeholder: "openai" validations: required: true + - type: input + attributes: + label: "Model Family" + description: "The base name for the model series (e.g., Llama 3, Gemma, GPT-4)." + placeholder: "Gemma" + validations: + required: true + - type: input attributes: label: "Model ID" @@ -19,6 +27,37 @@ body: validations: required: true + - type: input + attributes: + label: "Model URL" + description: "URL of the model's repository, if not applicable, link to the official model card or product page." + placeholder: "https://huggingface.co/google/gemma-3n-E4B-it" + + - type: input + attributes: + label: "Release Date" + description: "The date the model was publicly released." + placeholder: "YYYY-MM-DD" + + - type: input + attributes: + label: "Context Window (Tokens)" + description: "Maximum number of tokens in a single request." + placeholder: "8192" + + - type: input + attributes: + label: "Training Data Cutoff" + description: "The knowledge cutoff date for the model's training data." + placeholder: "YYYY-MM" + + - type: input + id: license + attributes: + label: "License" + description: "The software license for the model." + placeholder: "Apache 2.0" + - type: checkboxes attributes: label: "Model Capabilities" @@ -26,7 +65,7 @@ body: options: - label: "streaming" - label: "reasoning" - - label: "tool-call" + - label: "tool-calling" - type: checkboxes attributes: @@ -46,6 +85,7 @@ body: options: - label: "text" - label: "image" + - label: "json" - label: "audio" - label: "video" - label: "vector" @@ -53,7 +93,7 @@ body: - type: checkboxes attributes: label: "Model Endpoints" - description: "The endpoints of the model." + description: "Supported API endpoints of the model." options: - label: "chat-completion" - label: "completion" @@ -65,5 +105,5 @@ body: - type: textarea attributes: label: "Additional Information" - description: "Additional information about the model." - placeholder: "Additional information about the model." + description: "Any other relevant details, such as benchmark performance (MMLU, GSM8K), architectural notes, etc." + placeholder: "MMLU score: 86.4%" From 99475dfb278fd22e25538e74971cb9cba17580a7 Mon Sep 17 00:00:00 2001 From: Leohearts Date: Tue, 1 Jul 2025 14:53:17 +0800 Subject: [PATCH 2/2] Update model_collection.yml --- .github/ISSUE_TEMPLATE/model_collection.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/model_collection.yml b/.github/ISSUE_TEMPLATE/model_collection.yml index 45ea2ff..a84f637 100644 --- a/.github/ISSUE_TEMPLATE/model_collection.yml +++ b/.github/ISSUE_TEMPLATE/model_collection.yml @@ -44,6 +44,20 @@ body: label: "Context Window (Tokens)" description: "Maximum number of tokens in a single request." placeholder: "8192" + + - type: dropdown + attributes: + label: "Architecture" + options: + - label: Transformer + - label: Mixture of Experts (MoE) + - label: Other + + - type: input + attributes: + label: "Parameters (Billions)" + description: "The number of parameters in the model, in billions (e.g., 8, 70, 175)." + placeholder: "70" - type: input attributes: @@ -52,7 +66,6 @@ body: placeholder: "YYYY-MM" - type: input - id: license attributes: label: "License" description: "The software license for the model."