You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# For the main pipeline structure-related code, we maintain the original license provided with lm-evaluation-harness, which is the MIT License.
2
+
3
+
MIT License
4
+
5
+
Copyright (c) 2024 LMMs-Lab
6
+
7
+
Permission is hereby granted, free of charge, to any person obtaining a copy
8
+
of this software and associated documentation files (the "Software"), to deal
9
+
in the Software without restriction, including without limitation the rights
10
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
+
copies of the Software, and to permit persons to whom the Software is
12
+
furnished to do so, subject to the following conditions:
13
+
14
+
The above copyright notice and this permission notice shall be included in all
15
+
copies or substantial portions of the Software.
16
+
17
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
+
SOFTWARE.
24
+
25
+
# For the multimodal models and datasets that we have added (defined as code in the lmms_eval/tasks and lmms_eval/models folders), we apply the Apache License.
26
+
27
+
Apache 2.0 License
28
+
29
+
Copyright (c) 2024 LMMs-Lab
30
+
31
+
Licensed under the Apache License, Version 2.0 (the "License");
32
+
you may not use this file except in compliance with the License.
33
+
You may obtain a copy of the License at
34
+
35
+
http://www.apache.org/licenses/LICENSE-2.0
36
+
37
+
Unless required by applicable law or agreed to in writing, software
38
+
distributed under the License is distributed on an "AS IS" BASIS,
39
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
40
+
See the License for the specific language governing permissions and
41
+
limitations under the License.
42
+
43
+
When modifying the code, please include the following information about the original lmms-eval source:
44
+
# Adopted from lmms-eval from https://github.com/EvolvingLMMs-Lab/lmms-eval. Below is the original copyright:
45
+
#
46
+
# Licensed under the Apache License, Version 2.0 (the "License");
47
+
# you may not use this file except in compliance with the License.
48
+
# You may obtain a copy of the License at
49
+
#
50
+
# http://www.apache.org/licenses/LICENSE-2.0
51
+
#
52
+
# Unless required by applicable law or agreed to in writing, software
53
+
# distributed under the License is distributed on an "AS IS" BASIS,
54
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
55
+
# See the License for the specific language governing permissions and
In today's world, we're on an exciting journey toward creating Artificial General Intelligence (AGI), much like the enthusiasm of the 1960s moon landing. This journey is powered by advanced large language models (LLMs) and large multimodal models (LMMs), which are complex systems capable of understanding, learning, and performing a wide variety of human tasks. These advancements bring us closer to achieving AGI.
12
+
In today's world, we're on an exciting journey toward creating Artificial General Intelligence (AGI), much like the enthusiasm of the 1960s moon landing. This journey is powered by advanced large language models (LLMs) and large multimodal models (LMMs), which are complex systems capable of understanding, learning, and performing a wide variety of human tasks.
13
13
14
14
To gauge how advanced these models are, we use a variety of evaluation benchmarks. These benchmarks are tools that help us understand the capabilities of these models, showing us how close we are to achieving AGI. However, finding and using these benchmarks is a big challenge. The necessary benchmarks and datasets are spread out and hidden in various places like Google Drive, Dropbox, and different school and research lab websites. It feels like we're on a treasure hunt, but the maps are scattered everywhere.
15
15
@@ -163,6 +163,7 @@ We also provide the raw data exported from Weights & Biases for the detailed res
# inference implementation for attention, can be "sdpa", "eager", "flash_attention_2". Seems FA2 is not effective during inference: https://discuss.huggingface.co/t/flash-attention-has-no-effect-on-inference/73453/5
43
35
# if is_flash_attn_2_available:
44
36
# best_fit_attn_implementation = "flash_attention_2" # flash_attn has a bug that says: ERROR Error query and key must have the same dtype in generating
0 commit comments