mirageco commited on
Commit
7850283
·
1 Parent(s): 542179f

Initial commit

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. app.py +222 -0
  2. models/Amber.yml +116 -0
  3. models/Aquila-7B.yml +116 -0
  4. models/AraGPT2.yml +116 -0
  5. models/Arctic-Base.yml +116 -0
  6. models/Arctic-Instruct.yml +116 -0
  7. models/BLOOM.yml +116 -0
  8. models/BTLM-3B-8k-base-.yml +116 -0
  9. models/Baichuan-1-13B.yml +116 -0
  10. models/Baichuan-1-53B.yml +116 -0
  11. models/Baichuan-1-7B.yml +116 -0
  12. models/Baichuan-2.yml +116 -0
  13. models/Bilingual-gpt-neox-4b.yml +116 -0
  14. models/BioMedGPT.yml +116 -0
  15. models/BlackMamba-2.8B.yml +116 -0
  16. models/BloombergGPT.yml +116 -0
  17. models/ByT5.yml +116 -0
  18. models/CPM-2.yml +116 -0
  19. models/CPM.yml +116 -0
  20. models/CerebrasGPT.yml +116 -0
  21. models/ChatGLM.yml +116 -0
  22. models/ChatGLM2.yml +116 -0
  23. models/ChatGLM3.yml +116 -0
  24. models/Chinchilla.yml +116 -0
  25. models/Claude-1.yml +116 -0
  26. models/Claude-2.yml +116 -0
  27. models/CodeFuse.yml +116 -0
  28. models/CodeGemma-2B.yml +116 -0
  29. models/CodeGemma-7B-Instruct.yml +116 -0
  30. models/CodeGemma-7B.yml +116 -0
  31. models/CodeGen.yml +116 -0
  32. models/CodeGen2.yml +116 -0
  33. models/CodeT5+-16B.yml +116 -0
  34. models/CodeT5+-220M.yml +116 -0
  35. models/CodeT5+-2B.yml +116 -0
  36. models/CodeT5+-6B.yml +116 -0
  37. models/CodeT5+-770M.yml +116 -0
  38. models/CodeT5.yml +116 -0
  39. models/Codegen2.5.yml +116 -0
  40. models/Codex.yml +116 -0
  41. models/Command-R+.yml +116 -0
  42. models/Command-R.yml +116 -0
  43. models/CrystalChat.yml +116 -0
  44. models/CrystalCoder.yml +116 -0
  45. models/DeBERTa.yml +116 -0
  46. models/DeciCoder.yml +116 -0
  47. models/DeepSeek-Coder.yml +116 -0
  48. models/DeepSeek-MoE-145B.yml +116 -0
  49. models/DeepSeek-MoE-16B.yml +116 -0
  50. models/Dou-Bao.yml +116 -0
