CoolFace
30 shown

datasets

Training and evaluation data, with the modality, task and licence stated up front. Listed live from the Hugging Face Hub.

Clear all
01google /code_x_glue_ct_code_to_text Dataset Card for "code_x_glue_ct_code_to_text" Dataset Summary CodeXGLUE code-to-text dataset, available at https://github.com/microsoft/CodeXGLUE/tree/main/Code-Text/code-to-text The dataset we use comes from CodeSearchNet and we filter the dataset as the following: Remove examples that codes cannot be parsed into an abstract syntax tree. Remove examples that #tokens of documents is < 3 or >256 Remove examples that documents contain special tokens (e.g. <img ...> or… See the full description on the dataset page: https://huggingface.co/datasets/google/code_x_glue_ct_code_to_text.texttranslation1M<n<10M79 likes4.6k downloads3y agoHugging Face02google /code_x_glue_cc_defect_detection Dataset Card for "code_x_glue_cc_defect_detection" Dataset Summary CodeXGLUE Defect-detection dataset, available at https://github.com/microsoft/CodeXGLUE/tree/main/Code-Code/Defect-detection Given a source code, the task is to identify whether it is an insecure code that may attack software systems, such as resource leaks, use-after-free vulnerabilities and DoS attack. We treat the task as binary classification (0/1), where 1 stands for insecure code and 0 for secure… See the full description on the dataset page: https://huggingface.co/datasets/google/code_x_glue_cc_defect_detection.texttext-classification10K<n<100K29 likes2k downloads3y agoHugging Face03google /code_x_glue_cc_code_completion_token Dataset Card for "code_x_glue_cc_code_completion_token" Dataset Summary CodeXGLUE CodeCompletion-token dataset, available at https://github.com/microsoft/CodeXGLUE/tree/main/Code-Code/CodeCompletion-token Predict next code token given context of previous tokens. Models are evaluated by token level accuracy. Code completion is a one of the most widely used features in software development through IDEs. An effective code completion tool could improve software… See the full description on the dataset page: https://huggingface.co/datasets/google/code_x_glue_cc_code_completion_token.texttext-generation100K<n<1M10 likes1k downloads3y agoHugging Face04google /code_x_glue_cc_code_refinement Dataset Card for "code_x_glue_cc_code_refinement" Dataset Summary CodeXGLUE code-refinement dataset, available at https://github.com/microsoft/CodeXGLUE/tree/main/Code-Code/code-refinement We use the dataset released by this paper(https://arxiv.org/pdf/1812.08693.pdf). The source side is a Java function with bugs and the target side is the refined one. All the function and variable names are normalized. Their dataset contains two subsets ( i.e.small and medium) based on… See the full description on the dataset page: https://huggingface.co/datasets/google/code_x_glue_cc_code_refinement.text100K<n<1M8 likes1k downloads3y agoHugging Face05google /code_x_glue_cc_clone_detection_big_clone_bench Dataset Card for "code_x_glue_cc_clone_detection_big_clone_bench" Dataset Summary CodeXGLUE Clone-detection-BigCloneBench dataset, available at https://github.com/microsoft/CodeXGLUE/tree/main/Code-Code/Clone-detection-BigCloneBench Given two codes as the input, the task is to do binary classification (0/1), where 1 stands for semantic equivalence and 0 for others. Models are evaluated by F1 score. The dataset we use is BigCloneBench and filtered following the paper… See the full description on the dataset page: https://huggingface.co/datasets/google/code_x_glue_cc_clone_detection_big_clone_bench.tabulartext-classification1M<n<10M22 likes946 downloads3y agoHugging Face06google /code_x_glue_tc_text_to_code Dataset Card for "code_x_glue_tc_text_to_code" Dataset Summary CodeXGLUE text-to-code dataset, available at https://github.com/microsoft/CodeXGLUE/tree/main/Text-Code/text-to-code The dataset we use is crawled and filtered from Microsoft Documentation, whose document located at https://github.com/MicrosoftDocs/. Supported Tasks and Leaderboards machine-translation: The dataset can be used to train a model for generating Java code from an English natural… See the full description on the dataset page: https://huggingface.co/datasets/google/code_x_glue_tc_text_to_code.texttranslation100K<n<1M30 likes721 downloads3y agoHugging Face07google /code_x_glue_cc_code_to_code_trans Dataset Card for "code_x_glue_cc_code_to_code_trans" Dataset Summary CodeXGLUE code-to-code-trans dataset, available at https://github.com/microsoft/CodeXGLUE/tree/main/Code-Code/code-to-code-trans The dataset is collected from several public repos, including Lucene(http://lucene.apache.org/), POI(http://poi.apache.org/), JGit(https://github.com/eclipse/jgit/) and Antlr(https://github.com/antlr/). We collect both the Java and C# versions of the codes and find the parallel… See the full description on the dataset page: https://huggingface.co/datasets/google/code_x_glue_cc_code_to_code_trans.texttranslation10K<n<100K17 likes708 downloads3y agoHugging Face08google /code_x_glue_tt_text_to_text Dataset Card for "code_x_glue_tt_text_to_text" Dataset Summary CodeXGLUE text-to-text dataset, available at https://github.com/microsoft/CodeXGLUE/tree/main/Text-Text/text-to-text The dataset we use is crawled and filtered from Microsoft Documentation, whose document located at https://github.com/MicrosoftDocs/. Supported Tasks and Leaderboards machine-translation: The dataset can be used to train a model for translating Technical documentation between… See the full description on the dataset page: https://huggingface.co/datasets/google/code_x_glue_tt_text_to_text.texttranslation100K<n<1M2 likes519 downloads3y agoHugging Face09google /code_x_glue_cc_clone_detection_poj104 Dataset Card for "code_x_glue_cc_clone_detection_poj_104" Dataset Summary CodeXGLUE Clone-detection-POJ-104 dataset, available at https://github.com/microsoft/CodeXGLUE/tree/main/Code-Code/Clone-detection-POJ-104 Given a code and a collection of candidates as the input, the task is to return Top K codes with the same semantic. Models are evaluated by MAP score. We use POJ-104 dataset on this task. Supported Tasks and Leaderboards document-retrieval: The… See the full description on the dataset page: https://huggingface.co/datasets/google/code_x_glue_cc_clone_detection_poj104.texttext-retrieval10K<n<100K9 likes477 downloads3y agoHugging Face10google /code_x_glue_cc_code_completion_line Dataset Card for "code_x_glue_cc_code_completion_line" Dataset Summary CodeXGLUE CodeCompletion-line dataset, available at https://github.com/microsoft/CodeXGLUE/tree/main/Code-Code/CodeCompletion-line Complete the unfinished line given previous context. Models are evaluated by exact match and edit similarity. We propose line completion task to test model's ability to autocomplete a line. Majority code completion systems behave well in token level completion, but fail in… See the full description on the dataset page: https://huggingface.co/datasets/google/code_x_glue_cc_code_completion_line.texttext-generation10K<n<100K6 likes411 downloads3y agoHugging Face11google /code_x_glue_tc_nl_code_search_adv Dataset Card for "code_x_glue_tc_nl_code_search_adv" Dataset Summary CodeXGLUE NL-code-search-Adv dataset, available at https://github.com/microsoft/CodeXGLUE/tree/main/Text-Code/NL-code-search-Adv The dataset we use comes from CodeSearchNet and we filter the dataset as the following: Remove examples that codes cannot be parsed into an abstract syntax tree. Remove examples that #tokens of documents is < 3 or >256 Remove examples that documents contain special tokens… See the full description on the dataset page: https://huggingface.co/datasets/google/code_x_glue_tc_nl_code_search_adv.tabulartext-retrieval100K<n<1M11 likes387 downloads3y agoHugging Face12google /code_x_glue_cc_cloze_testing_all Dataset Card for "code_x_glue_cc_cloze_testing_all" Dataset Summary CodeXGLUE ClozeTesting-all dataset, available at https://github.com/microsoft/CodeXGLUE/tree/main/Code-Code/ClozeTesting-all Cloze tests are widely adopted in Natural Languages Processing to evaluate the performance of the trained language models. The task is aimed to predict the answers for the blank with the context of the blank, which can be formulated as a multi-choice classification problem. Here we… See the full description on the dataset page: https://huggingface.co/datasets/google/code_x_glue_cc_cloze_testing_all.texttext-generation100K<n<1M6 likes308 downloads3y agoHugging Face13google /code_x_glue_cc_cloze_testing_maxmin Dataset Card for "code_x_glue_cc_cloze_testing_maxmin" Dataset Summary CodeXGLUE ClozeTesting-maxmin dataset, available at https://github.com/microsoft/CodeXGLUE/tree/main/Code-Code/ClozeTesting-maxmin Cloze tests are widely adopted in Natural Languages Processing to evaluate the performance of the trained language models. The task is aimed to predict the answers for the blank with the context of the blank, which can be formulated as a multi-choice classification problem.… See the full description on the dataset page: https://huggingface.co/datasets/google/code_x_glue_cc_cloze_testing_maxmin.texttext-generation1K<n<10K3 likes247 downloads3y agoHugging Face14CM /codexglue_code2text_python Dataset Card for "codexglue_code2text_python" More Information needed text100K<n<1M8 likes237 downloads3y agoHugging Face15CM /codexglue_code2text_php Dataset Card for "codexglue_code2text_php" More Information needed text100K<n<1M2 likes221 downloads3y agoHugging Face160n1xus /codexglueCodeXGLUE is a benchmark dataset to foster machine learning research for program understanding and generation. CodeXGLUE includes a collection of 10 tasks across 14 datasets and a platform for model evaluation and comparison.text100K<n<1M5 likes212 downloads5y agoHugging Face17AhmedSSoliman /CodeXGLUE-CONCODE Concode dataset A large dataset with over 100,000 examples consisting of Java classes from online code repositories, and develop a new encoder-decoder architecture that models the interaction between the method documentation and the class environment. Concode dataset is a widely used code generation dataset from Iyer's EMNLP 2018 paper Mapping Language to Code in Programmatic Context. Data statistics of concode dataset are shown in the below table: #Examples Train 100… See the full description on the dataset page: https://huggingface.co/datasets/AhmedSSoliman/CodeXGLUE-CONCODE.text100K<n<1M5 likes201 downloads4y agoHugging Face18CM /codexglue_code2text_java Dataset Card for "codexglue_code2text_java" More Information needed text100K<n<1M4 likes201 downloads3y agoHugging Face19CM /codexglue_code2text_go Dataset Card for "codexglue_code2text_go" More Information needed text100K<n<1M1 likes156 downloads3y agoHugging Face20CM /codexglue_code2text_ruby Dataset Card for "codexglue_code2text_ruby" More Information needed text10K<n<100K1 likes127 downloads3y agoHugging Face21CM /codexglue_code2text_javascript Dataset Card for "codexglue_code2text_javascript" More Information needed text10K<n<100K12 likes124 downloads3y agoHugging Face22microsoft /codexglue_method_generation13 likes117 downloads5y agoHugging Face23claudios /code_x_glue_devigntext10K<n<100K0 likes73 downloads3y agoHugging Face24CM /codexglue_codetrans Dataset Card for "codexglue_codetrans" More Information needed text10K<n<100K2 likes70 downloads3y agoHugging Face25ayeshgk /code_x_glue_cc_code_refinement_annotatedtext10K<n<100K1 likes55 downloads3y agoHugging Face26AhmedSSoliman /CodeXGLUE-CodeTanstext10K<n<100K0 likes50 downloads4y agoHugging Face27yyjb5 /code_x_glue_cc_code_completion_line_pythontext10K<n<100K0 likes44 downloads2y agoHugging Face28knguyennguyen /code_x_glue_ct_code_to_text_java_pythontext100K<n<1M0 likes37 downloads2y agoHugging Face29emirhanboge /codex_glue_llama1btext100K<n<1M0 likes31 downloads2y agoHugging Face30FredericFan /CodeXGLUE-CONCODE Dataset Card for "concode-preprocessed" More Information needed text100K<n<1M0 likes27 downloads1y agoHugging Face

Listings come live from the Hugging Face Hub API. CoolFace does not host these files.