Text Generation
Transformers
Safetensors
Portuguese
qwen3
text-generation-inference
conversational
Eval Results (legacy)
Instructions to use Polygl0t/Tucano2-qwen-1.5B-Think with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Polygl0t/Tucano2-qwen-1.5B-Think with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Polygl0t/Tucano2-qwen-1.5B-Think") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Polygl0t/Tucano2-qwen-1.5B-Think") model = AutoModelForCausalLM.from_pretrained("Polygl0t/Tucano2-qwen-1.5B-Think", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Polygl0t/Tucano2-qwen-1.5B-Think with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Polygl0t/Tucano2-qwen-1.5B-Think" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Polygl0t/Tucano2-qwen-1.5B-Think", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Polygl0t/Tucano2-qwen-1.5B-Think
- SGLang
How to use Polygl0t/Tucano2-qwen-1.5B-Think with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "Polygl0t/Tucano2-qwen-1.5B-Think" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Polygl0t/Tucano2-qwen-1.5B-Think", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "Polygl0t/Tucano2-qwen-1.5B-Think" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Polygl0t/Tucano2-qwen-1.5B-Think", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Polygl0t/Tucano2-qwen-1.5B-Think with Docker Model Runner:
docker model run hf.co/Polygl0t/Tucano2-qwen-1.5B-Think
Upload evals.yaml with huggingface_hub
Browse files- evals.yaml +204 -0
evals.yaml
ADDED
|
@@ -0,0 +1,204 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
evaluations:
|
| 2 |
+
arc_challenge_poly_pt_acc: 0.37948717948717947
|
| 3 |
+
arc_challenge_poly_pt_acc_norm: 0.4282051282051282
|
| 4 |
+
arc_challenge_poly_pt_acc_norm_stderr: 0.014472341586181985
|
| 5 |
+
arc_challenge_poly_pt_acc_stderr: 0.014192754090886793
|
| 6 |
+
arc_challenge_poly_pt_alias: arc_challenge_poly_pt
|
| 7 |
+
assin2_rte_acc,all: 0.8705065359477124
|
| 8 |
+
assin2_rte_acc_stderr,all: 0.004798540986291823
|
| 9 |
+
assin2_rte_alias: assin2_rte
|
| 10 |
+
assin2_rte_f1_macro,all: 0.8691746625542952
|
| 11 |
+
assin2_rte_f1_macro_stderr,all: 0.004847278802663799
|
| 12 |
+
assin2_sts_alias: assin2_sts
|
| 13 |
+
assin2_sts_mse,all: 2.2781209150326798
|
| 14 |
+
assin2_sts_mse_stderr,all: N/A
|
| 15 |
+
assin2_sts_pearson,all: 0.47716809267162485
|
| 16 |
+
assin2_sts_pearson_stderr,all: 0.014407170423859306
|
| 17 |
+
assin_entailment_acc: 0.7325
|
| 18 |
+
assin_entailment_acc_stderr: 0.006999870502142285
|
| 19 |
+
assin_entailment_alias: assin_entailment
|
| 20 |
+
assin_paraphrase_acc: 0.73625
|
| 21 |
+
assin_paraphrase_acc_stderr: 0.006968401827607802
|
| 22 |
+
assin_paraphrase_alias: assin_paraphrase
|
| 23 |
+
belebele_por_Latn_acc: 0.6766666666666666
|
| 24 |
+
belebele_por_Latn_acc_norm: 0.6766666666666666
|
| 25 |
+
belebele_por_Latn_acc_norm_stderr: 0.015600294087844632
|
| 26 |
+
belebele_por_Latn_acc_stderr: 0.015600294087844632
|
| 27 |
+
belebele_por_Latn_alias: belebele_por_Latn
|
| 28 |
+
bluex_acc,all: 0.39221140472878996
|
| 29 |
+
bluex_acc,exam_id__UNICAMP_2018: 0.48148148148148145
|
| 30 |
+
bluex_acc,exam_id__UNICAMP_2019: 0.42
|
| 31 |
+
bluex_acc,exam_id__UNICAMP_2020: 0.41818181818181815
|
| 32 |
+
bluex_acc,exam_id__UNICAMP_2021_1: 0.4782608695652174
|
| 33 |
+
bluex_acc,exam_id__UNICAMP_2021_2: 0.29411764705882354
|
| 34 |
+
bluex_acc,exam_id__UNICAMP_2022: 0.5384615384615384
|
| 35 |
+
bluex_acc,exam_id__UNICAMP_2023: 0.4883720930232558
|
| 36 |
+
bluex_acc,exam_id__UNICAMP_2024: 0.4444444444444444
|
| 37 |
+
bluex_acc,exam_id__USP_2018: 0.24074074074074073
|
| 38 |
+
bluex_acc,exam_id__USP_2019: 0.35
|
| 39 |
+
bluex_acc,exam_id__USP_2020: 0.39285714285714285
|
| 40 |
+
bluex_acc,exam_id__USP_2021: 0.3076923076923077
|
| 41 |
+
bluex_acc,exam_id__USP_2022: 0.24489795918367346
|
| 42 |
+
bluex_acc,exam_id__USP_2023: 0.38636363636363635
|
| 43 |
+
bluex_acc,exam_id__USP_2024: 0.4634146341463415
|
| 44 |
+
bluex_acc_stderr,all: 0.010527552369043944
|
| 45 |
+
bluex_acc_stderr,exam_id__UNICAMP_2018: 0.03932520147192548
|
| 46 |
+
bluex_acc_stderr,exam_id__UNICAMP_2019: 0.040409592319981036
|
| 47 |
+
bluex_acc_stderr,exam_id__UNICAMP_2020: 0.038500996629012005
|
| 48 |
+
bluex_acc_stderr,exam_id__UNICAMP_2021_1: 0.04265317780472471
|
| 49 |
+
bluex_acc_stderr,exam_id__UNICAMP_2021_2: 0.0369309745845929
|
| 50 |
+
bluex_acc_stderr,exam_id__UNICAMP_2022: 0.04616267465694302
|
| 51 |
+
bluex_acc_stderr,exam_id__UNICAMP_2023: 0.04391771882582978
|
| 52 |
+
bluex_acc_stderr,exam_id__UNICAMP_2024: 0.04266417007528182
|
| 53 |
+
bluex_acc_stderr,exam_id__USP_2018: 0.03361325629183327
|
| 54 |
+
bluex_acc_stderr,exam_id__USP_2019: 0.04344929186946837
|
| 55 |
+
bluex_acc_stderr,exam_id__USP_2020: 0.037457169801895486
|
| 56 |
+
bluex_acc_stderr,exam_id__USP_2021: 0.03696695228727266
|
| 57 |
+
bluex_acc_stderr,exam_id__USP_2022: 0.03545185428690165
|
| 58 |
+
bluex_acc_stderr,exam_id__USP_2023: 0.042474562735645566
|
| 59 |
+
bluex_acc_stderr,exam_id__USP_2024: 0.04499354148452882
|
| 60 |
+
bluex_alias: bluex
|
| 61 |
+
calame_pt_acc: 0.11127167630057803
|
| 62 |
+
calame_pt_acc_stderr: 0.00690347530269077
|
| 63 |
+
calame_pt_alias: calame_pt
|
| 64 |
+
calame_pt_perplexity: 5965.407764074068
|
| 65 |
+
calame_pt_perplexity_stderr: 683.2371253201818
|
| 66 |
+
enem_challenge_acc,all: 0.3988803358992302
|
| 67 |
+
enem_challenge_acc,exam_id__2009: 0.46956521739130436
|
| 68 |
+
enem_challenge_acc,exam_id__2010: 0.5128205128205128
|
| 69 |
+
enem_challenge_acc,exam_id__2011: 0.46153846153846156
|
| 70 |
+
enem_challenge_acc,exam_id__2012: 0.4224137931034483
|
| 71 |
+
enem_challenge_acc,exam_id__2013: 0.3148148148148148
|
| 72 |
+
enem_challenge_acc,exam_id__2014: 0.41284403669724773
|
| 73 |
+
enem_challenge_acc,exam_id__2015: 0.40336134453781514
|
| 74 |
+
enem_challenge_acc,exam_id__2016: 0.36363636363636365
|
| 75 |
+
enem_challenge_acc,exam_id__2016_2: 0.4065040650406504
|
| 76 |
+
enem_challenge_acc,exam_id__2017: 0.39655172413793105
|
| 77 |
+
enem_challenge_acc,exam_id__2022: 0.3157894736842105
|
| 78 |
+
enem_challenge_acc,exam_id__2023: 0.32592592592592595
|
| 79 |
+
enem_challenge_acc_stderr,all: 0.00749197527112301
|
| 80 |
+
enem_challenge_acc_stderr,exam_id__2009: 0.02676517541031027
|
| 81 |
+
enem_challenge_acc_stderr,exam_id__2010: 0.02676561702634192
|
| 82 |
+
enem_challenge_acc_stderr,exam_id__2011: 0.026575632846671127
|
| 83 |
+
enem_challenge_acc_stderr,exam_id__2012: 0.02652807977680181
|
| 84 |
+
enem_challenge_acc_stderr,exam_id__2013: 0.02570106484445073
|
| 85 |
+
enem_challenge_acc_stderr,exam_id__2014: 0.02722456002129014
|
| 86 |
+
enem_challenge_acc_stderr,exam_id__2015: 0.025882945505526844
|
| 87 |
+
enem_challenge_acc_stderr,exam_id__2016: 0.025343746567122242
|
| 88 |
+
enem_challenge_acc_stderr,exam_id__2016_2: 0.025491304109387235
|
| 89 |
+
enem_challenge_acc_stderr,exam_id__2017: 0.0261642629559971
|
| 90 |
+
enem_challenge_acc_stderr,exam_id__2022: 0.02331831926729694
|
| 91 |
+
enem_challenge_acc_stderr,exam_id__2023: 0.023372974631758865
|
| 92 |
+
enem_challenge_alias: enem
|
| 93 |
+
faquad_nli_acc,all: 0.7892307692307692
|
| 94 |
+
faquad_nli_acc_stderr,all: 0.011279066985135663
|
| 95 |
+
faquad_nli_alias: faquad_nli
|
| 96 |
+
faquad_nli_f1_macro,all: 0.49256657036543183
|
| 97 |
+
faquad_nli_f1_macro_stderr,all: 0.01318624622535848
|
| 98 |
+
global_piqa_completions_por_latn_braz_acc: 0.75
|
| 99 |
+
global_piqa_completions_por_latn_braz_acc_bytes: 0.74
|
| 100 |
+
global_piqa_completions_por_latn_braz_acc_bytes_stderr: 0.0440844002276808
|
| 101 |
+
global_piqa_completions_por_latn_braz_acc_norm: 0.74
|
| 102 |
+
global_piqa_completions_por_latn_braz_acc_norm_stderr: 0.0440844002276808
|
| 103 |
+
global_piqa_completions_por_latn_braz_acc_stderr: 0.04351941398892446
|
| 104 |
+
global_piqa_completions_por_latn_braz_alias: global_piqa_completions_por_latn_braz
|
| 105 |
+
gsm8k_pt_alias: gsm8k_pt
|
| 106 |
+
gsm8k_pt_exact_match,flexible-extract: 0.228310502283105
|
| 107 |
+
gsm8k_pt_exact_match,strict-match: 0.0
|
| 108 |
+
gsm8k_pt_exact_match_stderr,flexible-extract: 0.011583822031121497
|
| 109 |
+
gsm8k_pt_exact_match_stderr,strict-match: 0.0
|
| 110 |
+
hatebr_offensive_acc,all: 0.7071428571428572
|
| 111 |
+
hatebr_offensive_acc_stderr,all: 0.008611736471385361
|
| 112 |
+
hatebr_offensive_alias: hatebr_offensive_binary
|
| 113 |
+
hatebr_offensive_f1_macro,all: 0.7019751844399732
|
| 114 |
+
hatebr_offensive_f1_macro_stderr,all: 0.008866946580220815
|
| 115 |
+
hellaswag_poly_pt_acc: 0.4334164048109221
|
| 116 |
+
hellaswag_poly_pt_acc_norm: 0.5494636471990465
|
| 117 |
+
hellaswag_poly_pt_acc_norm_stderr: 0.005179413791359488
|
| 118 |
+
hellaswag_poly_pt_acc_stderr: 0.005158588405358706
|
| 119 |
+
hellaswag_poly_pt_alias: hellaswag_poly_pt
|
| 120 |
+
ifeval_pt_alias: ifeval_pt
|
| 121 |
+
ifeval_pt_inst_level_loose_acc: 0.4511627906976744
|
| 122 |
+
ifeval_pt_inst_level_loose_acc_stderr: N/A
|
| 123 |
+
ifeval_pt_inst_level_strict_acc: 0.3395348837209302
|
| 124 |
+
ifeval_pt_inst_level_strict_acc_stderr: N/A
|
| 125 |
+
ifeval_pt_prompt_level_loose_acc: 0.33666666666666667
|
| 126 |
+
ifeval_pt_prompt_level_loose_acc_stderr: 0.02732941756218688
|
| 127 |
+
ifeval_pt_prompt_level_strict_acc: 0.23333333333333334
|
| 128 |
+
ifeval_pt_prompt_level_strict_acc_stderr: 0.024459979523511425
|
| 129 |
+
lambada_poly_pt_acc: 0.267028915195032
|
| 130 |
+
lambada_poly_pt_acc_stderr: 0.00616360274242743
|
| 131 |
+
lambada_poly_pt_alias: lambada_poly_pt
|
| 132 |
+
lambada_poly_pt_perplexity: 214.12248648482947
|
| 133 |
+
lambada_poly_pt_perplexity_stderr: 13.012850955803207
|
| 134 |
+
mmlu_poly_pt_acc: 0.43297808465926146
|
| 135 |
+
mmlu_poly_pt_acc_stderr: 0.004292713120965234
|
| 136 |
+
mmlu_poly_pt_alias: mmlu_poly_pt
|
| 137 |
+
oab_exams_acc,all: 0.3425968109339408
|
| 138 |
+
oab_exams_acc,exam_id__2010-01: 0.3176470588235294
|
| 139 |
+
oab_exams_acc,exam_id__2010-02: 0.33
|
| 140 |
+
oab_exams_acc,exam_id__2011-03: 0.3333333333333333
|
| 141 |
+
oab_exams_acc,exam_id__2011-04: 0.3625
|
| 142 |
+
oab_exams_acc,exam_id__2011-05: 0.325
|
| 143 |
+
oab_exams_acc,exam_id__2012-06: 0.35
|
| 144 |
+
oab_exams_acc,exam_id__2012-06a: 0.325
|
| 145 |
+
oab_exams_acc,exam_id__2012-07: 0.3375
|
| 146 |
+
oab_exams_acc,exam_id__2012-08: 0.325
|
| 147 |
+
oab_exams_acc,exam_id__2012-09: 0.24675324675324675
|
| 148 |
+
oab_exams_acc,exam_id__2013-10: 0.325
|
| 149 |
+
oab_exams_acc,exam_id__2013-11: 0.2875
|
| 150 |
+
oab_exams_acc,exam_id__2013-12: 0.3375
|
| 151 |
+
oab_exams_acc,exam_id__2014-13: 0.3875
|
| 152 |
+
oab_exams_acc,exam_id__2014-14: 0.325
|
| 153 |
+
oab_exams_acc,exam_id__2014-15: 0.41025641025641024
|
| 154 |
+
oab_exams_acc,exam_id__2015-16: 0.3125
|
| 155 |
+
oab_exams_acc,exam_id__2015-17: 0.3974358974358974
|
| 156 |
+
oab_exams_acc,exam_id__2015-18: 0.375
|
| 157 |
+
oab_exams_acc,exam_id__2016-19: 0.41025641025641024
|
| 158 |
+
oab_exams_acc,exam_id__2016-20: 0.4375
|
| 159 |
+
oab_exams_acc,exam_id__2016-20a: 0.325
|
| 160 |
+
oab_exams_acc,exam_id__2016-21: 0.25
|
| 161 |
+
oab_exams_acc,exam_id__2017-22: 0.375
|
| 162 |
+
oab_exams_acc,exam_id__2017-23: 0.3125
|
| 163 |
+
oab_exams_acc,exam_id__2017-24: 0.4
|
| 164 |
+
oab_exams_acc,exam_id__2018-25: 0.3375
|
| 165 |
+
oab_exams_acc_stderr,all: 0.005854656489923565
|
| 166 |
+
oab_exams_acc_stderr,exam_id__2010-01: 0.02913844109530932
|
| 167 |
+
oab_exams_acc_stderr,exam_id__2010-02: 0.02720413223389449
|
| 168 |
+
oab_exams_acc_stderr,exam_id__2011-03: 0.02739274623256926
|
| 169 |
+
oab_exams_acc_stderr,exam_id__2011-04: 0.03103610079124539
|
| 170 |
+
oab_exams_acc_stderr,exam_id__2011-05: 0.030180181541041882
|
| 171 |
+
oab_exams_acc_stderr,exam_id__2012-06: 0.030663426761582978
|
| 172 |
+
oab_exams_acc_stderr,exam_id__2012-06a: 0.03019542051107743
|
| 173 |
+
oab_exams_acc_stderr,exam_id__2012-07: 0.030587368127940558
|
| 174 |
+
oab_exams_acc_stderr,exam_id__2012-08: 0.030150394921254077
|
| 175 |
+
oab_exams_acc_stderr,exam_id__2012-09: 0.028367169852259254
|
| 176 |
+
oab_exams_acc_stderr,exam_id__2013-10: 0.030312606625205758
|
| 177 |
+
oab_exams_acc_stderr,exam_id__2013-11: 0.0291233179987808
|
| 178 |
+
oab_exams_acc_stderr,exam_id__2013-12: 0.030508999749351583
|
| 179 |
+
oab_exams_acc_stderr,exam_id__2014-13: 0.03131790740981766
|
| 180 |
+
oab_exams_acc_stderr,exam_id__2014-14: 0.030290399093110758
|
| 181 |
+
oab_exams_acc_stderr,exam_id__2014-15: 0.032059169494021815
|
| 182 |
+
oab_exams_acc_stderr,exam_id__2015-16: 0.029833251327948757
|
| 183 |
+
oab_exams_acc_stderr,exam_id__2015-17: 0.03201117621919014
|
| 184 |
+
oab_exams_acc_stderr,exam_id__2015-18: 0.0311783808239491
|
| 185 |
+
oab_exams_acc_stderr,exam_id__2016-19: 0.032162738371024235
|
| 186 |
+
oab_exams_acc_stderr,exam_id__2016-20: 0.031934266796334064
|
| 187 |
+
oab_exams_acc_stderr,exam_id__2016-20a: 0.030215012978448332
|
| 188 |
+
oab_exams_acc_stderr,exam_id__2016-21: 0.027979645441821365
|
| 189 |
+
oab_exams_acc_stderr,exam_id__2017-22: 0.031096010380049006
|
| 190 |
+
oab_exams_acc_stderr,exam_id__2017-23: 0.02995046656597778
|
| 191 |
+
oab_exams_acc_stderr,exam_id__2017-24: 0.03158083933896483
|
| 192 |
+
oab_exams_acc_stderr,exam_id__2018-25: 0.030481185333792096
|
| 193 |
+
oab_exams_alias: oab_exams
|
| 194 |
+
portuguese_hate_speech_acc,all: 0.7097532314923619
|
| 195 |
+
portuguese_hate_speech_acc_stderr,all: 0.01097429657035187
|
| 196 |
+
portuguese_hate_speech_alias: portuguese_hate_speech_binary
|
| 197 |
+
portuguese_hate_speech_f1_macro,all: 0.6922452504317789
|
| 198 |
+
portuguese_hate_speech_f1_macro_stderr,all: 0.011709050058396507
|
| 199 |
+
tweetsentbr_acc,all: 0.6422885572139303
|
| 200 |
+
tweetsentbr_acc_stderr,all: 0.007563312856378464
|
| 201 |
+
tweetsentbr_alias: tweetsentbr
|
| 202 |
+
tweetsentbr_f1_macro,all: 0.6428335432993848
|
| 203 |
+
tweetsentbr_f1_macro_stderr,all: 0.007483756787178434
|
| 204 |
+
step: 3595
|