diff --git a/app.py b/app.py new file mode 100644 index 0000000000000000000000000000000000000000..b65444461e51ae4e1c2bb97a23f18b86948eeb5a --- /dev/null +++ b/app.py @@ -0,0 +1,222 @@ +import os +import yaml +import gradio as gr +import pandas as pd + +# ---- Model Class ---- # +class Model: + def __init__(self, model_data): + """ + Initializes the model with the provided model_data dictionary (from YAML). + """ + self.data = model_data + + def get_name(self): + return self.data.get("release", {}).get("name", "Unknown") + + def get_producer(self): + return self.data.get("release", {}).get("producer", "Unknown") + + def get_classification(self): + return self.data.get("release", {}).get("classification", "Unclassified") + + def get_last_updated(self): + return self.data.get("release", {}).get("date", "Unknown") + + def get_badge(self): + return self.data.get("release", {}).get("badge", "") + +# ---- Load and Process Models in a Directory ---- # +def load_all_models(directory): + """ + Load all models from the specified directory. + Each model is expected to have a .yml file. + """ + models_data = [] + + for filename in os.listdir(directory): + if filename.endswith(".yml"): + filepath = os.path.join(directory, filename) + # Specify encoding as 'utf-8' to avoid decoding issues + with open(filepath, 'r', encoding='utf-8') as file: + model_data = yaml.safe_load(file) + model = Model(model_data) + + # Append the model information to our list + models_data.append({ + "Name": model.get_name(), + "Organization": model.get_producer(), + "Classification": model.get_classification(), + "Last Updated": model.get_last_updated(), + "Badge": model.get_badge() + }) + + return models_data + +# ---- Convert Model Data to a DataFrame ---- # +def get_model_table(directory): + """ + Get a table of all models and their information. + """ + models_data = load_all_models(directory) + + # Create a Pandas DataFrame for easy table generation + df = pd.DataFrame(models_data) + return df + +# ---- Global DataFrame ---- # +# Load the data once and reuse it for filtering and pagination +directory = "./models" # You can change this to your actual models folder path +global_df = get_model_table(directory) + +# ---- Filtering and Pagination Functions ---- # +def filter_data(name_query, org_query): + """ + Filter the global dataframe based on the search queries. + """ + df = global_df.copy() + if name_query: + df = df[df['Name'].str.contains(name_query, case=False, na=False)] + if org_query: + df = df[df['Organization'].str.contains(org_query, case=False, na=False)] + return df.reset_index(drop=True) + +def paginate_data(df, page_size, page_number): + """ + Paginate the filtered dataframe. + """ + total_rows = len(df) + total_pages = (total_rows + page_size - 1) // page_size # Calculate total pages + + # Ensure page_number is within valid range + if page_number < 1: + page_number = 1 + elif page_number > total_pages: + page_number = total_pages + + start_row = (page_number - 1) * page_size + end_row = start_row + page_size + page_data = df.iloc[start_row:end_row] + return page_data, total_pages + +# ---- Gradio Interface ---- # +def update_table(name_query, org_query, page_size, page_number): + """ + Update the table based on search queries and pagination. + """ + filtered_df = filter_data(name_query, org_query) + page_size = int(page_size) + page_number = int(page_number) + page_data, total_pages = paginate_data(filtered_df, page_size, page_number) + return page_data, total_pages + +def go_to_page(name_query, org_query, page_size, go_to_page_number): + """ + Go to a specific page number. + """ + return update_table(name_query, org_query, page_size, go_to_page_number) + +# Define the Gradio interface using Blocks +with gr.Blocks() as demo: + # MOF Description + gr.Markdown(""" + # Model Openness Framework (MOF) + + The Generative AI Commons at the LF AI & Data Foundation has designed and developed the **Model Openness Framework (MOF)**, a comprehensive system for evaluating and classifying the completeness and openness of machine learning models. This framework assesses which components of the model development lifecycle are publicly released and under what licenses, ensuring an objective evaluation. The framework is constantly evolving. Please participate in the Generative AI Commons to provide feedback and suggestions. + + ## Model Openness Tool (MOT) + + To implement the MOF, we’ve created the **Model Openness Tool (MOT)**. This tool evaluates each criterion from the MOF and generates a score based on how well each item is met. The MOT provides a practical, user-friendly way to apply the MOF framework to your model and produce a clear, self-service score. + + ### How It Works + + The MOT presents users with 16 questions about their model. Users need to provide detailed responses for each question. Based on these inputs, the tool calculates a score, classifying the model’s openness on a scale of 1, 2, or 3. + + ### Why We Developed MOT + + Our goal in developing the MOT was to offer a straightforward tool for evaluating machine learning models against the MOF framework. This tool helps users understand what components are included with each model and the licenses associated with those components, providing clarity on what can and cannot be done with the model and its parts. + + **Explore the Model Openness Framework and try the [Model Openness Tool](https://mot.isitopen.ai/) today to see how your models measure up.** + """) + + # Search Filters + with gr.Row(): + name_query = gr.Textbox(label="Search by Name") + org_query = gr.Textbox(label="Search by Organization") + + # Table and Pagination Controls + with gr.Column(): + # Initialize with the first page of data + initial_page_data, initial_total_pages = paginate_data(global_df, page_size=50, page_number=1) + table_output = gr.Dataframe( + value=initial_page_data, + headers=["Name", "Organization", "Classification", "Last Updated", "Badge"], + label="Models Table" + ) + + # Pagination Controls + with gr.Row(): + prev_button = gr.Button("← Previous") + next_button = gr.Button("Next →") + page_numbers = gr.State(value=1) # Keep track of the current page + total_pages_text = gr.Markdown(value=f"Page 1 of {initial_total_pages}") + go_to_input = gr.Number(label="Go to Page", value=1, precision=0) + go_to_button = gr.Button("Go") + + # Event Handlers + def update_pagination(name_query, org_query, page_size, page_number): + page_data, total_pages = update_table(name_query, org_query, page_size, page_number) + total_pages_text.value = f"Page {page_number} of {total_pages}" + return page_data, total_pages_text.value, page_number + + # When search filters change, reset to page 1 + def on_search_change(name_query, org_query): + page_data, total_pages = update_table(name_query, org_query, page_size=50, page_number=1) + total_pages_text.value = f"Page 1 of {total_pages}" + return page_data, total_pages_text.value, 1 + + name_query.change( + fn=on_search_change, + inputs=[name_query, org_query], + outputs=[table_output, total_pages_text, page_numbers] + ) + org_query.change( + fn=on_search_change, + inputs=[name_query, org_query], + outputs=[table_output, total_pages_text, page_numbers] + ) + + # Previous Button + def on_prev(name_query, org_query, page_size, current_page): + new_page = max(1, current_page - 1) + return update_pagination(name_query, org_query, page_size, new_page) + + prev_button.click( + fn=on_prev, + inputs=[name_query, org_query, gr.State(value=50), page_numbers], + outputs=[table_output, total_pages_text, page_numbers] + ) + + # Next Button + def on_next(name_query, org_query, page_size, current_page): + new_page = current_page + 1 + return update_pagination(name_query, org_query, page_size, new_page) + + next_button.click( + fn=on_next, + inputs=[name_query, org_query, gr.State(value=50), page_numbers], + outputs=[table_output, total_pages_text, page_numbers] + ) + + # Go To Page + def on_go(name_query, org_query, page_size, go_to_page_number): + return update_pagination(name_query, org_query, page_size, int(go_to_page_number)) + + go_to_button.click( + fn=on_go, + inputs=[name_query, org_query, gr.State(value=50), go_to_input], + outputs=[table_output, total_pages_text, page_numbers] + ) + +# Launch the Gradio app +demo.launch() diff --git a/models/Amber.yml b/models/Amber.yml new file mode 100644 index 0000000000000000000000000000000000000000..5dd43ebc913b4e5f159e7d0b1498b8b0e147af7d --- /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 0000000000000000000000000000000000000000..c903addb862fa852d7212b7240af69e01db25f51 --- /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 0000000000000000000000000000000000000000..52ada303600849df2a360989091550ee73874ee9 --- /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 0000000000000000000000000000000000000000..fdf6d44efd7acf751c2cf7fda7e8eeb9b2e89965 --- /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 0000000000000000000000000000000000000000..1ab4f553d83c48e12039ad7c718ac749cc35cc11 --- /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 0000000000000000000000000000000000000000..4f283dcf82d21f6e16f4409c3dc2b73782077644 --- /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 0000000000000000000000000000000000000000..d4917cb182dc7e28d9ad8de32e679ab53b37dec8 --- /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 0000000000000000000000000000000000000000..7691faa246f5bd721d48a342df9440c8f53b1add --- /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 0000000000000000000000000000000000000000..1cf535c86c3448781aab60301c22c8b4392755c1 --- /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 0000000000000000000000000000000000000000..a5c55db343025338db1bad9a45523f921e7edd7b --- /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 0000000000000000000000000000000000000000..ff2cba3bc0ad6e89db3ec62202feb133f0d70ba7 --- /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 0000000000000000000000000000000000000000..b97acacf491385c58f86520369ce80dc742acf41 --- /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 0000000000000000000000000000000000000000..2b9a8c5f30863fd5cbc5fbb9e42a115477461d2f --- /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 0000000000000000000000000000000000000000..7a92bafb09162c1486554e961651e9c4bc21637c --- /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 0000000000000000000000000000000000000000..05b3d3b07a0331e61f90ab4ebff824663094eb76 --- /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 0000000000000000000000000000000000000000..532b939a9f77cc46920b0e5d4583e554f00073f1 --- /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 0000000000000000000000000000000000000000..52f71e750d57b7b372274823790669b9324b8bfd --- /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 0000000000000000000000000000000000000000..144fd6dc222e96a91af0498264a36bfc5bc225eb --- /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 0000000000000000000000000000000000000000..3ad54baf8d52f84cc322894c979133fd513bd080 --- /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 0000000000000000000000000000000000000000..fc3d89139199395357e6c57947a0e675af49dad8 --- /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 0000000000000000000000000000000000000000..b7cd7263ba5a50bf3a625db2ec2e3772239350aa --- /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 0000000000000000000000000000000000000000..1cc9b29bd5a75b3227259e5dfcbdf0453731bebc --- /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 0000000000000000000000000000000000000000..4b11a276d5dc62c1a81875df20da6feb0878650e --- /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 0000000000000000000000000000000000000000..f979a1f7a1261b0f1c2ab1a20b36bc7c9078bce1 --- /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 0000000000000000000000000000000000000000..acdf1112701af96c188de7a79f201d9ced07c2ed --- /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 0000000000000000000000000000000000000000..cfc95ae64fd6adf840ba549bfc7b9aa3ed5dacee --- /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 0000000000000000000000000000000000000000..17874a6787523be5965bac8431547af5da10ad75 --- /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 0000000000000000000000000000000000000000..ff56cd68c819fbdf10a090be0d014bf8bf881f29 --- /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 0000000000000000000000000000000000000000..f527cf348a81532631f3420fe8eb979398f655fc --- /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 0000000000000000000000000000000000000000..9d64071cd211b9e73370d85fd1475b8015df4e47 --- /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 0000000000000000000000000000000000000000..2ec15d6c1bb327e1e419c12f3d88284af18cbc70 --- /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 0000000000000000000000000000000000000000..d9930b0e822db3a7502a7fef5da46ff685243b52 --- /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 0000000000000000000000000000000000000000..81389b9847f11204841ba5a75461f2170b67fc5a --- /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 0000000000000000000000000000000000000000..d2013fbffeca5134b0a61947bec0ef51c5074ca4 --- /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 0000000000000000000000000000000000000000..ce2a5d3aec5e04c5e62e4a6fd58300494c9bef47 --- /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 0000000000000000000000000000000000000000..00c4a8949a472d8e64472b4cba46beba20f36b8f --- /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 0000000000000000000000000000000000000000..3adc785d5d337fae14315a3a85a389ab3b9deab5 --- /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 0000000000000000000000000000000000000000..fb4ce5cf31fefdcd9bc8d8aa3e619db15cc06a4d --- /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 0000000000000000000000000000000000000000..74aabc06516da611b8d2c4372381457e0de91d01 --- /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 0000000000000000000000000000000000000000..714fc5324a6f10072ec860b11a725dbc2ef4ae62 --- /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 0000000000000000000000000000000000000000..de66937fbf14b847f4ea8fbdf65e6aab2a11171d --- /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 0000000000000000000000000000000000000000..aeabee914f9e275144eed3754f224dd38112c720 --- /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 0000000000000000000000000000000000000000..6c88a8d7c1a30df18b228859414cb7e2295a6e60 --- /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 0000000000000000000000000000000000000000..5cf4096980123ae76ff77e68f9ea09e0889027db --- /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 0000000000000000000000000000000000000000..e94ff43e5b54344d078b7b400e0a4b16655a591b --- /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 0000000000000000000000000000000000000000..43e41b3217a551a8b460b3655d4de84d7696b207 --- /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 0000000000000000000000000000000000000000..6ef72f9c97f7681192be0e248bbbca9c0e94eec2 --- /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 0000000000000000000000000000000000000000..e7ccfbcb17cec769f23f73e785b27f6b7ec13ebb --- /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 0000000000000000000000000000000000000000..cada7dd5255e51c8ac2fbedf9f69f4e809ae72b7 --- /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 0000000000000000000000000000000000000000..f24fcb5e816ef901b538d04fbeec90d19ca46ca6 --- /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 0000000000000000000000000000000000000000..a27d03bffce62e4ad8e9be39a35309450c043435 --- /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 0000000000000000000000000000000000000000..4097153a60781aee46e6e9764decc84d7105e297 --- /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 0000000000000000000000000000000000000000..de1a9bfa8af7ae19c3e5f2ef081622d5a5f330b4 --- /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 0000000000000000000000000000000000000000..5a0493a6e9b504334d5df8ee86ecc3dcaaf1bced --- /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 0000000000000000000000000000000000000000..5b269d7fae603a671b35c97854a23611dffc9abb --- /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 0000000000000000000000000000000000000000..7c91cfa7578be6ba6deb2472809e16ec49de5dac --- /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 0000000000000000000000000000000000000000..61a77a26d8cdb7dd58d4ed1fcd5e1bb6a1c54e00 --- /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 0000000000000000000000000000000000000000..a7e46bcdf4cfd1a928286e1c4e0501aa79d399f9 --- /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 0000000000000000000000000000000000000000..5cdcee935bfe257802a824ab547e97639d7dbcbd --- /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 0000000000000000000000000000000000000000..1fea3ff9c1400bc1345c1c2efdace9d4a43c24b8 --- /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 0000000000000000000000000000000000000000..acb4ee09d6e0296b6c23ba4c7101639053429e1d --- /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 0000000000000000000000000000000000000000..346d36a906e9e7f61bd2a48be01a4dbdf1aac572 --- /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 0000000000000000000000000000000000000000..62fbb0eaf914523bd104906839caee017e036e49 --- /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 0000000000000000000000000000000000000000..b4faae206c4f0ca5c645b2a772007ab9379a1aa8 --- /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 0000000000000000000000000000000000000000..f0d77972ccb0fdbbb2d04eef88cffa55de8f2543 --- /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 0000000000000000000000000000000000000000..8e2164466401f76f1e5288a636c9b340dcfc0d5d --- /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 0000000000000000000000000000000000000000..cd3b423bb56bb4f75b0457b2c65070c8dec93f49 --- /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 0000000000000000000000000000000000000000..86f1bdff78fc31a158f243a303e37dbe46f31b5a --- /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 0000000000000000000000000000000000000000..4707711095f73a73578b21860593bc8eb4e4cd8c --- /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 0000000000000000000000000000000000000000..7ffb0a8b2942414783a9c89306ebf28a851ee3ba --- /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 0000000000000000000000000000000000000000..737ced0a3561d172adf8efea5dffa3c3d3941683 --- /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 0000000000000000000000000000000000000000..c0d971c381483033c132421ffbe3c02f79c45ddc --- /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 0000000000000000000000000000000000000000..dbdcd8a20fcf4a7c87e8af2a40fe96dd8d06032d --- /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 0000000000000000000000000000000000000000..529c25466f96f6675ad1f81931f247152d47c23f --- /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 0000000000000000000000000000000000000000..fdd767a142902c2bd51bd0235a35a4ccbeb914e9 --- /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 0000000000000000000000000000000000000000..7442647c9624ee05216c34813a366384ef134434 --- /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 0000000000000000000000000000000000000000..6de7962161a8991fb2c17f032b729cf1833fe8db --- /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 0000000000000000000000000000000000000000..919f1eee4aeb6a16b6947cbee01bde1e027913db --- /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 0000000000000000000000000000000000000000..03458a23aa42f8f156e60c88164eb4283a70b80e --- /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 0000000000000000000000000000000000000000..379891fc65fd0757a24aa1e198f2d8dccfcd04c4 --- /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 0000000000000000000000000000000000000000..ca79c794ce37eda56aa16598607de5bc1b4627e1 --- /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 0000000000000000000000000000000000000000..0e71a276a11b2d58601eaeebb6c99aa245d07dc3 --- /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 0000000000000000000000000000000000000000..a41ea98698b7b6169c3db19cc13ae6fab10dbde5 --- /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 0000000000000000000000000000000000000000..756112f4155ed5d81351e8e30202cd689d5da919 --- /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 0000000000000000000000000000000000000000..1edc7a78dd440de19ae884aad1d573aa4d06973b --- /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 0000000000000000000000000000000000000000..6fe19ef3ca00bda18da095d84698479b4e0f36c7 --- /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 0000000000000000000000000000000000000000..b3146ceaa7556f56c5c3ee1e830370aee56635c5 --- /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 0000000000000000000000000000000000000000..5c026df303499b4c799200f3d983c36ddaba663a --- /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 0000000000000000000000000000000000000000..5737ef51e2f6001773ac1f8b616d9757ccb4c5e9 --- /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 0000000000000000000000000000000000000000..59e400e53ede49134f227973606040e355cd4336 --- /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 0000000000000000000000000000000000000000..5d8bbc960401443185c19265c6f39e7dd9ea218c --- /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 0000000000000000000000000000000000000000..e753b4eba52ce275a044a02f661ad9e2218a3535 --- /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 0000000000000000000000000000000000000000..cb317eb7a455ec9862a06fb0c93c6bde4fa06747 --- /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 0000000000000000000000000000000000000000..d3adc5516b3b77579698bb4e67320a1492332008 --- /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 0000000000000000000000000000000000000000..2b4edf6b310dca5e7fc76516685f25275b545a1f --- /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 0000000000000000000000000000000000000000..3261019bf1b7d688a57d0826e84dce4ebadc0683 --- /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 0000000000000000000000000000000000000000..e5fbe2fbc436c1af812a2764b66fa168e4464286 --- /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 0000000000000000000000000000000000000000..46491733338d0dd0853baea02df217a6b0b7aadf --- /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 0000000000000000000000000000000000000000..d8fe6104b53f96888f212f0be448af41fc32c415 --- /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 0000000000000000000000000000000000000000..a6582a2019453385d6919e807da5930184295891 --- /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 0000000000000000000000000000000000000000..1fe16ae0a147b65831aa3a8da0a7a02713ccd82a --- /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 0000000000000000000000000000000000000000..e9dc1643315f307a680f07006d406338de796a72 --- /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 0000000000000000000000000000000000000000..8c229d90a7e9edfd76948cf412c5c0881891827b --- /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 0000000000000000000000000000000000000000..34ac3c16519bb4c1417c9aa59e240aec94c21780 --- /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 0000000000000000000000000000000000000000..99328dc8bc00eddbceb7ac2163518e7fc0f4c24a --- /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 0000000000000000000000000000000000000000..5a715a017a2f7b51c99bef02d1ba7e34e8fc3636 --- /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 0000000000000000000000000000000000000000..c0c83b65381f5eec017a965c691d48ed5f704d4a --- /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 0000000000000000000000000000000000000000..c1198c17ea6c411aceb1e090055aaab1a8033a4b --- /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 0000000000000000000000000000000000000000..9fbcd9f92c5a2477c33eb979a407ef8e5a4a7b79 --- /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 0000000000000000000000000000000000000000..1e97a11ebc43c98904009824a09a87fdcc5f65b9 --- /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 0000000000000000000000000000000000000000..4e3dded5e1f8468d08a44469421efe36dd4119bc --- /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 0000000000000000000000000000000000000000..2d46c0f21823dddd12af3474ed289d04908ab7ed --- /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 0000000000000000000000000000000000000000..1ea66296020b8f8337f787733bd6717f80e2a1d3 --- /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 0000000000000000000000000000000000000000..b93861dd85f92013a7b5fcf6e623cdaab6b0e84e --- /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 0000000000000000000000000000000000000000..5b89a0dc798aa0f4db46b9b2aea609377ae4e40e --- /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 0000000000000000000000000000000000000000..b0ac17bb42e8b546fbe3030c790c7470f10aec63 --- /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 0000000000000000000000000000000000000000..fdae696410b6fd63ec410daf63c50f4330a7a862 --- /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 0000000000000000000000000000000000000000..c2f7814854018a63afb65236f1123bbdd49edec7 --- /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 0000000000000000000000000000000000000000..ce9518f5fea7b9219c10f01b07c853af6a43b0f9 --- /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 0000000000000000000000000000000000000000..a7a7b51bdfb3934f8c5edf2684dbadb7d62b21f3 --- /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 0000000000000000000000000000000000000000..27dbb9ce6580dd67b6a6f0c5390020972d87f2b7 --- /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 0000000000000000000000000000000000000000..82136d94f41f38b603993b9161bdc9a8303b819a --- /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 0000000000000000000000000000000000000000..8276bc72461d05ba9c118c0fa063b374729571b4 --- /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 0000000000000000000000000000000000000000..4140a2e04d5768117cf79e50e7fa7ae0fadee65c --- /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 0000000000000000000000000000000000000000..3980e88e109013c8dad4d5a3261d565caba52ab4 --- /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 0000000000000000000000000000000000000000..69f8769f694aa9346e55e1dccc2719c8664a9ea1 --- /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 0000000000000000000000000000000000000000..6ae1e33974cc0f4deff98bcfb8463bf98ec659b3 --- /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 0000000000000000000000000000000000000000..756289e8e580a3f2bcca46356be39d1713a7c349 --- /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 0000000000000000000000000000000000000000..fb79d68074e7f2bd3594e3a53242f2a2d9ab3fb9 --- /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 0000000000000000000000000000000000000000..412ba1909c07f5fa20307fa141729b71ee4a815b --- /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 0000000000000000000000000000000000000000..f4548ff2bd1317a61a0297097c56ac8616995b59 --- /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 0000000000000000000000000000000000000000..6b1d6d25933feffe4d1f949786d3fec2916af898 --- /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 0000000000000000000000000000000000000000..6362d9e63ea9bcd2a72c2bb211eb61d635dca69e --- /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 0000000000000000000000000000000000000000..e659609e0fe6a5f3d59c125154e3260d4128a670 --- /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 0000000000000000000000000000000000000000..628476264d63ed59ac3fff7fa63746cc7c5487b0 --- /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 0000000000000000000000000000000000000000..34516cd1bed4f31ff6b3ccc07abe8cef130c5f53 --- /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 0000000000000000000000000000000000000000..6f30f26da11da7775e3bccdc5e3154a7ba728925 --- /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 0000000000000000000000000000000000000000..fe96f4ffc7c54322d8e7a8cea17282158615152f --- /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 0000000000000000000000000000000000000000..9f0224adf3f22c3bb4dfde10b495785a8b0f5208 --- /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 0000000000000000000000000000000000000000..d38eae63abb2c27d36e09d9236cdc0062e2bc5f3 --- /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 0000000000000000000000000000000000000000..92c7f799aad78f397b353a46e1065eb03d554f10 --- /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 0000000000000000000000000000000000000000..0468dc91c6af4df56561b91e470c53c82195769d --- /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 0000000000000000000000000000000000000000..d945f5366097e64f21b7cdb82c3bbb9cc5b586d1 --- /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 0000000000000000000000000000000000000000..fe7a06afece2dc56e1612d7f90fae5e5c77b06db --- /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 0000000000000000000000000000000000000000..bf73d8f128675fc4916c6ef71194a2e6ceaacc0c --- /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 0000000000000000000000000000000000000000..3b98f23bed1d52c5ab3dfddc5f38bd692f49300b --- /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 0000000000000000000000000000000000000000..960ff796287fb6ebfb1c3667ae3a9c3db0251d96 --- /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 0000000000000000000000000000000000000000..2e58e060ecac819668d829e6f100ad0e2ee44d86 --- /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 0000000000000000000000000000000000000000..34504d0e0b2f79bc1c200ae3b6c99b6fa90f1489 --- /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 0000000000000000000000000000000000000000..939c6f7efc05fd713074155d275baf26746ee47b --- /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 0000000000000000000000000000000000000000..bcad15f32b7a6679e17111459f6d81bbab6253fa --- /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 0000000000000000000000000000000000000000..ce31bae64fde51b58877b5783d6167fe6b88d191 --- /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 0000000000000000000000000000000000000000..eeb9386a28ce52bbc1ceb3d6e8ce4cd1265f33ff --- /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 0000000000000000000000000000000000000000..d6cbfd70e5aaed1fc31be12fd173e10730e4c520 --- /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 0000000000000000000000000000000000000000..34c668cf3caa1771960b3d82f0f1e7734bd21e72 --- /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 0000000000000000000000000000000000000000..f7d67128e8a5e3dde28d9d10af74acd29d73ef35 --- /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 0000000000000000000000000000000000000000..e740c96592ba3f247238111f3dbcb26cdeffc912 --- /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 0000000000000000000000000000000000000000..f787356377698b69c515a249562d743a01f8606d --- /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 0000000000000000000000000000000000000000..f53ea7d8a6a1f954eb54aeb583d3f5316ae2bae5 --- /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 0000000000000000000000000000000000000000..7733862d8cf5411760a47d41721fa68a41a5f5c3 --- /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 0000000000000000000000000000000000000000..b978c152609c1fd0dd99e33f2a7cb2b1b8028d3a --- /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 0000000000000000000000000000000000000000..8f37fcc6eab3575962929d9aa7bdb62cb6a3ecc5 --- /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 0000000000000000000000000000000000000000..25603f30287a21377ca5746cac0a9adea123a0dc --- /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 0000000000000000000000000000000000000000..7f8cd707195dccacb1bc0b4ff13b630795d89586 --- /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 0000000000000000000000000000000000000000..c184ab2d4eb48b89909e67b09041c49b256d2af4 --- /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 0000000000000000000000000000000000000000..bba6d471379d999d89983cd587d6c542b1c91e8d --- /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 0000000000000000000000000000000000000000..46633894a5d5fe764a86e2dd0c7298aa01a0d6f4 --- /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 0000000000000000000000000000000000000000..fb760044840c03ee7e61947574e01886cd03c8ed --- /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 0000000000000000000000000000000000000000..2a3baa9c3c5fe3d434395ee4a96d8157673165b6 --- /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 0000000000000000000000000000000000000000..5fe7d462ce8fa8da6ac4dfbae945bbf2da280ef9 --- /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 0000000000000000000000000000000000000000..cd9c021de5d2ce3b27032a8736630a5905691e13 --- /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 0000000000000000000000000000000000000000..0ded31fb6f0bf29ea50e06d8336a754db927cf83 --- /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 0000000000000000000000000000000000000000..e9169050219cdef5c819046eec5c21ef4a5a4cb6 --- /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 0000000000000000000000000000000000000000..ba330b58c8b7acac61f5e9ae8fc73f034a764ae6 --- /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 0000000000000000000000000000000000000000..a50b63d53a79d405fdb64c199ed4b88331995844 --- /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 0000000000000000000000000000000000000000..b890951e1f9d7e9889c2d79d6893b6ea304de79a --- /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 0000000000000000000000000000000000000000..14e4790fe21a3413d59746d420aa19e9e11bfc1a --- /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 0000000000000000000000000000000000000000..b3a5d24a9c32b03d94761fb4d95213903114989e --- /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 0000000000000000000000000000000000000000..8d1283aee40590ff5e84bc06f863202293caa27c --- /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 0000000000000000000000000000000000000000..4f3f38669b0614a25e522b56d7edf7d9b6cd4938 --- /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 0000000000000000000000000000000000000000..812bd186d5e7a0dff2082ecf2cdbfea0ebadd518 --- /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 0000000000000000000000000000000000000000..3c2e9e42d82a2c1448540b7c143a04b10b31097d --- /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 0000000000000000000000000000000000000000..933c08cdd8df19407df4d2b4584a546fe56eafe4 --- /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 0000000000000000000000000000000000000000..84881d24a9e209156c61abb4d1cf056e59f69bf1 --- /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 0000000000000000000000000000000000000000..fbee0e1d915883c48d53b200acfbfd4e6a8b216d --- /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 0000000000000000000000000000000000000000..82ebdf982593c1a4fbaec33abb2e42bbfefe6b23 --- /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 0000000000000000000000000000000000000000..848debad875201231545a8facf03bb6bc23a14cd --- /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 0000000000000000000000000000000000000000..03d213bf490192d92080dfd572ff1b9c57b17203 --- /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 0000000000000000000000000000000000000000..ff1d64c4ee39c17bb83fd7714a8b83e6de4d2de1 --- /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 0000000000000000000000000000000000000000..67473570a920af6b1df4ea3bc5880a413e92fd87 --- /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 0000000000000000000000000000000000000000..54298cec00e011d020b90e180795c4a749d596cb --- /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 0000000000000000000000000000000000000000..4d59c022fc1b3553d599298941b7c359a3842579 --- /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 0000000000000000000000000000000000000000..e2fc4a5ed01230783b5a92fa3aab4a413d83ccb5 --- /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 0000000000000000000000000000000000000000..c3fd33a3e08490714d60602bae13b28b9c11dc50 --- /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 0000000000000000000000000000000000000000..151f8a4beacd8a6e1e8047058f470c0ec00d6abb --- /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 0000000000000000000000000000000000000000..108a5e6b304347bae9f1855fd26f0229f88874b2 --- /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 0000000000000000000000000000000000000000..df0720973d51c893e4176d155dc6eee9b26e6a8d --- /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 0000000000000000000000000000000000000000..37fdc49aeb73fd1edb7a187b3dad2fdd8a2ed365 --- /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 0000000000000000000000000000000000000000..4b80c6291df9dc390ea35b264538d4387c6c2dd1 --- /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 0000000000000000000000000000000000000000..b78152425d82a1524590bd2274599fa1328e8112 --- /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 0000000000000000000000000000000000000000..0b581979ed54628e0262936d0da8b8b584b114e1 --- /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 0000000000000000000000000000000000000000..232662f7ad275720f40eea64252774f242f7f638 --- /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 0000000000000000000000000000000000000000..735993cddf0e672aed9786743cb6977d2423adef --- /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 0000000000000000000000000000000000000000..1b08a46077a13d7a17fa13dabfbeff3137ccf070 --- /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 0000000000000000000000000000000000000000..ae4953a92d9d62d3d7593541c66969e183a7e7e9 --- /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 0000000000000000000000000000000000000000..1f5ab483b18f48f4d81cf61b3c0607aa405243e0 --- /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 0000000000000000000000000000000000000000..df8c35bf413189a961b27ae901e97ebe253c0be0 --- /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 0000000000000000000000000000000000000000..a17ba945a092e035e8f2b3f67afaf561120359c6 --- /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 0000000000000000000000000000000000000000..9bf1416083763353adca17349098870ddcec68ac --- /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 0000000000000000000000000000000000000000..6c3613655526d2791bbf9a62d6284cb998c0e65a --- /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 0000000000000000000000000000000000000000..62788ef1cd8e416fd03f03dc93a412310b97c9c1 --- /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 0000000000000000000000000000000000000000..f020176938ddcf9c8bddbec79695ba8c54e98ade --- /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 0000000000000000000000000000000000000000..26182eb179b55bf9fc102fda81f4c7d15f28817b --- /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 0000000000000000000000000000000000000000..47434352141a5248de84ab4b1e17ec85b98d1a1c --- /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 0000000000000000000000000000000000000000..847e5031111ae2fb9ac640ed4bd88222efac0cb9 --- /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 0000000000000000000000000000000000000000..e0e703a5927570ef5363024633cd2934b74cc90f --- /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 0000000000000000000000000000000000000000..169f2c0b172ed471b5926dde5f4b93a7d813375c --- /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 0000000000000000000000000000000000000000..b19a55f1fd418ced5259165305749c591a2fbf84 --- /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 0000000000000000000000000000000000000000..d6c5be7e1fd09f29fc539dc709d03aef7fac4d56 --- /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/requirements.txt b/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..f249b7f180a864ee914e4dcdb48f5310a67fe836 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,3 @@ +pyyaml +gradio==4.42.1 +pandas