app.py ADDED
@@ -0,0 +1,222 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import yaml
3
+ import gradio as gr
4
+ import pandas as pd
5
+
6
+ # ---- Model Class ---- #
7
+ class Model:
8
+ def __init__(self, model_data):
9
+ """
10
+ Initializes the model with the provided model_data dictionary (from YAML).
11
+ """
12
+ self.data = model_data
13
+
14
+ def get_name(self):
15
+ return self.data.get("release", {}).get("name", "Unknown")
16
+
17
+ def get_producer(self):
18
+ return self.data.get("release", {}).get("producer", "Unknown")
19
+
20
+ def get_classification(self):
21
+ return self.data.get("release", {}).get("classification", "Unclassified")
22
+
23
+ def get_last_updated(self):
24
+ return self.data.get("release", {}).get("date", "Unknown")
25
+
26
+ def get_badge(self):
27
+ return self.data.get("release", {}).get("badge", "")
28
+
29
+ # ---- Load and Process Models in a Directory ---- #
30
+ def load_all_models(directory):
31
+ """
32
+ Load all models from the specified directory.
33
+ Each model is expected to have a .yml file.
34
+ """
35
+ models_data = []
36
+
37
+ for filename in os.listdir(directory):
38
+ if filename.endswith(".yml"):
39
+ filepath = os.path.join(directory, filename)
40
+ # Specify encoding as 'utf-8' to avoid decoding issues
41
+ with open(filepath, 'r', encoding='utf-8') as file:
42
+ model_data = yaml.safe_load(file)
43
+ model = Model(model_data)
44
+
45
+ # Append the model information to our list
46
+ models_data.append({
47
+ "Name": model.get_name(),
48
+ "Organization": model.get_producer(),
49
+ "Classification": model.get_classification(),
50
+ "Last Updated": model.get_last_updated(),
51
+ "Badge": model.get_badge()
52
+ })
53
+
54
+ return models_data
55
+
56
+ # ---- Convert Model Data to a DataFrame ---- #
57
+ def get_model_table(directory):
58
+ """
59
+ Get a table of all models and their information.
60
+ """
61
+ models_data = load_all_models(directory)
62
+
63
+ # Create a Pandas DataFrame for easy table generation
64
+ df = pd.DataFrame(models_data)
65
+ return df
66
+
67
+ # ---- Global DataFrame ---- #
68
+ # Load the data once and reuse it for filtering and pagination
69
+ directory = "./models" # You can change this to your actual models folder path
70
+ global_df = get_model_table(directory)
71
+
72
+ # ---- Filtering and Pagination Functions ---- #
73
+ def filter_data(name_query, org_query):
74
+ """
75
+ Filter the global dataframe based on the search queries.
76
+ """
77
+ df = global_df.copy()
78
+ if name_query:
79
+ df = df[df['Name'].str.contains(name_query, case=False, na=False)]
80
+ if org_query:
81
+ df = df[df['Organization'].str.contains(org_query, case=False, na=False)]
82
+ return df.reset_index(drop=True)
83
+
84
+ def paginate_data(df, page_size, page_number):
85
+ """
86
+ Paginate the filtered dataframe.
87
+ """
88
+ total_rows = len(df)
89
+ total_pages = (total_rows + page_size - 1) // page_size # Calculate total pages
90
+
91
+ # Ensure page_number is within valid range
92
+ if page_number < 1:
93
+ page_number = 1
94
+ elif page_number > total_pages:
95
+ page_number = total_pages
96
+
97
+ start_row = (page_number - 1) * page_size
98
+ end_row = start_row + page_size
99
+ page_data = df.iloc[start_row:end_row]
100
+ return page_data, total_pages
101
+
102
+ # ---- Gradio Interface ---- #
103
+ def update_table(name_query, org_query, page_size, page_number):
104
+ """
105
+ Update the table based on search queries and pagination.
106
+ """
107
+ filtered_df = filter_data(name_query, org_query)
108
+ page_size = int(page_size)
109
+ page_number = int(page_number)
110
+ page_data, total_pages = paginate_data(filtered_df, page_size, page_number)
111
+ return page_data, total_pages
112
+
113
+ def go_to_page(name_query, org_query, page_size, go_to_page_number):
114
+ """
115
+ Go to a specific page number.
116
+ """
117
+ return update_table(name_query, org_query, page_size, go_to_page_number)
118
+
119
+ # Define the Gradio interface using Blocks
120
+ with gr.Blocks() as demo:
121
+ # MOF Description
122
+ gr.Markdown("""
123
+ # Model Openness Framework (MOF)
124
+
125
+ 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.
126
+
127
+ ## Model Openness Tool (MOT)
128
+
129
+ 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.
130
+
131
+ ### How It Works
132
+
133
+ 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.
134
+
135
+ ### Why We Developed MOT
136
+
137
+ 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.
138
+
139
+ **Explore the Model Openness Framework and try the [Model Openness Tool](https://mot.isitopen.ai/) today to see how your models measure up.**
140
+ """)
141
+
142
+ # Search Filters
143
+ with gr.Row():
144
+ name_query = gr.Textbox(label="Search by Name")
145
+ org_query = gr.Textbox(label="Search by Organization")
146
+
147
+ # Table and Pagination Controls
148
+ with gr.Column():
149
+ # Initialize with the first page of data
150
+ initial_page_data, initial_total_pages = paginate_data(global_df, page_size=50, page_number=1)
151
+ table_output = gr.Dataframe(
152
+ value=initial_page_data,
153
+ headers=["Name", "Organization", "Classification", "Last Updated", "Badge"],
154
+ label="Models Table"
155
+ )
156
+
157
+ # Pagination Controls
158
+ with gr.Row():
159
+ prev_button = gr.Button("← Previous")
160
+ next_button = gr.Button("Next →")
161
+ page_numbers = gr.State(value=1) # Keep track of the current page
162
+ total_pages_text = gr.Markdown(value=f"Page 1 of {initial_total_pages}")
163
+ go_to_input = gr.Number(label="Go to Page", value=1, precision=0)
164
+ go_to_button = gr.Button("Go")
165
+
166
+ # Event Handlers
167
+ def update_pagination(name_query, org_query, page_size, page_number):
168
+ page_data, total_pages = update_table(name_query, org_query, page_size, page_number)
169
+ total_pages_text.value = f"Page {page_number} of {total_pages}"
170
+ return page_data, total_pages_text.value, page_number
171
+
172
+ # When search filters change, reset to page 1
173
+ def on_search_change(name_query, org_query):
174
+ page_data, total_pages = update_table(name_query, org_query, page_size=50, page_number=1)
175
+ total_pages_text.value = f"Page 1 of {total_pages}"
176
+ return page_data, total_pages_text.value, 1
177
+
178
+ name_query.change(
179
+ fn=on_search_change,
180
+ inputs=[name_query, org_query],
181
+ outputs=[table_output, total_pages_text, page_numbers]
182
+ )
183
+ org_query.change(
184
+ fn=on_search_change,
185
+ inputs=[name_query, org_query],
186
+ outputs=[table_output, total_pages_text, page_numbers]
187
+ )
188
+
189
+ # Previous Button
190
+ def on_prev(name_query, org_query, page_size, current_page):
191
+ new_page = max(1, current_page - 1)
192
+ return update_pagination(name_query, org_query, page_size, new_page)
193
+
194
+ prev_button.click(
195
+ fn=on_prev,
196
+ inputs=[name_query, org_query, gr.State(value=50), page_numbers],
197
+ outputs=[table_output, total_pages_text, page_numbers]
198
+ )
199
+
200
+ # Next Button
201
+ def on_next(name_query, org_query, page_size, current_page):
202
+ new_page = current_page + 1
203
+ return update_pagination(name_query, org_query, page_size, new_page)
204
+
205
+ next_button.click(
206
+ fn=on_next,
207
+ inputs=[name_query, org_query, gr.State(value=50), page_numbers],
208
+ outputs=[table_output, total_pages_text, page_numbers]
209
+ )
210
+
211
+ # Go To Page
212
+ def on_go(name_query, org_query, page_size, go_to_page_number):
213
+ return update_pagination(name_query, org_query, page_size, int(go_to_page_number))
214
+
215
+ go_to_button.click(
216
+ fn=on_go,
217
+ inputs=[name_query, org_query, gr.State(value=50), go_to_input],
218
+ outputs=[table_output, total_pages_text, page_numbers]
219
+ )
220
+
221
+ # Launch the Gradio app
222
+ demo.launch()
models/Amber.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: Amber
7
+ version: 7B
8
+ date: '2024-10-03'
9
+ type: language
10
+ architecture: 'transformer decoder'
11
+ origin: Amber
12
+ producer: LLM360
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: Apache-2.0
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: Apache-2.0
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: Apache-2.0
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: Apache-2.0
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: Apache-2.0
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: Apache-2.0
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: Apache-2.0
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: Apache-2.0
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'License not specified'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'License not specified'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'Component not included'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'License not specified'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'License not specified'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'License not specified'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'License not specified'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'License not specified'
116
+ license_path: ''
models/Aquila-7B.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: Aquila-7B
7
+ version: 7B
8
+ date: '2024-10-03'
9
+ type: language
10
+ architecture: 'transformer decoder'
11
+ origin: ''
12
+ producer: BAAI
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: Apache-2.0
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Pending evaluation'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Pending evaluation'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: 'Pending evaluation'
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'Pending evaluation'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Pending evaluation'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: 'BAAI Aquila Model License'
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Pending evaluation'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'Pending evaluation'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Pending evaluation'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'Pending evaluation'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Pending evaluation'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'Pending evaluation'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'Pending evaluation'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'Pending evaluation'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'Pending evaluation'
116
+ license_path: ''
models/AraGPT2.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: AraGPT2
7
+ version: 1.5B
8
+ date: '2024-10-03'
9
+ type: language
10
+ architecture: 'transformer decoder'
11
+ origin: ''
12
+ producer: 'American University of Beirut'
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: 'Pending evaluation'
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Pending evaluation'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Pending evaluation'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: 'Pending evaluation'
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'Pending evaluation'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Pending evaluation'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: 'Pending evaluation'
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Pending evaluation'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'License not specified'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Pending evaluation'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'Pending evaluation'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Pending evaluation'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'Pending evaluation'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'Pending evaluation'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'Pending evaluation'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'Pending evaluation'
116
+ license_path: ''
models/Arctic-Base.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: Arctic-Base
7
+ version: 480B
8
+ date: '2024-10-03'
9
+ type: language
10
+ architecture: 'transformer decoder'
11
+ origin: Arctic-Base
12
+ producer: Snowflake
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: Apache-2.0
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Component not included'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Component not included'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: 'Component not included'
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'Component not included'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Component not included'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: Apache-2.0
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Component not included'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'Component not included'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Component not included'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'Component not included'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Component not included'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'Component not included'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'Component not included'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'Component not included'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'Component not included'
116
+ license_path: ''
models/Arctic-Instruct.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: Arctic-Instruct
7
+ version: 480B
8
+ date: '2024-10-03'
9
+ type: language
10
+ architecture: 'transformer decoder'
11
+ origin: Arctic-Base
12
+ producer: Snowflake
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: Apache-2.0
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Component not included'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Component not included'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: 'Component not included'
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'Component not included'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Component not included'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: Apache-2.0
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Component not included'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'Component not included'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Component not included'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'Component not included'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Component not included'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'Component not included'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'Component not included'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'Component not included'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'Component not included'
116
+ license_path: ''
models/BLOOM.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: BLOOM
7
+ version: 176B
8
+ date: '2024-10-03'
9
+ type: language
10
+ architecture: 'transformer decoder'
11
+ origin: ''
12
+ producer: BigScience
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: bigscience-bloom-rail-1.0
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Component not included'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Component not included'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: 'Component not included'
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'Component not included'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Component not included'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: 'BigScience RAIL License v1.0'
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Component not included'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'License not specified'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Component not included'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'Component not included'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Component not included'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'License not specified'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'License not specified'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'License not specified'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'Component not included'
116
+ license_path: ''
models/BTLM-3B-8k-base-.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: BTLM-3B-8k-base-
7
+ version: 3B
8
+ date: '2024-10-03'
9
+ type: language
10
+ architecture: 'transformer decoder'
11
+ origin: ''
12
+ producer: Cerebras
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: Apache-2.0
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Component not included'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Component not included'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: 'Component not included'
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'Component not included'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Component not included'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: Apache-2.0
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Component not included'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'License not specified'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Component not included'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: Apache-2.0
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Component not included'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'License not specified'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'License not specified'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'License not specified'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'Component not included'
116
+ license_path: ''
models/Baichuan-1-13B.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: Baichuan-1-13B
7
+ version: 13B
8
+ date: '2024-10-03'
9
+ type: language
10
+ architecture: 'transformer decoder'
11
+ origin: Baichuan-1
12
+ producer: 'Baichuan AI'
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: Apache-2.0
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Component not included'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Component not included'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: Apache-2.0
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: Apache-2.0
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Component not included'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: Apache-2.0
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Component not included'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'Component not included'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Component not included'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'Component not included'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Component not included'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'Component not included'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'Component not included'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'Component not included'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'Component not included'
116
+ license_path: ''
models/Baichuan-1-53B.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: Baichuan-1-53B
7
+ version: 53B
8
+ date: '2024-10-03'
9
+ type: language
10
+ architecture: 'transformer decoder'
11
+ origin: Baichuan-1
12
+ producer: 'Baichuan AI'
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: Apache-2.0
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Pending evaluation'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Component not included'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: 'Component not included'
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'Component not included'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Component not included'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: Apache-2.0
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Component not included'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'Component not included'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Component not included'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'Component not included'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Component not included'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'Component not included'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'Component not included'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'Component not included'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'Component not included'
116
+ license_path: ''
models/Baichuan-1-7B.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: Baichuan-1-7B
7
+ version: 7B
8
+ date: '2024-10-03'
9
+ type: language
10
+ architecture: 'transformer decoder'
11
+ origin: Baichuan-1
12
+ producer: 'Baichuan AI'
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: Apache-2.0
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Component not included'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: Apache-2.0
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: Apache-2.0
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: Apache-2.0
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Component not included'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: 'Baichuan-7B License'
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Component not included'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'Component not included'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Component not included'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'Component not included'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Component not included'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'Component not included'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'Component not included'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'Component not included'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'Component not included'
116
+ license_path: ''
models/Baichuan-2.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: Baichuan-2
7
+ version: 13B
8
+ date: '2024-10-03'
9
+ type: language
10
+ architecture: 'transformer decoder'
11
+ origin: Baichuan-2
12
+ producer: 'Baichuan AI'
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: 'Pending evaluation'
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Pending evaluation'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Pending evaluation'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: 'Pending evaluation'
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'Pending evaluation'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Pending evaluation'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: Apache-2.0
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Pending evaluation'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'Pending evaluation'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Pending evaluation'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'Pending evaluation'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Pending evaluation'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'Pending evaluation'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'Pending evaluation'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'Pending evaluation'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'Pending evaluation'
116
+ license_path: ''
models/Bilingual-gpt-neox-4b.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: Bilingual-gpt-neox-4b
7
+ version: 3.8B
8
+ date: '2024-10-03'
9
+ type: language
10
+ architecture: 'transformer decoder'
11
+ origin: GPT-NeoX
12
+ producer: Rinna
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: 'MIT license'
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Component not included'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Component not included'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: 'Component not included'
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'Component not included'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Component not included'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: MIT
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Component not included'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'mc4, cc100, wikipedia, EleutherAI/pile, togethercomputer/RedPajama-Data-1T'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Component not included'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'Component not included'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Component not included'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'License not specified'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'License not specified'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'License not specified'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'Component not included'
116
+ license_path: ''
models/BioMedGPT.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: BioMedGPT
7
+ version: 2.7B
8
+ date: '2024-10-03'
9
+ type: language
10
+ architecture: 'transformer decoder'
11
+ origin: ''
12
+ producer: 'Stanford CRFM'
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: bigscience-bloom-rail-1.0
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Component not included'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Component not included'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: 'Component not included'
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'Component not included'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Component not included'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: bigscience-bloom-rail-1.0
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Component not included'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: pubmed
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Component not included'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: bigscience-bloom-rail-1.0
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Component not included'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'License not specified'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'License not specified'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'License not specified'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'Component not included'
116
+ license_path: ''
models/BlackMamba-2.8B.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: BlackMamba-2.8B
7
+ version: 2.8B
8
+ date: '2024-10-03'
9
+ type: language
10
+ architecture: ''
11
+ origin: ''
12
+ producer: Zyphra
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: Apache-2.0
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Component not included'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Component not included'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: 'Component not included'
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'Component not included'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Component not included'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: Apache-2.0
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Component not included'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'License not specified'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Component not included'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'Component not included'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Component not included'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'License not specified'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'License not specified'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'License not specified'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'Component not included'
116
+ license_path: ''
models/BloombergGPT.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: BloombergGPT
7
+ version: 50B
8
+ date: '2024-10-03'
9
+ type: language
10
+ architecture: 'transformer decoder'
11
+ origin: ''
12
+ producer: Bloomberg
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: Undisclosed
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: Undisclosed
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: Undisclosed
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: Undisclosed
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: Undisclosed
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: Undisclosed
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: Undisclosed
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: Undisclosed
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'License not specified'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: Undisclosed
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: Undisclosed
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: Undisclosed
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: Undisclosed
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: Undisclosed
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: Undisclosed
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: Undisclosed
116
+ license_path: ''
models/ByT5.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: ByT5
7
+ version: 13B
8
+ date: '2024-10-03'
9
+ type: language
10
+ architecture: 'transformer encoder-decoder'
11
+ origin: ''
12
+ producer: Google
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: Apache-2.0
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Component not included'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Component not included'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: 'Component not included'
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'Component not included'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Component not included'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: Apache-2.0
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Component not included'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'License not specified'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Component not included'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: Apache-2.0
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Component not included'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'License not specified'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'License not specified'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'License not specified'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'Component not included'
116
+ license_path: ''
models/CPM-2.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: CPM-2
7
+ version: 11B
8
+ date: '2024-10-03'
9
+ type: language
10
+ architecture: decoder
11
+ origin: ''
12
+ producer: 'Tsinghua University'
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: 'Pending evaluation'
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Pending evaluation'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Pending evaluation'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: 'Pending evaluation'
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'Pending evaluation'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Pending evaluation'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: 'Pending evaluation'
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Pending evaluation'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'Pending evaluation'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Pending evaluation'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'Pending evaluation'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Pending evaluation'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'Pending evaluation'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'Pending evaluation'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'Pending evaluation'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'Pending evaluation'
116
+ license_path: ''
models/CPM.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: CPM
7
+ version: 2.6B
8
+ date: '2024-10-03'
9
+ type: language
10
+ architecture: decoder
11
+ origin: ''
12
+ producer: 'Tsinghua University'
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: 'Pending evaluation'
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Pending evaluation'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Pending evaluation'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: 'Pending evaluation'
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'Pending evaluation'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Pending evaluation'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: 'Pending evaluation'
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Pending evaluation'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'Pending evaluation'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Pending evaluation'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'Pending evaluation'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Pending evaluation'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'Pending evaluation'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'Pending evaluation'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'Pending evaluation'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'Pending evaluation'
116
+ license_path: ''
models/CerebrasGPT.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: CerebrasGPT
7
+ version: 13B
8
+ date: '2024-10-03'
9
+ type: language
10
+ architecture: 'transformer decoder'
11
+ origin: ''
12
+ producer: Cerebras
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: Apache-2.0
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Component not included'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Component not included'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: 'Component not included'
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'Component not included'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Component not included'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: Apache-2.0
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Component not included'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'License not specified'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Component not included'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: Apache-2.0
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Component not included'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'License not specified'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'License not specified'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'License not specified'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'Component not included'
116
+ license_path: ''
models/ChatGLM.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: ChatGLM
7
+ version: 6B
8
+ date: '2024-10-03'
9
+ type: language
10
+ architecture: 'transformer decoder'
11
+ origin: ''
12
+ producer: 'Tsinghua University'
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: 'Pending evaluation'
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Pending evaluation'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Pending evaluation'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: 'Pending evaluation'
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'Pending evaluation'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Pending evaluation'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: 'ChatGLM-6B License'
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Pending evaluation'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'Pending evaluation'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Pending evaluation'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'Pending evaluation'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Pending evaluation'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'Pending evaluation'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'Pending evaluation'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'Pending evaluation'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'Pending evaluation'
116
+ license_path: ''
models/ChatGLM2.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: ChatGLM2
7
+ version: 6B
8
+ date: '2024-10-03'
9
+ type: language
10
+ architecture: 'transformer decoder'
11
+ origin: ChatGLM3-6B-Base
12
+ producer: 'Tsinghua University'
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: Apache-2.0
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Pending evaluation'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Pending evaluation'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: 'Pending evaluation'
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'Pending evaluation'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Pending evaluation'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: 'ChatGLM2-6B License'
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Pending evaluation'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'Pending evaluation'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Pending evaluation'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'Pending evaluation'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Pending evaluation'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'Pending evaluation'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'Pending evaluation'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'Pending evaluation'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'Pending evaluation'
116
+ license_path: ''
models/ChatGLM3.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: ChatGLM3
7
+ version: 6B
8
+ date: '2024-10-03'
9
+ type: language
10
+ architecture: 'transformer decoder'
11
+ origin: ChatGLM3-6B-Base
12
+ producer: 'Tsinghua University'
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: Apache-2.0
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Component not included'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: Apache-2.0
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: 'Component not included'
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'Component not included'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'License not specified'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: 'ChatGLM3-6B License'
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Component not included'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'Component not included'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Component not included'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'Component not included'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Component not included'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'License not specified'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'Component not included'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'Component not included'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'License not specified'
116
+ license_path: ''
models/Chinchilla.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: Chinchilla
7
+ version: 70B
8
+ date: '2024-10-03'
9
+ type: language
10
+ architecture: 'transformer decoder'
11
+ origin: ''
12
+ producer: DeepMind
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: Apache-2.0
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Component not included'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Component not included'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: 'Component not included'
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'Component not included'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Component not included'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: Apache-2.0
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Component not included'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'License not specified'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Component not included'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'Component not included'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Component not included'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'Component not included'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'Component not included'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'Component not included'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'Component not included'
116
+ license_path: ''
models/Claude-1.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: Claude-1
7
+ version: Undisclosed
8
+ date: '2024-10-03'
9
+ type: language
10
+ architecture: undisclosed
11
+ origin: ''
12
+ producer: Anthropic
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: 'MIT license'
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Component not included'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Component not included'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: 'Component not included'
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'Component not included'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Component not included'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: MIT
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Component not included'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'Component not included'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Component not included'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'Component not included'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Component not included'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'License not specified'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'Component not included'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'Component not included'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'License not specified'
116
+ license_path: ''
models/Claude-2.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: Claude-2
7
+ version: Undisclosed
8
+ date: '2024-10-03'
9
+ type: language
10
+ architecture: undisclosed
11
+ origin: Claude-1
12
+ producer: Anthropic
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: 'MIT license'
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Component not included'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Component not included'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: 'Component not included'
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'Component not included'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Component not included'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: MIT
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Component not included'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'Component not included'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Component not included'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'Component not included'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Component not included'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'License not specified'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'Component not included'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'Component not included'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'License not specified'
116
+ license_path: ''
models/CodeFuse.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: CodeFuse
7
+ version: 13B
8
+ date: '2024-10-03'
9
+ type: code
10
+ architecture: 'transformer decoder'
11
+ origin: ''
12
+ producer: 'Ant Group'
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: Apache-2.0
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Component not included'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Component not included'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: 'Component not included'
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'Component not included'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'License not specified'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: 'CodeFuse COMMUNITY LICENSE '
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Component not included'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'License not specified'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Component not included'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'License not specified'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Component not included'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'License not specified'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'Component not included'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'Component not included'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'Component not included'
116
+ license_path: ''
models/CodeGemma-2B.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: CodeGemma-2B
7
+ version: 2B
8
+ date: '2024-10-03'
9
+ type: code
10
+ architecture: 'transformer decoder'
11
+ origin: Gemma
12
+ producer: Google
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: Gemma
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Component not included'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Component not included'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: 'Component not included'
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'License not specified'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Component not included'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: gemma
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Component not included'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'License not specified'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Component not included'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'Component not included'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Component not included'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: gemma
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'Component not included'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'License not specified'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'License not specified'
116
+ license_path: ''
models/CodeGemma-7B-Instruct.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: CodeGemma-7B-Instruct
7
+ version: 7B
8
+ date: '2024-10-03'
9
+ type: code
10
+ architecture: 'transformer decoder'
11
+ origin: Gemma
12
+ producer: Google
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: Gemma
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Component not included'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Component not included'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: 'Component not included'
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'License not specified'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Component not included'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: gemma
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Component not included'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'License not specified'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Component not included'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'Component not included'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Component not included'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: gemma
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'Component not included'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'License not specified'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'License not specified'
116
+ license_path: ''
models/CodeGemma-7B.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: CodeGemma-7B
7
+ version: 7B
8
+ date: '2024-10-03'
9
+ type: code
10
+ architecture: 'transformer decoder'
11
+ origin: Gemma
12
+ producer: Google
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: Gemma
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Component not included'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Component not included'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: 'Component not included'
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'License not specified'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Component not included'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: gemma
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Component not included'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'License not specified'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Component not included'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'Component not included'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Component not included'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: gemma
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'Component not included'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'License not specified'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'License not specified'
116
+ license_path: ''
models/CodeGen.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: CodeGen
7
+ version: 16B
8
+ date: '2024-10-03'
9
+ type: code
10
+ architecture: 'transformer decoder'
11
+ origin: ''
12
+ producer: Salesforce
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: 'Pending evaluation'
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Pending evaluation'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Pending evaluation'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: 'Pending evaluation'
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'Pending evaluation'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Pending evaluation'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: BSD
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Pending evaluation'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'License not specified'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Pending evaluation'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'Pending evaluation'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Pending evaluation'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'Pending evaluation'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'Pending evaluation'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'Pending evaluation'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'Pending evaluation'
116
+ license_path: ''
models/CodeGen2.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: CodeGen2
7
+ version: 16B
8
+ date: '2024-10-03'
9
+ type: code
10
+ architecture: 'transformer decoder'
11
+ origin: ''
12
+ producer: Salesforce
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: 'Pending evaluation'
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Pending evaluation'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Pending evaluation'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: 'Pending evaluation'
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'Pending evaluation'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Pending evaluation'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: Apache-2.0
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Pending evaluation'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'License not specified'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Pending evaluation'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'Pending evaluation'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Pending evaluation'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'Pending evaluation'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'Pending evaluation'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'Pending evaluation'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'Pending evaluation'
116
+ license_path: ''
models/CodeT5+-16B.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: CodeT5+-16B
7
+ version: 16B
8
+ date: '2024-10-03'
9
+ type: code
10
+ architecture: 'transformer encoder-decoder'
11
+ origin: ''
12
+ producer: Salesforce
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: BSD-3
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Component not included'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Component not included'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: BSD-3
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: BSD-3
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'License not specified'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: 'License not specified'
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Component not included'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'datasets with "mit" “apache-2”, “bsd-3-clause”, “bsd-2-clause”, “cc0-1.0”, “unlicense”, “isc”'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Component not included'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'License not specified'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Component not included'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'License not specified'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'Component not included'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'Component not included'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'License not specified'
116
+ license_path: ''
models/CodeT5+-220M.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: CodeT5+-220M
7
+ version: 220M
8
+ date: '2024-10-03'
9
+ type: code
10
+ architecture: 'transformer encoder-decoder'
11
+ origin: ''
12
+ producer: Salesforce
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: BSD-3
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Component not included'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Component not included'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: BSD-3
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: BSD-3
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'License not specified'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: 'License not specified'
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Component not included'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'datasets with "mit" “apache-2”, “bsd-3-clause”, “bsd-2-clause”, “cc0-1.0”, “unlicense”, “isc”'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Component not included'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'License not specified'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Component not included'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'License not specified'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'Component not included'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'Component not included'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'License not specified'
116
+ license_path: ''
models/CodeT5+-2B.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: CodeT5+-2B
7
+ version: 2B
8
+ date: '2024-10-03'
9
+ type: code
10
+ architecture: 'transformer encoder-decoder'
11
+ origin: ''
12
+ producer: Salesforce
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: BSD-3
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Component not included'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Component not included'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: BSD-3
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: BSD-3
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'License not specified'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: 'License not specified'
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Component not included'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'datasets with "mit" “apache-2”, “bsd-3-clause”, “bsd-2-clause”, “cc0-1.0”, “unlicense”, “isc”'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Component not included'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'License not specified'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Component not included'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'License not specified'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'Component not included'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'Component not included'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'License not specified'
116
+ license_path: ''
models/CodeT5+-6B.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: CodeT5+-6B
7
+ version: 6B
8
+ date: '2024-10-03'
9
+ type: code
10
+ architecture: 'transformer encoder-decoder'
11
+ origin: ''
12
+ producer: Salesforce
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: BSD-3
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Component not included'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Component not included'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: BSD-3
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: BSD-3
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'License not specified'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: 'License not specified'
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Component not included'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'datasets with "mit" “apache-2”, “bsd-3-clause”, “bsd-2-clause”, “cc0-1.0”, “unlicense”, “isc”'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Component not included'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'License not specified'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Component not included'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'License not specified'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'Component not included'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'Component not included'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'License not specified'
116
+ license_path: ''
models/CodeT5+-770M.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: CodeT5+-770M
7
+ version: 770M
8
+ date: '2024-10-03'
9
+ type: code
10
+ architecture: 'transformer encoder-decoder'
11
+ origin: ''
12
+ producer: Salesforce
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: BSD-3
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Component not included'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Component not included'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: BSD-3
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: BSD-3
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'License not specified'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: 'License not specified'
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Component not included'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'datasets with "mit" “apache-2”, “bsd-3-clause”, “bsd-2-clause”, “cc0-1.0”, “unlicense”, “isc”'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Component not included'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'License not specified'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Component not included'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'License not specified'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'Component not included'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'Component not included'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'License not specified'
116
+ license_path: ''
models/CodeT5.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: CodeT5
7
+ version: 16B
8
+ date: '2024-10-03'
9
+ type: code
10
+ architecture: 'transformer encoder-decoder'
11
+ origin: ''
12
+ producer: Salesforce
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: BSD-3
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Component not included'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Component not included'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: BSD-3
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: BSD-3
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'License not specified'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: 'License not specified'
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'License not specified'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'License not specified'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'License not specified'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'License not specified'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Component not included'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'License not specified'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'Component not included'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'Component not included'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'License not specified'
116
+ license_path: ''
models/Codegen2.5.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: Codegen2.5
7
+ version: 7B
8
+ date: '2024-10-03'
9
+ type: code
10
+ architecture: 'transformer decoder'
11
+ origin: ''
12
+ producer: Salesforce
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: Apache-2.0
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: BSD-3
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: BSD-3
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: Apache-2.0
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'Component not included'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'License not specified'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: 'License not specified'
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Component not included'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'License only specified in original dataset starcoderdata'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Component not included'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'License not specified'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Component not included'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'License not specified'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'Component not included'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'Component not included'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'License not specified'
116
+ license_path: ''
models/Codex.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: Codex
7
+ version: Undisclosed
8
+ date: '2024-10-03'
9
+ type: code
10
+ architecture: 'transformer decoder'
11
+ origin: ''
12
+ producer: OpenAI
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: 'Component not included'
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Component not included'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Component not included'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: 'Component not included'
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'Component not included'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'License not specified'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: 'Component not included'
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Component not included'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'Component not included'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Component not included'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'Component not included'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Component not included'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'Component not included'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'Component not included'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'Component not included'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'Component not included'
116
+ license_path: ''
models/Command-R+.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: Command-R+
7
+ version: 104B
8
+ date: '2024-10-03'
9
+ type: language
10
+ architecture: undisclosed
11
+ origin: ''
12
+ producer: Cohere
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: CC-BY-NC-4.0
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Component not included'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Component not included'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: 'Component not included'
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'Component not included'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Component not included'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: 'License not specified'
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Component not included'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'Component not included'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Component not included'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'License not specified'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Component not included'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'License not specified'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'Component not included'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'License not specified'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'License not specified'
116
+ license_path: ''
models/Command-R.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: Command-R
7
+ version: 35B
8
+ date: '2024-10-03'
9
+ type: language
10
+ architecture: undisclosed
11
+ origin: ''
12
+ producer: Cohere
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: CC-BY-NC-4.0
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Component not included'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Component not included'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: 'Component not included'
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'Component not included'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Component not included'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: 'License not specified'
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Component not included'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'Component not included'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Component not included'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'License not specified'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Component not included'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'License not specified'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'Component not included'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'Component not included'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'Component not included'
116
+ license_path: ''
models/CrystalChat.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: CrystalChat
7
+ version: 7B
8
+ date: '2024-10-03'
9
+ type: language
10
+ architecture: decoder
11
+ origin: Crystal
12
+ producer: LLM360
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: Apache-2.0
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: Apache-2.0
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: Apache-2.0
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: Apache-2.0
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: Apache-2.0
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Component not included'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: Apache-2.0
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: Apache-2.0
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'License not specified'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'License not specified'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'License not specified'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Component not included'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'License not specified'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'License not specified'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'License not specified'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'License not specified'
116
+ license_path: ''
models/CrystalCoder.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: CrystalCoder
7
+ version: 7B
8
+ date: '2024-10-03'
9
+ type: code
10
+ architecture: decoder
11
+ origin: Crystal
12
+ producer: LLM360
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: Apache-2.0
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: Apache-2.0
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: Apache-2.0
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: Apache-2.0
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: Apache-2.0
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Component not included'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: Apache-2.0
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: Apache-2.0
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'License not specified'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'License not specified'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'License not specified'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Component not included'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'License not specified'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'License not specified'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'License not specified'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'License not specified'
116
+ license_path: ''
models/DeBERTa.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: DeBERTa
7
+ version: 1.5B
8
+ date: '2024-10-03'
9
+ type: language
10
+ architecture: encoder
11
+ origin: ''
12
+ producer: Microsoft
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: 'MIT license'
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Component not included'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Component not included'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: 'Component not included'
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'Component not included'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Component not included'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: 'License not specified'
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'License not specified'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'License not specified'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'License not specified'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: MIT
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'License not specified'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'License not specified'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'License not specified'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'License not specified'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'License not specified'
116
+ license_path: ''
models/DeciCoder.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: DeciCoder
7
+ version: 1B
8
+ date: '2024-10-03'
9
+ type: language
10
+ architecture: decoder
11
+ origin: ''
12
+ producer: Deci
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: Apache-2.0
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Component not included'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Component not included'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: 'Component not included'
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'Component not included'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Component not included'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: 'Component not included'
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Component not included'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'Component not included'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'License not specified'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'Component not included'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'License not specified'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'License not specified'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'License not specified'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'License not specified'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'License not specified'
116
+ license_path: ''
models/DeepSeek-Coder.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: DeepSeek-Coder
7
+ version: 33B
8
+ date: '2024-10-03'
9
+ type: language
10
+ architecture: 'transformer decoder'
11
+ origin: ''
12
+ producer: DeepSeek
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: 'MIT license'
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Component not included'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Component not included'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: 'Component not included'
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'Component not included'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Component not included'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: 'Component not included'
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Component not included'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'License not specified'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'License not specified'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'Component not included'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'License not specified'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'License not specified'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'License not specified'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'License not specified'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'License not specified'
116
+ license_path: ''
models/DeepSeek-MoE-145B.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: DeepSeek-MoE-145B
7
+ version: 145B
8
+ date: '2024-10-03'
9
+ type: language
10
+ architecture: ''
11
+ origin: DeepSeek-MoE-16B
12
+ producer: 'DeepSeek AI'
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: 'Pending evaluation'
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Pending evaluation'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Pending evaluation'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: 'Pending evaluation'
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'Pending evaluation'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Pending evaluation'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: 'Pending evaluation'
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Pending evaluation'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'Pending evaluation'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'Pending evaluation'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'Pending evaluation'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'Pending evaluation'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'Pending evaluation'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'Pending evaluation'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'Pending evaluation'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'Pending evaluation'
116
+ license_path: ''
models/DeepSeek-MoE-16B.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: DeepSeek-MoE-16B
7
+ version: 16.4B
8
+ date: '2024-10-03'
9
+ type: language
10
+ architecture: ''
11
+ origin: ''
12
+ producer: 'DeepSeek AI'
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: 'MIT license'
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: 'Component not included'
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: 'Component not included'
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: 'Component not included'
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: 'Component not included'
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: 'Component not included'
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: 'Component not included'
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: 'Component not included'
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: 'License not specified'
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: 'License not specified'
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: 'Component not included'
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: 'License not specified'
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: 'License not specified'
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: 'License not specified'
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: 'License not specified'
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: 'License not specified'
116
+ license_path: ''
models/Dou-Bao.yml ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ framework:
2
+ name: 'Model Openness Framework'
3
+ version: '1.0'
4
+ date: '2024-12-15'
5
+ release:
6
+ name: Dou-Bao
7
+ version: Undisclosed
8
+ date: '2024-10-03'
9
+ type: language
10
+ architecture: undisclosed
11
+ origin: ''
12
+ producer: ByteDance
13
+ contact: ''
14
+ components:
15
+ -
16
+ name: 'Model architecture'
17
+ description: "Well commented code for the model's architecture"
18
+ location: ''
19
+ license_name: Undisclosed
20
+ license_path: ''
21
+ -
22
+ name: 'Data preprocessing code'
23
+ description: 'Code for data cleansing, normalization, and augmentation'
24
+ location: ''
25
+ license_name: Undisclosed
26
+ license_path: ''
27
+ -
28
+ name: 'Training code'
29
+ description: 'Code used for training the model'
30
+ location: ''
31
+ license_name: Undisclosed
32
+ license_path: ''
33
+ -
34
+ name: 'Inference code'
35
+ description: 'Code used for running the model to make predictions'
36
+ location: ''
37
+ license_name: Undisclosed
38
+ license_path: ''
39
+ -
40
+ name: 'Evaluation code'
41
+ description: 'Code used for evaluating the model'
42
+ location: ''
43
+ license_name: Undisclosed
44
+ license_path: ''
45
+ -
46
+ name: 'Supporting libraries and tools'
47
+ description: "Libraries and tools used in the model's development"
48
+ location: ''
49
+ license_name: Undisclosed
50
+ license_path: ''
51
+ -
52
+ name: 'Model parameters (Final)'
53
+ description: 'Trained model parameters, weights and biases'
54
+ location: ''
55
+ license_name: Undisclosed
56
+ license_path: ''
57
+ -
58
+ name: 'Model parameters (Intermediate)'
59
+ description: 'Trained model parameters, weights and biases'
60
+ location: ''
61
+ license_name: Undisclosed
62
+ license_path: ''
63
+ -
64
+ name: Datasets
65
+ description: 'Training, validation and testing datasets used for the model'
66
+ location: ''
67
+ license_name: Undisclosed
68
+ license_path: ''
69
+ -
70
+ name: 'Evaluation data'
71
+ description: 'Data used for evaluating the model'
72
+ location: ''
73
+ license_name: Undisclosed
74
+ license_path: ''
75
+ -
76
+ name: 'Model metadata'
77
+ description: 'Any model metadata including training configuration and optimizer states'
78
+ location: ''
79
+ license_name: Undisclosed
80
+ license_path: ''
81
+ -
82
+ name: 'Sample model outputs'
83
+ description: 'Examples of outputs generated by the model'
84
+ location: ''
85
+ license_name: Undisclosed
86
+ license_path: ''
87
+ -
88
+ name: 'Model card'
89
+ description: 'Model details including performance metrics, intended use, and limitations'
90
+ location: ''
91
+ license_name: Undisclosed
92
+ license_path: ''
93
+ -
94
+ name: 'Data card'
95
+ description: 'Documentation for datasets including source, characteristics, and preprocessing details'
96
+ location: ''
97
+ license_name: Undisclosed
98
+ license_path: ''
99
+ -
100
+ name: 'Technical report'
101
+ description: 'Technical report detailing capabilities and usage instructions for the model'
102
+ location: ''
103
+ license_name: Undisclosed
104
+ license_path: ''
105
+ -
106
+ name: 'Research paper'
107
+ description: 'Research paper detailing the development and capabilities of the model'
108
+ location: ''
109
+ license_name: 'License not specified'
110
+ license_path: ''
111
+ -
112
+ name: 'Evaluation results'
113
+ description: 'The results from evaluating the model'
114
+ location: ''
115
+ license_name: Undisclosed
116
+ license_path: ''