├── .DS_Store ├── CodeGeneration ├── .DS_Store ├── bigcode_eval │ ├── __init__.py │ ├── arguments.py │ ├── base.py │ ├── evaluator.py │ ├── generation.py │ ├── tasks │ │ ├── __init__.py │ │ ├── apps.py │ │ ├── codexglue_code_to_text.py │ │ ├── codexglue_text_to_text.py │ │ ├── conala.py │ │ ├── concode.py │ │ ├── custom_metrics │ │ │ ├── __init__.py │ │ │ ├── beyond_eval.py │ │ │ ├── code_eval.py │ │ │ ├── codexglue_code_to_text_bleu.py │ │ │ ├── diff_eval.py │ │ │ ├── execute.py │ │ │ ├── multiple_metrics │ │ │ │ ├── __init__.py │ │ │ │ ├── containerized_eval.py │ │ │ │ ├── eval_cpp.py │ │ │ │ ├── eval_cs.py │ │ │ │ ├── eval_dlang.py │ │ │ │ ├── eval_go.py │ │ │ │ ├── eval_java.py │ │ │ │ ├── eval_javascript.py │ │ │ │ ├── eval_julia.py │ │ │ │ ├── eval_lua.py │ │ │ │ ├── eval_php.py │ │ │ │ ├── eval_pl.py │ │ │ │ ├── eval_python.py │ │ │ │ ├── eval_r.py │ │ │ │ ├── eval_racket.py │ │ │ │ ├── eval_ruby.py │ │ │ │ ├── eval_rust.py │ │ │ │ ├── eval_scala.py │ │ │ │ ├── eval_sh.py │ │ │ │ ├── eval_swift.py │ │ │ │ ├── eval_ts.py │ │ │ │ ├── evaluation.py │ │ │ │ ├── generic_eval.py │ │ │ │ ├── libeval.py │ │ │ │ ├── safe_subprocess │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── evil_programs │ │ │ │ │ │ ├── block_on_inputs.py │ │ │ │ │ │ ├── close_outputs.py │ │ │ │ │ │ ├── fork_bomb.py │ │ │ │ │ │ ├── fork_once.py │ │ │ │ │ │ ├── sleep_forever.py │ │ │ │ │ │ └── unbounded_output.py │ │ │ │ │ └── module_test.py │ │ │ │ └── single_experiment_pass_k.py │ │ │ └── pal_metric │ │ │ │ ├── __init__.py │ │ │ │ ├── pal_code_exec.py │ │ │ │ └── python_executor.py │ │ ├── ds1000.py │ │ ├── few_shot_examples │ │ │ ├── codexglue_text_to_text_few_shot_prompts.json │ │ │ ├── conala_few_shot_prompts.json │ │ │ ├── concode_few_shot_prompts.json │ │ │ └── gsm8k_few_shot_prompts.json │ │ ├── gsm.py │ │ ├── humaneval.py │ │ ├── humanevalpack.py │ │ ├── humanevalpack_openai.py │ │ ├── humanevalplus.py │ │ ├── instruct_humaneval.py │ │ ├── instruct_wizard_humaneval.py │ │ ├── mbpp.py │ │ ├── mbppplus.py │ │ ├── mercury.py │ │ ├── multiple.py │ │ ├── parity.py │ │ ├── python_bugs.py │ │ ├── quixbugs.py │ │ ├── recode.py │ │ ├── santacoder_fim.py │ │ └── studenteval.py │ └── utils.py ├── cache.py ├── llama12.py ├── llama12addingtree.py ├── main.py ├── runningscript.sh ├── setup.py └── tests │ ├── data │ ├── humaneval_eval_gens.json │ ├── humaneval_gen_gens.json │ ├── humaneval_gen_refs.json │ ├── mbpp_eval_gens.json │ ├── mbpp_gen_gens.json │ ├── mbpp_gen_refs.json │ ├── pal-gsm8k-greedy_eval_gens.json │ └── pal-gsm8k-greedy_prompt.json │ ├── test_generation_evaluation.py │ └── test_prompts.py ├── CommonSenseReasoning ├── .DS_Store ├── aqua_cot_prompts_5shot.txt ├── aqua_cot_prompts_5shot_old.txt ├── cache.py ├── csqa_cot_prompts.txt ├── csqa_cot_prompts_1shot.txt ├── csqa_cot_prompts_5shot.txt ├── date_cot_prompts.txt ├── date_cot_prompts_1shot.txt ├── date_cot_prompts_5shot.txt ├── llama12.py ├── llama12addingtree.py ├── main.py ├── runtest.sh ├── sports_cot_prompts.txt ├── sports_cot_prompts_5shot.txt ├── strategyqa_cot_prompts.txt └── strategyqa_cot_prompts_5shot.txt ├── Miscellaneous ├── .DS_Store ├── cache.py ├── debugging1.sh ├── llama12.py ├── llama12_static_cache_sdpa_with_check.py ├── llama12_static_cache_sdpa_with_check3.py ├── llama12_static_cache_sdpa_with_treee.py ├── llama12_static_cache_sdpa_with_treewo.py ├── llama12addingtree.py ├── llama12pipa.py ├── llamalargeweightrunoffload.py ├── main.py ├── src │ ├── eval_gen.py │ ├── griffin │ │ ├── gemma.py │ │ ├── llama.py │ │ ├── mistral.py │ │ ├── opt.py │ │ └── utils.py │ ├── lm_eval.py │ ├── lm_eval │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── base.cpython-310.pyc │ │ │ ├── base.cpython-312.pyc │ │ │ ├── base.cpython-38.pyc │ │ │ ├── evaluator.cpython-310.pyc │ │ │ ├── evaluator.cpython-312.pyc │ │ │ ├── evaluator.cpython-38.pyc │ │ │ ├── metrics.cpython-310.pyc │ │ │ ├── metrics.cpython-312.pyc │ │ │ ├── metrics.cpython-38.pyc │ │ │ ├── utils.cpython-310.pyc │ │ │ ├── utils.cpython-312.pyc │ │ │ └── utils.cpython-38.pyc │ │ ├── base.py │ │ ├── datasets │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ └── __init__.cpython-38.pyc │ │ │ ├── asdiv │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── asdiv.cpython-310.pyc │ │ │ │ │ ├── asdiv.cpython-312.pyc │ │ │ │ │ └── asdiv.cpython-38.pyc │ │ │ │ ├── asdiv.py │ │ │ │ └── dataset_infos.json │ │ │ ├── bigbench_resources │ │ │ │ ├── __init__.py │ │ │ │ ├── causal_judgement.json │ │ │ │ ├── date_understanding.json │ │ │ │ ├── disambiguation_qa.json │ │ │ │ ├── dyck_languages.json │ │ │ │ ├── formal_fallacies_syllogisms_negation.json │ │ │ │ ├── geometric_shapes.json │ │ │ │ ├── hyperbaton.json │ │ │ │ ├── logical_deduction_five_objects.json │ │ │ │ ├── logical_deduction_seven_objects.json │ │ │ │ ├── logical_deduction_three_objects.json │ │ │ │ ├── movie_recommendation.json │ │ │ │ ├── navigate.json │ │ │ │ ├── reasoning_about_colored_objects.json │ │ │ │ ├── ruin_names.json │ │ │ │ ├── salient_translation_error_detection.json │ │ │ │ ├── snarks.json │ │ │ │ ├── sports_understanding.json │ │ │ │ ├── temporal_sequences.json │ │ │ │ ├── tracking_shuffled_objects_five_objects.json │ │ │ │ ├── tracking_shuffled_objects_seven_objects.json │ │ │ │ └── tracking_shuffled_objects_three_objects.json │ │ │ ├── coqa │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── coqa.cpython-310.pyc │ │ │ │ │ ├── coqa.cpython-312.pyc │ │ │ │ │ └── coqa.cpython-38.pyc │ │ │ │ ├── coqa.py │ │ │ │ └── dataset_infos.json │ │ │ ├── drop │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── drop.cpython-310.pyc │ │ │ │ │ ├── drop.cpython-312.pyc │ │ │ │ │ └── drop.cpython-38.pyc │ │ │ │ ├── dataset_infos.json │ │ │ │ └── drop.py │ │ │ ├── headqa │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── headqa.cpython-310.pyc │ │ │ │ │ ├── headqa.cpython-312.pyc │ │ │ │ │ └── headqa.cpython-38.pyc │ │ │ │ ├── dataset_infos.json │ │ │ │ └── headqa.py │ │ │ ├── hendrycks_ethics │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── hendrycks_ethics.cpython-310.pyc │ │ │ │ │ ├── hendrycks_ethics.cpython-312.pyc │ │ │ │ │ └── hendrycks_ethics.cpython-38.pyc │ │ │ │ ├── dataset_infos.json │ │ │ │ └── hendrycks_ethics.py │ │ │ ├── hendrycks_math │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── hendrycks_math.cpython-310.pyc │ │ │ │ │ ├── hendrycks_math.cpython-312.pyc │ │ │ │ │ └── hendrycks_math.cpython-38.pyc │ │ │ │ ├── dataset_infos.json │ │ │ │ └── hendrycks_math.py │ │ │ ├── logiqa │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── logiqa.cpython-310.pyc │ │ │ │ │ ├── logiqa.cpython-312.pyc │ │ │ │ │ └── logiqa.cpython-38.pyc │ │ │ │ ├── dataset_infos.json │ │ │ │ └── logiqa.py │ │ │ ├── mutual │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── mutual.cpython-310.pyc │ │ │ │ │ ├── mutual.cpython-312.pyc │ │ │ │ │ └── mutual.cpython-38.pyc │ │ │ │ ├── dataset_infos.json │ │ │ │ └── mutual.py │ │ │ ├── pile │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── pile.cpython-310.pyc │ │ │ │ │ ├── pile.cpython-312.pyc │ │ │ │ │ └── pile.cpython-38.pyc │ │ │ │ ├── dataset_infos.json │ │ │ │ └── pile.py │ │ │ ├── quac │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── quac.cpython-310.pyc │ │ │ │ │ ├── quac.cpython-312.pyc │ │ │ │ │ └── quac.cpython-38.pyc │ │ │ │ ├── dataset_infos.json │ │ │ │ └── quac.py │ │ │ ├── sat_analogies │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── sat_analogies.cpython-310.pyc │ │ │ │ │ ├── sat_analogies.cpython-312.pyc │ │ │ │ │ └── sat_analogies.cpython-38.pyc │ │ │ │ └── sat_analogies.py │ │ │ └── unscramble │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── unscramble.cpython-310.pyc │ │ │ │ ├── unscramble.cpython-312.pyc │ │ │ │ └── unscramble.cpython-38.pyc │ │ │ │ ├── dataset_infos.json │ │ │ │ └── unscramble.py │ │ ├── decontamination │ │ │ ├── __init__.py │ │ │ ├── archiver.py │ │ │ ├── decontaminate.py │ │ │ └── janitor.py │ │ ├── evaluator.py │ │ ├── metrics.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── anthropic_llms.cpython-310.pyc │ │ │ │ ├── anthropic_llms.cpython-312.pyc │ │ │ │ ├── anthropic_llms.cpython-38.pyc │ │ │ │ ├── dummy.cpython-310.pyc │ │ │ │ ├── dummy.cpython-312.pyc │ │ │ │ ├── dummy.cpython-38.pyc │ │ │ │ ├── gpt2.cpython-310.pyc │ │ │ │ ├── gpt2.cpython-312.pyc │ │ │ │ ├── gpt2.cpython-38.pyc │ │ │ │ ├── gpt3.cpython-310.pyc │ │ │ │ ├── gpt3.cpython-312.pyc │ │ │ │ ├── gpt3.cpython-38.pyc │ │ │ │ ├── huggingface.cpython-310.pyc │ │ │ │ ├── huggingface.cpython-312.pyc │ │ │ │ ├── huggingface.cpython-38.pyc │ │ │ │ ├── textsynth.cpython-310.pyc │ │ │ │ ├── textsynth.cpython-312.pyc │ │ │ │ └── textsynth.cpython-38.pyc │ │ │ ├── anthropic_llms.py │ │ │ ├── dummy.py │ │ │ ├── gpt2.py │ │ │ ├── gpt3.py │ │ │ ├── huggingface.py │ │ │ └── textsynth.py │ │ ├── tasks │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-310.pyc │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── anli.cpython-310.pyc │ │ │ │ ├── anli.cpython-312.pyc │ │ │ │ ├── anli.cpython-38.pyc │ │ │ │ ├── arc.cpython-310.pyc │ │ │ │ ├── arc.cpython-312.pyc │ │ │ │ ├── arc.cpython-38.pyc │ │ │ │ ├── arithmetic.cpython-310.pyc │ │ │ │ ├── arithmetic.cpython-312.pyc │ │ │ │ ├── arithmetic.cpython-38.pyc │ │ │ │ ├── asdiv.cpython-310.pyc │ │ │ │ ├── asdiv.cpython-312.pyc │ │ │ │ ├── asdiv.cpython-38.pyc │ │ │ │ ├── babi.cpython-310.pyc │ │ │ │ ├── babi.cpython-312.pyc │ │ │ │ ├── babi.cpython-38.pyc │ │ │ │ ├── blimp.cpython-310.pyc │ │ │ │ ├── blimp.cpython-312.pyc │ │ │ │ ├── blimp.cpython-38.pyc │ │ │ │ ├── cbt.cpython-310.pyc │ │ │ │ ├── cbt.cpython-312.pyc │ │ │ │ ├── cbt.cpython-38.pyc │ │ │ │ ├── ceval.cpython-310.pyc │ │ │ │ ├── ceval.cpython-312.pyc │ │ │ │ ├── ceval.cpython-38.pyc │ │ │ │ ├── cmmlu.cpython-310.pyc │ │ │ │ ├── cmmlu.cpython-312.pyc │ │ │ │ ├── cmmlu.cpython-38.pyc │ │ │ │ ├── coqa.cpython-310.pyc │ │ │ │ ├── coqa.cpython-312.pyc │ │ │ │ ├── coqa.cpython-38.pyc │ │ │ │ ├── crowspairs.cpython-310.pyc │ │ │ │ ├── crowspairs.cpython-312.pyc │ │ │ │ ├── crowspairs.cpython-38.pyc │ │ │ │ ├── csatqa.cpython-310.pyc │ │ │ │ ├── csatqa.cpython-312.pyc │ │ │ │ ├── csatqa.cpython-38.pyc │ │ │ │ ├── drop.cpython-310.pyc │ │ │ │ ├── drop.cpython-312.pyc │ │ │ │ ├── drop.cpython-38.pyc │ │ │ │ ├── glue.cpython-310.pyc │ │ │ │ ├── glue.cpython-312.pyc │ │ │ │ ├── glue.cpython-38.pyc │ │ │ │ ├── gsm8k.cpython-310.pyc │ │ │ │ ├── gsm8k.cpython-312.pyc │ │ │ │ ├── gsm8k.cpython-38.pyc │ │ │ │ ├── haerae.cpython-310.pyc │ │ │ │ ├── haerae.cpython-312.pyc │ │ │ │ ├── haerae.cpython-38.pyc │ │ │ │ ├── headqa.cpython-310.pyc │ │ │ │ ├── headqa.cpython-312.pyc │ │ │ │ ├── headqa.cpython-38.pyc │ │ │ │ ├── hellaswag.cpython-310.pyc │ │ │ │ ├── hellaswag.cpython-312.pyc │ │ │ │ ├── hellaswag.cpython-38.pyc │ │ │ │ ├── hendrycks_ethics.cpython-310.pyc │ │ │ │ ├── hendrycks_ethics.cpython-312.pyc │ │ │ │ ├── hendrycks_ethics.cpython-38.pyc │ │ │ │ ├── hendrycks_math.cpython-310.pyc │ │ │ │ ├── hendrycks_math.cpython-312.pyc │ │ │ │ ├── hendrycks_math.cpython-38.pyc │ │ │ │ ├── hendrycks_test.cpython-310.pyc │ │ │ │ ├── hendrycks_test.cpython-312.pyc │ │ │ │ ├── hendrycks_test.cpython-38.pyc │ │ │ │ ├── json.cpython-310.pyc │ │ │ │ ├── json.cpython-312.pyc │ │ │ │ ├── json.cpython-38.pyc │ │ │ │ ├── lambada.cpython-310.pyc │ │ │ │ ├── lambada.cpython-312.pyc │ │ │ │ ├── lambada.cpython-38.pyc │ │ │ │ ├── lambada_cloze.cpython-310.pyc │ │ │ │ ├── lambada_cloze.cpython-312.pyc │ │ │ │ ├── lambada_cloze.cpython-38.pyc │ │ │ │ ├── lambada_multilingual.cpython-310.pyc │ │ │ │ ├── lambada_multilingual.cpython-312.pyc │ │ │ │ ├── lambada_multilingual.cpython-38.pyc │ │ │ │ ├── logiqa.cpython-310.pyc │ │ │ │ ├── logiqa.cpython-312.pyc │ │ │ │ ├── logiqa.cpython-38.pyc │ │ │ │ ├── mathqa.cpython-310.pyc │ │ │ │ ├── mathqa.cpython-312.pyc │ │ │ │ ├── mathqa.cpython-38.pyc │ │ │ │ ├── mc_taco.cpython-310.pyc │ │ │ │ ├── mc_taco.cpython-312.pyc │ │ │ │ ├── mc_taco.cpython-38.pyc │ │ │ │ ├── mgsm.cpython-310.pyc │ │ │ │ ├── mgsm.cpython-312.pyc │ │ │ │ ├── mgsm.cpython-38.pyc │ │ │ │ ├── mutual.cpython-310.pyc │ │ │ │ ├── mutual.cpython-312.pyc │ │ │ │ ├── mutual.cpython-38.pyc │ │ │ │ ├── naturalqs.cpython-310.pyc │ │ │ │ ├── naturalqs.cpython-312.pyc │ │ │ │ ├── naturalqs.cpython-38.pyc │ │ │ │ ├── nqopen.cpython-310.pyc │ │ │ │ ├── nqopen.cpython-312.pyc │ │ │ │ ├── nqopen.cpython-38.pyc │ │ │ │ ├── openbookqa.cpython-310.pyc │ │ │ │ ├── openbookqa.cpython-312.pyc │ │ │ │ ├── openbookqa.cpython-38.pyc │ │ │ │ ├── pawsx.cpython-310.pyc │ │ │ │ ├── pawsx.cpython-312.pyc │ │ │ │ ├── pawsx.cpython-38.pyc │ │ │ │ ├── pile.cpython-310.pyc │ │ │ │ ├── pile.cpython-312.pyc │ │ │ │ ├── pile.cpython-38.pyc │ │ │ │ ├── piqa.cpython-310.pyc │ │ │ │ ├── piqa.cpython-312.pyc │ │ │ │ ├── piqa.cpython-38.pyc │ │ │ │ ├── prost.cpython-310.pyc │ │ │ │ ├── prost.cpython-312.pyc │ │ │ │ ├── prost.cpython-38.pyc │ │ │ │ ├── pubmedqa.cpython-310.pyc │ │ │ │ ├── pubmedqa.cpython-312.pyc │ │ │ │ ├── pubmedqa.cpython-38.pyc │ │ │ │ ├── qa4mre.cpython-310.pyc │ │ │ │ ├── qa4mre.cpython-312.pyc │ │ │ │ ├── qa4mre.cpython-38.pyc │ │ │ │ ├── qasper.cpython-310.pyc │ │ │ │ ├── qasper.cpython-312.pyc │ │ │ │ ├── qasper.cpython-38.pyc │ │ │ │ ├── quac.cpython-310.pyc │ │ │ │ ├── quac.cpython-312.pyc │ │ │ │ ├── quac.cpython-38.pyc │ │ │ │ ├── race.cpython-310.pyc │ │ │ │ ├── race.cpython-312.pyc │ │ │ │ ├── race.cpython-38.pyc │ │ │ │ ├── sat.cpython-310.pyc │ │ │ │ ├── sat.cpython-312.pyc │ │ │ │ ├── sat.cpython-38.pyc │ │ │ │ ├── sciq.cpython-310.pyc │ │ │ │ ├── sciq.cpython-312.pyc │ │ │ │ ├── sciq.cpython-38.pyc │ │ │ │ ├── scrolls.cpython-310.pyc │ │ │ │ ├── scrolls.cpython-312.pyc │ │ │ │ ├── scrolls.cpython-38.pyc │ │ │ │ ├── squad.cpython-310.pyc │ │ │ │ ├── squad.cpython-312.pyc │ │ │ │ ├── squad.cpython-38.pyc │ │ │ │ ├── storycloze.cpython-310.pyc │ │ │ │ ├── storycloze.cpython-312.pyc │ │ │ │ ├── storycloze.cpython-38.pyc │ │ │ │ ├── superglue.cpython-310.pyc │ │ │ │ ├── superglue.cpython-312.pyc │ │ │ │ ├── superglue.cpython-38.pyc │ │ │ │ ├── swag.cpython-310.pyc │ │ │ │ ├── swag.cpython-312.pyc │ │ │ │ ├── swag.cpython-38.pyc │ │ │ │ ├── toxigen.cpython-310.pyc │ │ │ │ ├── toxigen.cpython-312.pyc │ │ │ │ ├── toxigen.cpython-38.pyc │ │ │ │ ├── translation.cpython-310.pyc │ │ │ │ ├── translation.cpython-312.pyc │ │ │ │ ├── translation.cpython-38.pyc │ │ │ │ ├── triviaqa.cpython-310.pyc │ │ │ │ ├── triviaqa.cpython-312.pyc │ │ │ │ ├── triviaqa.cpython-38.pyc │ │ │ │ ├── truthfulqa.cpython-310.pyc │ │ │ │ ├── truthfulqa.cpython-312.pyc │ │ │ │ ├── truthfulqa.cpython-38.pyc │ │ │ │ ├── unscramble.cpython-310.pyc │ │ │ │ ├── unscramble.cpython-312.pyc │ │ │ │ ├── unscramble.cpython-38.pyc │ │ │ │ ├── webqs.cpython-310.pyc │ │ │ │ ├── webqs.cpython-312.pyc │ │ │ │ ├── webqs.cpython-38.pyc │ │ │ │ ├── wikitext.cpython-310.pyc │ │ │ │ ├── wikitext.cpython-312.pyc │ │ │ │ ├── wikitext.cpython-38.pyc │ │ │ │ ├── winogrande.cpython-310.pyc │ │ │ │ ├── winogrande.cpython-312.pyc │ │ │ │ ├── winogrande.cpython-38.pyc │ │ │ │ ├── wsc273.cpython-310.pyc │ │ │ │ ├── wsc273.cpython-312.pyc │ │ │ │ ├── wsc273.cpython-38.pyc │ │ │ │ ├── xcopa.cpython-310.pyc │ │ │ │ ├── xcopa.cpython-312.pyc │ │ │ │ ├── xcopa.cpython-38.pyc │ │ │ │ ├── xnli.cpython-310.pyc │ │ │ │ ├── xnli.cpython-312.pyc │ │ │ │ ├── xnli.cpython-38.pyc │ │ │ │ ├── xstorycloze.cpython-310.pyc │ │ │ │ ├── xstorycloze.cpython-312.pyc │ │ │ │ ├── xstorycloze.cpython-38.pyc │ │ │ │ ├── xwinograd.cpython-310.pyc │ │ │ │ ├── xwinograd.cpython-312.pyc │ │ │ │ └── xwinograd.cpython-38.pyc │ │ │ ├── anli.py │ │ │ ├── arc.py │ │ │ ├── arithmetic.py │ │ │ ├── asdiv.py │ │ │ ├── babi.py │ │ │ ├── bigbench.py │ │ │ ├── blimp.py │ │ │ ├── cbt.py │ │ │ ├── ceval.py │ │ │ ├── cmmlu.py │ │ │ ├── coqa.py │ │ │ ├── crowspairs.py │ │ │ ├── csatqa.py │ │ │ ├── drop.py │ │ │ ├── glue.py │ │ │ ├── gsm8k.py │ │ │ ├── haerae.py │ │ │ ├── headqa.py │ │ │ ├── hellaswag.py │ │ │ ├── hendrycks_ethics.py │ │ │ ├── hendrycks_math.py │ │ │ ├── hendrycks_test.py │ │ │ ├── json.py │ │ │ ├── lambada.py │ │ │ ├── lambada_cloze.py │ │ │ ├── lambada_multilingual.py │ │ │ ├── logiqa.py │ │ │ ├── mathqa.py │ │ │ ├── mc_taco.py │ │ │ ├── mgsm.py │ │ │ ├── mutual.py │ │ │ ├── naturalqs.py │ │ │ ├── nqopen.py │ │ │ ├── openbookqa.py │ │ │ ├── pawsx.py │ │ │ ├── pile.py │ │ │ ├── piqa.py │ │ │ ├── prost.py │ │ │ ├── pubmedqa.py │ │ │ ├── qa4mre.py │ │ │ ├── qasper.py │ │ │ ├── quac.py │ │ │ ├── race.py │ │ │ ├── sat.py │ │ │ ├── sciq.py │ │ │ ├── scrolls.py │ │ │ ├── squad.py │ │ │ ├── storycloze.py │ │ │ ├── superglue.py │ │ │ ├── swag.py │ │ │ ├── toxigen.py │ │ │ ├── translation.py │ │ │ ├── triviaqa.py │ │ │ ├── truthfulqa.py │ │ │ ├── unscramble.py │ │ │ ├── webqs.py │ │ │ ├── wikitext.py │ │ │ ├── winogrande.py │ │ │ ├── wsc273.py │ │ │ ├── xcopa.py │ │ │ ├── xnli.py │ │ │ ├── xstorycloze.py │ │ │ └── xwinograd.py │ │ └── utils.py │ └── scripts │ │ ├── class │ │ └── mistral_7b_boolq.sh │ │ └── gen │ │ ├── gemma_7b_coqa.sh │ │ └── llama2_7b_xsum.sh ├── xevaluator.py └── xhuggingface.py ├── README.md ├── index.html ├── requirements.txt └── static ├── .DS_Store ├── Triforce.ttf ├── css ├── bulma-carousel.min.css ├── bulma-slider.min.css ├── bulma.css.map.txt ├── bulma.min.css ├── fontawesome.all.min.css └── index.css ├── images ├── DALL·E 2024-09-02 20.52.33 - A cute but more accurate representation of the International Space Station (ISS) floating in space. The ISS should be depicted with recognizable featu.webp ├── Fast.png ├── GPU.png ├── Hierarchical.png ├── Hierarchy.png ├── Idea.png ├── InternationalSpaceStation.png ├── Llama.png ├── Observation.png ├── Simplerspace.webp ├── Sys_readme.png ├── Telescope.png ├── TriForce.gif ├── cosmonautllama.png ├── demo.png ├── introduction.png ├── iss.webp ├── lim.png ├── locality.png ├── methodsillustration.png ├── probwebsite.png ├── retrieval.png ├── rockets.png ├── rockets.webp ├── simpleiss.png ├── sirius-symbol.svg ├── siriuslogo.png ├── siriuslogo.webp ├── siriusmoti.png ├── sparsity_top4096.png ├── sys.png ├── triforce.png ├── twomooone.png ├── twostars.webp └── twostarts.webp ├── js ├── bulma-carousel.js ├── bulma-carousel.min.js ├── bulma-slider.js ├── bulma-slider.min.js ├── fontawesome.all.min.js └── index.js ├── pdfs └── sample.pdf └── videos └── TriForce.mp4 /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/.DS_Store -------------------------------------------------------------------------------- /CodeGeneration/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/.DS_Store -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/arguments.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/base.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/evaluator.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/generation.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/__init__.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/apps.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/codexglue_code_to_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/codexglue_code_to_text.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/codexglue_text_to_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/codexglue_text_to_text.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/conala.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/conala.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/concode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/concode.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/beyond_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/beyond_eval.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/code_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/code_eval.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/codexglue_code_to_text_bleu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/codexglue_code_to_text_bleu.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/diff_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/diff_eval.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/execute.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/containerized_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/containerized_eval.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_cpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_cpp.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_cs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_cs.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_dlang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_dlang.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_go.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_java.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_java.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_javascript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_javascript.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_julia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_julia.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_lua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_lua.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_php.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_php.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_pl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_pl.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_python.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_r.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_r.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_racket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_racket.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_ruby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_ruby.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_rust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_rust.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_scala.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_scala.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_sh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_sh.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_swift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_swift.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_ts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/eval_ts.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/evaluation.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/generic_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/generic_eval.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/libeval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/libeval.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/safe_subprocess/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/safe_subprocess/.gitignore -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/safe_subprocess/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/safe_subprocess/__init__.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/safe_subprocess/evil_programs/block_on_inputs.py: -------------------------------------------------------------------------------- 1 | while True: 2 | input() 3 | -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/safe_subprocess/evil_programs/close_outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/safe_subprocess/evil_programs/close_outputs.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/safe_subprocess/evil_programs/fork_bomb.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | while True: 4 | os.fork() 5 | -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/safe_subprocess/evil_programs/fork_once.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/safe_subprocess/evil_programs/fork_once.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/safe_subprocess/evil_programs/sleep_forever.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/safe_subprocess/evil_programs/sleep_forever.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/safe_subprocess/evil_programs/unbounded_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/safe_subprocess/evil_programs/unbounded_output.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/safe_subprocess/module_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/safe_subprocess/module_test.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/single_experiment_pass_k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/multiple_metrics/single_experiment_pass_k.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/pal_metric/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/pal_metric/pal_code_exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/pal_metric/pal_code_exec.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/custom_metrics/pal_metric/python_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/custom_metrics/pal_metric/python_executor.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/ds1000.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/ds1000.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/few_shot_examples/codexglue_text_to_text_few_shot_prompts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/few_shot_examples/codexglue_text_to_text_few_shot_prompts.json -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/few_shot_examples/conala_few_shot_prompts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/few_shot_examples/conala_few_shot_prompts.json -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/few_shot_examples/concode_few_shot_prompts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/few_shot_examples/concode_few_shot_prompts.json -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/few_shot_examples/gsm8k_few_shot_prompts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/few_shot_examples/gsm8k_few_shot_prompts.json -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/gsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/gsm.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/humaneval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/humaneval.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/humanevalpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/humanevalpack.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/humanevalpack_openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/humanevalpack_openai.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/humanevalplus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/humanevalplus.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/instruct_humaneval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/instruct_humaneval.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/instruct_wizard_humaneval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/instruct_wizard_humaneval.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/mbpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/mbpp.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/mbppplus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/mbppplus.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/mercury.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/mercury.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/multiple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/multiple.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/parity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/parity.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/python_bugs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/python_bugs.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/quixbugs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/quixbugs.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/recode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/recode.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/santacoder_fim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/santacoder_fim.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/tasks/studenteval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/tasks/studenteval.py -------------------------------------------------------------------------------- /CodeGeneration/bigcode_eval/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/bigcode_eval/utils.py -------------------------------------------------------------------------------- /CodeGeneration/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/cache.py -------------------------------------------------------------------------------- /CodeGeneration/llama12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/llama12.py -------------------------------------------------------------------------------- /CodeGeneration/llama12addingtree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/llama12addingtree.py -------------------------------------------------------------------------------- /CodeGeneration/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/main.py -------------------------------------------------------------------------------- /CodeGeneration/runningscript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/runningscript.sh -------------------------------------------------------------------------------- /CodeGeneration/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/setup.py -------------------------------------------------------------------------------- /CodeGeneration/tests/data/humaneval_eval_gens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/tests/data/humaneval_eval_gens.json -------------------------------------------------------------------------------- /CodeGeneration/tests/data/humaneval_gen_gens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/tests/data/humaneval_gen_gens.json -------------------------------------------------------------------------------- /CodeGeneration/tests/data/humaneval_gen_refs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/tests/data/humaneval_gen_refs.json -------------------------------------------------------------------------------- /CodeGeneration/tests/data/mbpp_eval_gens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/tests/data/mbpp_eval_gens.json -------------------------------------------------------------------------------- /CodeGeneration/tests/data/mbpp_gen_gens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/tests/data/mbpp_gen_gens.json -------------------------------------------------------------------------------- /CodeGeneration/tests/data/mbpp_gen_refs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/tests/data/mbpp_gen_refs.json -------------------------------------------------------------------------------- /CodeGeneration/tests/data/pal-gsm8k-greedy_eval_gens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/tests/data/pal-gsm8k-greedy_eval_gens.json -------------------------------------------------------------------------------- /CodeGeneration/tests/data/pal-gsm8k-greedy_prompt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/tests/data/pal-gsm8k-greedy_prompt.json -------------------------------------------------------------------------------- /CodeGeneration/tests/test_generation_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/tests/test_generation_evaluation.py -------------------------------------------------------------------------------- /CodeGeneration/tests/test_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CodeGeneration/tests/test_prompts.py -------------------------------------------------------------------------------- /CommonSenseReasoning/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CommonSenseReasoning/.DS_Store -------------------------------------------------------------------------------- /CommonSenseReasoning/aqua_cot_prompts_5shot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CommonSenseReasoning/aqua_cot_prompts_5shot.txt -------------------------------------------------------------------------------- /CommonSenseReasoning/aqua_cot_prompts_5shot_old.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CommonSenseReasoning/aqua_cot_prompts_5shot_old.txt -------------------------------------------------------------------------------- /CommonSenseReasoning/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CommonSenseReasoning/cache.py -------------------------------------------------------------------------------- /CommonSenseReasoning/csqa_cot_prompts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CommonSenseReasoning/csqa_cot_prompts.txt -------------------------------------------------------------------------------- /CommonSenseReasoning/csqa_cot_prompts_1shot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CommonSenseReasoning/csqa_cot_prompts_1shot.txt -------------------------------------------------------------------------------- /CommonSenseReasoning/csqa_cot_prompts_5shot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CommonSenseReasoning/csqa_cot_prompts_5shot.txt -------------------------------------------------------------------------------- /CommonSenseReasoning/date_cot_prompts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CommonSenseReasoning/date_cot_prompts.txt -------------------------------------------------------------------------------- /CommonSenseReasoning/date_cot_prompts_1shot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CommonSenseReasoning/date_cot_prompts_1shot.txt -------------------------------------------------------------------------------- /CommonSenseReasoning/date_cot_prompts_5shot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CommonSenseReasoning/date_cot_prompts_5shot.txt -------------------------------------------------------------------------------- /CommonSenseReasoning/llama12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CommonSenseReasoning/llama12.py -------------------------------------------------------------------------------- /CommonSenseReasoning/llama12addingtree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CommonSenseReasoning/llama12addingtree.py -------------------------------------------------------------------------------- /CommonSenseReasoning/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CommonSenseReasoning/main.py -------------------------------------------------------------------------------- /CommonSenseReasoning/runtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CommonSenseReasoning/runtest.sh -------------------------------------------------------------------------------- /CommonSenseReasoning/sports_cot_prompts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CommonSenseReasoning/sports_cot_prompts.txt -------------------------------------------------------------------------------- /CommonSenseReasoning/sports_cot_prompts_5shot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CommonSenseReasoning/sports_cot_prompts_5shot.txt -------------------------------------------------------------------------------- /CommonSenseReasoning/strategyqa_cot_prompts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CommonSenseReasoning/strategyqa_cot_prompts.txt -------------------------------------------------------------------------------- /CommonSenseReasoning/strategyqa_cot_prompts_5shot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/CommonSenseReasoning/strategyqa_cot_prompts_5shot.txt -------------------------------------------------------------------------------- /Miscellaneous/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/.DS_Store -------------------------------------------------------------------------------- /Miscellaneous/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/cache.py -------------------------------------------------------------------------------- /Miscellaneous/debugging1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/debugging1.sh -------------------------------------------------------------------------------- /Miscellaneous/llama12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/llama12.py -------------------------------------------------------------------------------- /Miscellaneous/llama12_static_cache_sdpa_with_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/llama12_static_cache_sdpa_with_check.py -------------------------------------------------------------------------------- /Miscellaneous/llama12_static_cache_sdpa_with_check3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/llama12_static_cache_sdpa_with_check3.py -------------------------------------------------------------------------------- /Miscellaneous/llama12_static_cache_sdpa_with_treee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/llama12_static_cache_sdpa_with_treee.py -------------------------------------------------------------------------------- /Miscellaneous/llama12_static_cache_sdpa_with_treewo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/llama12_static_cache_sdpa_with_treewo.py -------------------------------------------------------------------------------- /Miscellaneous/llama12addingtree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/llama12addingtree.py -------------------------------------------------------------------------------- /Miscellaneous/llama12pipa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/llama12pipa.py -------------------------------------------------------------------------------- /Miscellaneous/llamalargeweightrunoffload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/llamalargeweightrunoffload.py -------------------------------------------------------------------------------- /Miscellaneous/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/main.py -------------------------------------------------------------------------------- /Miscellaneous/src/eval_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/eval_gen.py -------------------------------------------------------------------------------- /Miscellaneous/src/griffin/gemma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/griffin/gemma.py -------------------------------------------------------------------------------- /Miscellaneous/src/griffin/llama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/griffin/llama.py -------------------------------------------------------------------------------- /Miscellaneous/src/griffin/mistral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/griffin/mistral.py -------------------------------------------------------------------------------- /Miscellaneous/src/griffin/opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/griffin/opt.py -------------------------------------------------------------------------------- /Miscellaneous/src/griffin/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/griffin/utils.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/__pycache__/base.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/__pycache__/base.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/__pycache__/base.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/__pycache__/base.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/__pycache__/base.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/__pycache__/base.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/__pycache__/evaluator.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/__pycache__/evaluator.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/__pycache__/evaluator.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/__pycache__/evaluator.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/__pycache__/evaluator.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/__pycache__/evaluator.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/__pycache__/metrics.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/__pycache__/metrics.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/__pycache__/metrics.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/__pycache__/metrics.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/__pycache__/metrics.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/__pycache__/metrics.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/__pycache__/utils.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/__pycache__/utils.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/base.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/README.md -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/asdiv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/asdiv/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/asdiv/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/asdiv/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/asdiv/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/asdiv/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/asdiv/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/asdiv/__pycache__/asdiv.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/asdiv/__pycache__/asdiv.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/asdiv/__pycache__/asdiv.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/asdiv/__pycache__/asdiv.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/asdiv/__pycache__/asdiv.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/asdiv/__pycache__/asdiv.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/asdiv/asdiv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/asdiv/asdiv.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/asdiv/dataset_infos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/asdiv/dataset_infos.json -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/bigbench_resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/bigbench_resources/causal_judgement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/bigbench_resources/causal_judgement.json -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/bigbench_resources/date_understanding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/bigbench_resources/date_understanding.json -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/bigbench_resources/disambiguation_qa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/bigbench_resources/disambiguation_qa.json -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/bigbench_resources/dyck_languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/bigbench_resources/dyck_languages.json -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/bigbench_resources/formal_fallacies_syllogisms_negation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/bigbench_resources/formal_fallacies_syllogisms_negation.json -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/bigbench_resources/geometric_shapes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/bigbench_resources/geometric_shapes.json -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/bigbench_resources/hyperbaton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/bigbench_resources/hyperbaton.json -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/bigbench_resources/logical_deduction_five_objects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/bigbench_resources/logical_deduction_five_objects.json -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/bigbench_resources/logical_deduction_seven_objects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/bigbench_resources/logical_deduction_seven_objects.json -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/bigbench_resources/logical_deduction_three_objects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/bigbench_resources/logical_deduction_three_objects.json -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/bigbench_resources/movie_recommendation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/bigbench_resources/movie_recommendation.json -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/bigbench_resources/navigate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/bigbench_resources/navigate.json -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/bigbench_resources/reasoning_about_colored_objects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/bigbench_resources/reasoning_about_colored_objects.json -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/bigbench_resources/ruin_names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/bigbench_resources/ruin_names.json -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/bigbench_resources/salient_translation_error_detection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/bigbench_resources/salient_translation_error_detection.json -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/bigbench_resources/snarks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/bigbench_resources/snarks.json -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/bigbench_resources/sports_understanding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/bigbench_resources/sports_understanding.json -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/bigbench_resources/temporal_sequences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/bigbench_resources/temporal_sequences.json -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/bigbench_resources/tracking_shuffled_objects_five_objects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/bigbench_resources/tracking_shuffled_objects_five_objects.json -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/bigbench_resources/tracking_shuffled_objects_seven_objects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/bigbench_resources/tracking_shuffled_objects_seven_objects.json -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/bigbench_resources/tracking_shuffled_objects_three_objects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/bigbench_resources/tracking_shuffled_objects_three_objects.json -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/coqa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/coqa/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/coqa/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/coqa/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/coqa/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/coqa/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/coqa/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/coqa/__pycache__/coqa.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/coqa/__pycache__/coqa.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/coqa/__pycache__/coqa.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/coqa/__pycache__/coqa.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/coqa/__pycache__/coqa.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/coqa/__pycache__/coqa.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/coqa/coqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/coqa/coqa.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/coqa/dataset_infos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/coqa/dataset_infos.json -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/drop/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/drop/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/drop/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/drop/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/drop/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/drop/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/drop/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/drop/__pycache__/drop.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/drop/__pycache__/drop.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/drop/__pycache__/drop.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/drop/__pycache__/drop.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/drop/__pycache__/drop.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/drop/__pycache__/drop.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/drop/dataset_infos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/drop/dataset_infos.json -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/drop/drop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/drop/drop.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/headqa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/headqa/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/headqa/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/headqa/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/headqa/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/headqa/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/headqa/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/headqa/__pycache__/headqa.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/headqa/__pycache__/headqa.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/headqa/__pycache__/headqa.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/headqa/__pycache__/headqa.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/headqa/__pycache__/headqa.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/headqa/__pycache__/headqa.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/headqa/dataset_infos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/headqa/dataset_infos.json -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/headqa/headqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/headqa/headqa.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/hendrycks_ethics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/hendrycks_ethics/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/hendrycks_ethics/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/hendrycks_ethics/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/hendrycks_ethics/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/hendrycks_ethics/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/hendrycks_ethics/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/hendrycks_ethics/__pycache__/hendrycks_ethics.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/hendrycks_ethics/__pycache__/hendrycks_ethics.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/hendrycks_ethics/__pycache__/hendrycks_ethics.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/hendrycks_ethics/__pycache__/hendrycks_ethics.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/hendrycks_ethics/__pycache__/hendrycks_ethics.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/hendrycks_ethics/__pycache__/hendrycks_ethics.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/hendrycks_ethics/dataset_infos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/hendrycks_ethics/dataset_infos.json -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/hendrycks_ethics/hendrycks_ethics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/hendrycks_ethics/hendrycks_ethics.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/hendrycks_math/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/hendrycks_math/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/hendrycks_math/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/hendrycks_math/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/hendrycks_math/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/hendrycks_math/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/hendrycks_math/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/hendrycks_math/__pycache__/hendrycks_math.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/hendrycks_math/__pycache__/hendrycks_math.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/hendrycks_math/__pycache__/hendrycks_math.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/hendrycks_math/__pycache__/hendrycks_math.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/hendrycks_math/__pycache__/hendrycks_math.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/hendrycks_math/__pycache__/hendrycks_math.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/hendrycks_math/dataset_infos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/hendrycks_math/dataset_infos.json -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/hendrycks_math/hendrycks_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/hendrycks_math/hendrycks_math.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/logiqa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/logiqa/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/logiqa/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/logiqa/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/logiqa/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/logiqa/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/logiqa/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/logiqa/__pycache__/logiqa.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/logiqa/__pycache__/logiqa.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/logiqa/__pycache__/logiqa.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/logiqa/__pycache__/logiqa.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/logiqa/__pycache__/logiqa.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/logiqa/__pycache__/logiqa.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/logiqa/dataset_infos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/logiqa/dataset_infos.json -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/logiqa/logiqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/logiqa/logiqa.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/mutual/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/mutual/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/mutual/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/mutual/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/mutual/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/mutual/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/mutual/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/mutual/__pycache__/mutual.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/mutual/__pycache__/mutual.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/mutual/__pycache__/mutual.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/mutual/__pycache__/mutual.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/mutual/__pycache__/mutual.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/mutual/__pycache__/mutual.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/mutual/dataset_infos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/mutual/dataset_infos.json -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/mutual/mutual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/mutual/mutual.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/pile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/pile/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/pile/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/pile/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/pile/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/pile/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/pile/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/pile/__pycache__/pile.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/pile/__pycache__/pile.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/pile/__pycache__/pile.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/pile/__pycache__/pile.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/pile/__pycache__/pile.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/pile/__pycache__/pile.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/pile/dataset_infos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/pile/dataset_infos.json -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/pile/pile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/pile/pile.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/quac/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/quac/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/quac/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/quac/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/quac/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/quac/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/quac/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/quac/__pycache__/quac.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/quac/__pycache__/quac.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/quac/__pycache__/quac.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/quac/__pycache__/quac.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/quac/__pycache__/quac.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/quac/__pycache__/quac.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/quac/dataset_infos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/quac/dataset_infos.json -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/quac/quac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/quac/quac.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/sat_analogies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/sat_analogies/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/sat_analogies/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/sat_analogies/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/sat_analogies/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/sat_analogies/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/sat_analogies/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/sat_analogies/__pycache__/sat_analogies.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/sat_analogies/__pycache__/sat_analogies.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/sat_analogies/__pycache__/sat_analogies.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/sat_analogies/__pycache__/sat_analogies.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/sat_analogies/__pycache__/sat_analogies.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/sat_analogies/__pycache__/sat_analogies.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/sat_analogies/sat_analogies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/sat_analogies/sat_analogies.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/unscramble/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/unscramble/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/unscramble/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/unscramble/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/unscramble/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/unscramble/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/unscramble/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/unscramble/__pycache__/unscramble.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/unscramble/__pycache__/unscramble.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/unscramble/__pycache__/unscramble.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/unscramble/__pycache__/unscramble.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/unscramble/__pycache__/unscramble.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/unscramble/__pycache__/unscramble.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/unscramble/dataset_infos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/unscramble/dataset_infos.json -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/datasets/unscramble/unscramble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/datasets/unscramble/unscramble.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/decontamination/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/decontamination/archiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/decontamination/archiver.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/decontamination/decontaminate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/decontamination/decontaminate.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/decontamination/janitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/decontamination/janitor.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/evaluator.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/metrics.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/models/__init__.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/models/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/models/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/models/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/models/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/models/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/models/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/models/__pycache__/anthropic_llms.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/models/__pycache__/anthropic_llms.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/models/__pycache__/anthropic_llms.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/models/__pycache__/anthropic_llms.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/models/__pycache__/anthropic_llms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/models/__pycache__/anthropic_llms.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/models/__pycache__/dummy.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/models/__pycache__/dummy.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/models/__pycache__/dummy.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/models/__pycache__/dummy.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/models/__pycache__/dummy.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/models/__pycache__/dummy.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/models/__pycache__/gpt2.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/models/__pycache__/gpt2.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/models/__pycache__/gpt2.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/models/__pycache__/gpt2.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/models/__pycache__/gpt2.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/models/__pycache__/gpt2.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/models/__pycache__/gpt3.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/models/__pycache__/gpt3.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/models/__pycache__/gpt3.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/models/__pycache__/gpt3.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/models/__pycache__/gpt3.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/models/__pycache__/gpt3.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/models/__pycache__/huggingface.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/models/__pycache__/huggingface.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/models/__pycache__/huggingface.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/models/__pycache__/huggingface.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/models/__pycache__/huggingface.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/models/__pycache__/huggingface.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/models/__pycache__/textsynth.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/models/__pycache__/textsynth.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/models/__pycache__/textsynth.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/models/__pycache__/textsynth.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/models/__pycache__/textsynth.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/models/__pycache__/textsynth.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/models/anthropic_llms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/models/anthropic_llms.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/models/dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/models/dummy.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/models/gpt2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/models/gpt2.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/models/gpt3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/models/gpt3.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/models/huggingface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/models/huggingface.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/models/textsynth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/models/textsynth.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__init__.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/anli.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/anli.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/anli.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/anli.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/anli.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/anli.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/arc.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/arc.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/arc.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/arc.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/arc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/arc.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/arithmetic.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/arithmetic.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/arithmetic.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/arithmetic.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/arithmetic.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/arithmetic.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/asdiv.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/asdiv.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/asdiv.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/asdiv.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/asdiv.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/asdiv.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/babi.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/babi.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/babi.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/babi.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/babi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/babi.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/blimp.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/blimp.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/blimp.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/blimp.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/blimp.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/blimp.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/cbt.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/cbt.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/cbt.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/cbt.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/cbt.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/cbt.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/ceval.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/ceval.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/ceval.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/ceval.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/ceval.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/ceval.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/cmmlu.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/cmmlu.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/cmmlu.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/cmmlu.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/cmmlu.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/cmmlu.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/coqa.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/coqa.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/coqa.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/coqa.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/coqa.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/coqa.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/crowspairs.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/crowspairs.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/crowspairs.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/crowspairs.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/crowspairs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/crowspairs.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/csatqa.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/csatqa.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/csatqa.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/csatqa.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/csatqa.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/csatqa.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/drop.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/drop.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/drop.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/drop.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/drop.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/drop.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/glue.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/glue.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/glue.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/glue.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/glue.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/glue.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/gsm8k.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/gsm8k.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/gsm8k.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/gsm8k.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/gsm8k.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/gsm8k.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/haerae.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/haerae.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/haerae.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/haerae.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/haerae.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/haerae.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/headqa.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/headqa.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/headqa.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/headqa.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/headqa.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/headqa.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/hellaswag.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/hellaswag.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/hellaswag.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/hellaswag.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/hellaswag.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/hellaswag.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/hendrycks_ethics.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/hendrycks_ethics.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/hendrycks_ethics.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/hendrycks_ethics.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/hendrycks_ethics.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/hendrycks_ethics.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/hendrycks_math.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/hendrycks_math.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/hendrycks_math.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/hendrycks_math.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/hendrycks_math.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/hendrycks_math.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/hendrycks_test.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/hendrycks_test.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/hendrycks_test.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/hendrycks_test.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/hendrycks_test.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/hendrycks_test.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/json.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/json.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/json.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/json.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/json.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/json.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/lambada.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/lambada.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/lambada.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/lambada.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/lambada.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/lambada.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/lambada_cloze.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/lambada_cloze.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/lambada_cloze.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/lambada_cloze.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/lambada_cloze.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/lambada_cloze.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/lambada_multilingual.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/lambada_multilingual.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/lambada_multilingual.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/lambada_multilingual.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/lambada_multilingual.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/lambada_multilingual.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/logiqa.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/logiqa.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/logiqa.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/logiqa.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/logiqa.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/logiqa.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/mathqa.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/mathqa.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/mathqa.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/mathqa.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/mathqa.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/mathqa.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/mc_taco.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/mc_taco.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/mc_taco.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/mc_taco.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/mc_taco.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/mc_taco.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/mgsm.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/mgsm.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/mgsm.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/mgsm.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/mgsm.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/mgsm.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/mutual.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/mutual.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/mutual.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/mutual.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/mutual.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/mutual.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/naturalqs.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/naturalqs.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/naturalqs.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/naturalqs.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/naturalqs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/naturalqs.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/nqopen.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/nqopen.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/nqopen.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/nqopen.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/nqopen.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/nqopen.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/openbookqa.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/openbookqa.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/openbookqa.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/openbookqa.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/openbookqa.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/openbookqa.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/pawsx.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/pawsx.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/pawsx.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/pawsx.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/pawsx.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/pawsx.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/pile.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/pile.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/pile.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/pile.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/pile.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/pile.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/piqa.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/piqa.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/piqa.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/piqa.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/piqa.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/piqa.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/prost.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/prost.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/prost.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/prost.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/prost.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/prost.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/pubmedqa.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/pubmedqa.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/pubmedqa.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/pubmedqa.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/pubmedqa.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/pubmedqa.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/qa4mre.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/qa4mre.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/qa4mre.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/qa4mre.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/qa4mre.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/qa4mre.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/qasper.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/qasper.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/qasper.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/qasper.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/qasper.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/qasper.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/quac.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/quac.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/quac.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/quac.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/quac.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/quac.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/race.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/race.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/race.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/race.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/race.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/race.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/sat.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/sat.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/sat.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/sat.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/sat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/sat.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/sciq.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/sciq.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/sciq.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/sciq.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/sciq.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/sciq.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/scrolls.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/scrolls.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/scrolls.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/scrolls.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/scrolls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/scrolls.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/squad.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/squad.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/squad.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/squad.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/squad.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/squad.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/storycloze.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/storycloze.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/storycloze.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/storycloze.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/storycloze.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/storycloze.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/superglue.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/superglue.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/superglue.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/superglue.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/superglue.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/superglue.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/swag.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/swag.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/swag.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/swag.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/swag.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/swag.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/toxigen.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/toxigen.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/toxigen.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/toxigen.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/toxigen.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/toxigen.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/translation.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/translation.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/translation.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/translation.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/translation.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/translation.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/triviaqa.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/triviaqa.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/triviaqa.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/triviaqa.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/triviaqa.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/triviaqa.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/truthfulqa.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/truthfulqa.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/truthfulqa.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/truthfulqa.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/truthfulqa.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/truthfulqa.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/unscramble.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/unscramble.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/unscramble.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/unscramble.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/unscramble.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/unscramble.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/webqs.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/webqs.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/webqs.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/webqs.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/webqs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/webqs.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/wikitext.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/wikitext.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/wikitext.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/wikitext.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/wikitext.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/wikitext.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/winogrande.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/winogrande.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/winogrande.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/winogrande.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/winogrande.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/winogrande.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/wsc273.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/wsc273.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/wsc273.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/wsc273.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/wsc273.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/wsc273.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/xcopa.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/xcopa.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/xcopa.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/xcopa.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/xcopa.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/xcopa.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/xnli.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/xnli.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/xnli.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/xnli.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/xnli.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/xnli.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/xstorycloze.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/xstorycloze.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/xstorycloze.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/xstorycloze.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/xstorycloze.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/xstorycloze.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/xwinograd.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/xwinograd.cpython-310.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/xwinograd.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/xwinograd.cpython-312.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/__pycache__/xwinograd.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/__pycache__/xwinograd.cpython-38.pyc -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/anli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/anli.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/arc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/arc.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/arithmetic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/arithmetic.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/asdiv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/asdiv.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/babi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/babi.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/bigbench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/bigbench.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/blimp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/blimp.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/cbt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/cbt.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/ceval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/ceval.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/cmmlu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/cmmlu.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/coqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/coqa.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/crowspairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/crowspairs.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/csatqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/csatqa.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/drop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/drop.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/glue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/glue.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/gsm8k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/gsm8k.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/haerae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/haerae.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/headqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/headqa.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/hellaswag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/hellaswag.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/hendrycks_ethics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/hendrycks_ethics.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/hendrycks_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/hendrycks_math.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/hendrycks_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/hendrycks_test.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/json.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/lambada.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/lambada.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/lambada_cloze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/lambada_cloze.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/lambada_multilingual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/lambada_multilingual.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/logiqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/logiqa.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/mathqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/mathqa.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/mc_taco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/mc_taco.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/mgsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/mgsm.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/mutual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/mutual.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/naturalqs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/naturalqs.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/nqopen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/nqopen.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/openbookqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/openbookqa.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/pawsx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/pawsx.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/pile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/pile.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/piqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/piqa.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/prost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/prost.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/pubmedqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/pubmedqa.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/qa4mre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/qa4mre.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/qasper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/qasper.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/quac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/quac.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/race.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/race.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/sat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/sat.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/sciq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/sciq.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/scrolls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/scrolls.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/squad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/squad.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/storycloze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/storycloze.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/superglue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/superglue.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/swag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/swag.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/toxigen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/toxigen.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/translation.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/triviaqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/triviaqa.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/truthfulqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/truthfulqa.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/unscramble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/unscramble.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/webqs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/webqs.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/wikitext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/wikitext.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/winogrande.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/winogrande.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/wsc273.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/wsc273.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/xcopa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/xcopa.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/xnli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/xnli.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/xstorycloze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/xstorycloze.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/tasks/xwinograd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/tasks/xwinograd.py -------------------------------------------------------------------------------- /Miscellaneous/src/lm_eval/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/lm_eval/utils.py -------------------------------------------------------------------------------- /Miscellaneous/src/scripts/class/mistral_7b_boolq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/scripts/class/mistral_7b_boolq.sh -------------------------------------------------------------------------------- /Miscellaneous/src/scripts/gen/gemma_7b_coqa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/scripts/gen/gemma_7b_coqa.sh -------------------------------------------------------------------------------- /Miscellaneous/src/scripts/gen/llama2_7b_xsum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/src/scripts/gen/llama2_7b_xsum.sh -------------------------------------------------------------------------------- /Miscellaneous/xevaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/xevaluator.py -------------------------------------------------------------------------------- /Miscellaneous/xhuggingface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/Miscellaneous/xhuggingface.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/index.html -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/.DS_Store -------------------------------------------------------------------------------- /static/Triforce.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/Triforce.ttf -------------------------------------------------------------------------------- /static/css/bulma-carousel.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/css/bulma-carousel.min.css -------------------------------------------------------------------------------- /static/css/bulma-slider.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/css/bulma-slider.min.css -------------------------------------------------------------------------------- /static/css/bulma.css.map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/css/bulma.css.map.txt -------------------------------------------------------------------------------- /static/css/bulma.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/css/bulma.min.css -------------------------------------------------------------------------------- /static/css/fontawesome.all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/css/fontawesome.all.min.css -------------------------------------------------------------------------------- /static/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/css/index.css -------------------------------------------------------------------------------- /static/images/DALL·E 2024-09-02 20.52.33 - A cute but more accurate representation of the International Space Station (ISS) floating in space. The ISS should be depicted with recognizable featu.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/images/DALL·E 2024-09-02 20.52.33 - A cute but more accurate representation of the International Space Station (ISS) floating in space. The ISS should be depicted with recognizable featu.webp -------------------------------------------------------------------------------- /static/images/Fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/images/Fast.png -------------------------------------------------------------------------------- /static/images/GPU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/images/GPU.png -------------------------------------------------------------------------------- /static/images/Hierarchical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/images/Hierarchical.png -------------------------------------------------------------------------------- /static/images/Hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/images/Hierarchy.png -------------------------------------------------------------------------------- /static/images/Idea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/images/Idea.png -------------------------------------------------------------------------------- /static/images/InternationalSpaceStation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/images/InternationalSpaceStation.png -------------------------------------------------------------------------------- /static/images/Llama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/images/Llama.png -------------------------------------------------------------------------------- /static/images/Observation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/images/Observation.png -------------------------------------------------------------------------------- /static/images/Simplerspace.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/images/Simplerspace.webp -------------------------------------------------------------------------------- /static/images/Sys_readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/images/Sys_readme.png -------------------------------------------------------------------------------- /static/images/Telescope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/images/Telescope.png -------------------------------------------------------------------------------- /static/images/TriForce.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/images/TriForce.gif -------------------------------------------------------------------------------- /static/images/cosmonautllama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/images/cosmonautllama.png -------------------------------------------------------------------------------- /static/images/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/images/demo.png -------------------------------------------------------------------------------- /static/images/introduction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/images/introduction.png -------------------------------------------------------------------------------- /static/images/iss.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/images/iss.webp -------------------------------------------------------------------------------- /static/images/lim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/images/lim.png -------------------------------------------------------------------------------- /static/images/locality.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/images/locality.png -------------------------------------------------------------------------------- /static/images/methodsillustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/images/methodsillustration.png -------------------------------------------------------------------------------- /static/images/probwebsite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/images/probwebsite.png -------------------------------------------------------------------------------- /static/images/retrieval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/images/retrieval.png -------------------------------------------------------------------------------- /static/images/rockets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/images/rockets.png -------------------------------------------------------------------------------- /static/images/rockets.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/images/rockets.webp -------------------------------------------------------------------------------- /static/images/simpleiss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/images/simpleiss.png -------------------------------------------------------------------------------- /static/images/sirius-symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/images/sirius-symbol.svg -------------------------------------------------------------------------------- /static/images/siriuslogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/images/siriuslogo.png -------------------------------------------------------------------------------- /static/images/siriuslogo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/images/siriuslogo.webp -------------------------------------------------------------------------------- /static/images/siriusmoti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/images/siriusmoti.png -------------------------------------------------------------------------------- /static/images/sparsity_top4096.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/images/sparsity_top4096.png -------------------------------------------------------------------------------- /static/images/sys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/images/sys.png -------------------------------------------------------------------------------- /static/images/triforce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/images/triforce.png -------------------------------------------------------------------------------- /static/images/twomooone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/images/twomooone.png -------------------------------------------------------------------------------- /static/images/twostars.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/images/twostars.webp -------------------------------------------------------------------------------- /static/images/twostarts.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/images/twostarts.webp -------------------------------------------------------------------------------- /static/js/bulma-carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/js/bulma-carousel.js -------------------------------------------------------------------------------- /static/js/bulma-carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/js/bulma-carousel.min.js -------------------------------------------------------------------------------- /static/js/bulma-slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/js/bulma-slider.js -------------------------------------------------------------------------------- /static/js/bulma-slider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/js/bulma-slider.min.js -------------------------------------------------------------------------------- /static/js/fontawesome.all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/js/fontawesome.all.min.js -------------------------------------------------------------------------------- /static/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/js/index.js -------------------------------------------------------------------------------- /static/pdfs/sample.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/pdfs/sample.pdf -------------------------------------------------------------------------------- /static/videos/TriForce.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infini-AI-Lab/Sirius/HEAD/static/videos/TriForce.mp4 --------------------------------------------------------------------------------