Upload model_information.py with huggingface_hub
Browse files- model_information.py +56 -0
model_information.py
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import pandas as pd
|
| 2 |
+
|
| 3 |
+
# Define the data
|
| 4 |
+
data = {
|
| 5 |
+
"Original Name" : [],
|
| 6 |
+
"Proper Display Name": [],
|
| 7 |
+
"Link" : [],
|
| 8 |
+
}
|
| 9 |
+
|
| 10 |
+
# Add model information to the
|
| 11 |
+
data['Original Name'].append('salmonn_7b')
|
| 12 |
+
data['Proper Display Name'].append('SALMONN-7B')
|
| 13 |
+
data['Link'].append('https://arxiv.org/html/2310.13289v2')
|
| 14 |
+
|
| 15 |
+
data['Original Name'].append('wavllm_fairseq')
|
| 16 |
+
data['Proper Display Name'].append('WavLLM')
|
| 17 |
+
data['Link'].append('https://arxiv.org/abs/2404.00656')
|
| 18 |
+
|
| 19 |
+
data['Original Name'].append('Qwen2-Audio-7B-Instruct')
|
| 20 |
+
data['Proper Display Name'].append('Qwen2-Audio-7B-Instruct')
|
| 21 |
+
data['Link'].append('https://arxiv.org/abs/2407.10759')
|
| 22 |
+
|
| 23 |
+
data['Original Name'].append('whisper_large_v3_with_llama_3_8b_instruct')
|
| 24 |
+
data['Proper Display Name'].append('Whisper-Large-v3+Llama-3-8B-Instruct')
|
| 25 |
+
data['Link'].append('https://arxiv.org/abs/2406.16020')
|
| 26 |
+
|
| 27 |
+
data['Original Name'].append('mowe_audio')
|
| 28 |
+
data['Proper Display Name'].append('MOWE-Audio')
|
| 29 |
+
data['Link'].append('https://arxiv.org/abs/2409.06635')
|
| 30 |
+
|
| 31 |
+
data['Original Name'].append('qwen_audio_chat')
|
| 32 |
+
data['Proper Display Name'].append('Qwen-Audio-Chat')
|
| 33 |
+
data['Link'].append('https://arxiv.org/abs/2311.07919')
|
| 34 |
+
|
| 35 |
+
data['Original Name'].append('meralion_audiollm_v1_lora')
|
| 36 |
+
data['Proper Display Name'].append('MERaLion-AudioLLM-v1-LoRA')
|
| 37 |
+
data['Link'].append('https://www.a-star.edu.sg/i2r/research/I2RTechs/research/i2r-techs-solutions/unlocking-the-potential-of-large-language-models-(llms)-with-i-r-s-merlion-ai')
|
| 38 |
+
|
| 39 |
+
data['Original Name'].append('meralion_audiollm_v1_mse')
|
| 40 |
+
data['Proper Display Name'].append('MERaLion-AudioLLM-v1-MSE')
|
| 41 |
+
data['Link'].append('https://www.a-star.edu.sg/i2r/research/I2RTechs/research/i2r-techs-solutions/unlocking-the-potential-of-large-language-models-(llms)-with-i-r-s-merlion-ai')
|
| 42 |
+
|
| 43 |
+
data['Original Name'].append('stage2_whisper3_fft_mlp100_gemma2_9b_lora')
|
| 44 |
+
data['Proper Display Name'].append('Stage2-Whisper3-FFT-MLP100-Gemma2-9B-LoRA')
|
| 45 |
+
data['Link'].append('https://www.a-star.edu.sg/i2r/research/I2RTechs/research/i2r-techs-solutions/unlocking-the-potential-of-large-language-models-(llms)-with-i-r-s-merlion-ai')
|
| 46 |
+
|
| 47 |
+
|
| 48 |
+
|
| 49 |
+
def get_dataframe():
|
| 50 |
+
"""
|
| 51 |
+
Returns a DataFrame with the data and drops rows with missing values.
|
| 52 |
+
"""
|
| 53 |
+
df = pd.DataFrame(data)
|
| 54 |
+
return df.dropna(axis=0)
|
| 55 |
+
|
| 56 |
+
|