license stringlengths 2 30 | tags stringlengths 2 513 | is_nc bool 1
class | readme_section stringlengths 201 597k | hash stringlengths 32 32 |
|---|---|---|---|---|
mit | [] | false | Training data This model was distiled with 522MB of indonesian Wikipedia and 1GB of [indonesian newspapers](https://huggingface.co/datasets/id_newspapers_2018). The texts are lowercased and tokenized using WordPiece and a vocabulary size of 32,000. The inputs of the model are then of the form: ```[CLS] Sentence A [... | 139d9a9f410fe0fcab87e1213e93142a |
apache-2.0 | ['generated_from_trainer'] | false | t5-base-devices-sum-ver1 This model is a fine-tuned version of [t5-base](https://huggingface.co/t5-base) on an unknown dataset. It achieves the following results on the evaluation set: - Loss: 0.0935 - Rouge1: 97.2294 - Rouge2: 80.1323 - Rougel: 97.245 - Rougelsum: 97.2763 - Gen Len: 4.9507 | 7997838a9cc7c0b4fd948be88d5c615a |
apache-2.0 | ['generated_from_trainer'] | false | Training results | Training Loss | Epoch | Step | Validation Loss | Rouge1 | Rouge2 | Rougel | Rougelsum | Gen Len | |:-------------:|:-----:|:----:|:---------------:|:-------:|:-------:|:-------:|:---------:|:-------:| | No log | 1.0 | 186 | 0.2461 | 91.9436 | 71.232 | 91.9417 | 91.9585 | 4.... | 8e9442b2f99dbdf9e8b4aa5d6d44d326 |
apache-2.0 | ['clip', 'zh', 'image-text', 'feature-extraction'] | false | 模型分类 Model Taxonomy | 需求 Demand | 任务 Task | 系列 Series | 模型 Model | 参数 Parameter | 额外 Extra | | :----: | :----: | :----: | :----: | :----: | :----: | | 特殊 Special | 多模态 Multimodal | 太乙 Taiyi | CLIP (RoBERTa) | 326M | 使用了ViT-H作为视觉提取器-中文 ViT-H-Chinese | | 350e80bd01d29b0102f1120557af1818 |
apache-2.0 | ['clip', 'zh', 'image-text', 'feature-extraction'] | false | 模型信息 Model Information 我们遵循CLIP的实验设置,以获得强大的视觉-语言表征。在训练中文版的CLIP时,我们使用[chinese-roberta-wwm-large](https://huggingface.co/hfl/chinese-roberta-wwm-ext-large)作为语言的编码器,并将[open_clip](https://github.com/mlfoundations/open_clip)中的**ViT-H-14**应用于视觉的编码器。为了快速且稳定地进行预训练,我们冻结了视觉编码器并且只微调语言编码器。此外,我们将[Noah-Wukong](https://wukong-datas... | 5afb009b70476f750db3135b9ecb570a |
apache-2.0 | ['clip', 'zh', 'image-text', 'feature-extraction'] | false | 下游效果 Performance **Zero-Shot Classification** | model | dataset | Top1 | Top5 | | ---- | ---- | ---- | ---- | | Taiyi-CLIP-RoBERTa-326M-ViT-H-Chinese | ImageNet1k-CN | 54.35% | 80.64% | **Zero-Shot Text-to-Image Retrieval** | model | dataset | Top1 | Top5 | Top10 | | ---- | ---- | ---- | ---- | ----... | 19c6baaeafdc9abee45d81947cd7861b |
apache-2.0 | ['clip', 'zh', 'image-text', 'feature-extraction'] | false | 使用 Usage ```python3 from PIL import Image import requests import open_clip import torch from transformers import BertModel, BertConfig, BertTokenizer from transformers import CLIPProcessor, CLIPModel import numpy as np query_texts = ["一只猫", "一只狗",'两只猫', '两只老虎','一只老虎'] | 041d3a0b4911c2cd500a220caa9c98c4 |
apache-2.0 | ['clip', 'zh', 'image-text', 'feature-extraction'] | false | 加载Taiyi 中文 text encoder text_tokenizer = BertTokenizer.from_pretrained("IDEA-CCNL/Taiyi-CLIP-RoBERTa-326M-ViT-H-Chinese") text_encoder = BertModel.from_pretrained("IDEA-CCNL/Taiyi-CLIP-RoBERTa-326M-ViT-H-Chinese").eval() url = "http://images.cocodataset.org/val2017/000000039769.jpg" | 4271fe6f8ede017a48d03b91de1996e8 |
apache-2.0 | ['clip', 'zh', 'image-text', 'feature-extraction'] | false | 加载openclip的image encoder clip_model, _, processor = open_clip.create_model_and_transforms('ViT-H-14', pretrained='laion2b_s32b_b79k') clip_model = clip_model.eval() text = text_tokenizer(query_texts, return_tensors='pt', padding=True)['input_ids'] image = processor(Image.open(requests.get(url, stream=True).raw)).uns... | 042fc9cbfdb11d1762e377b7ea4b0564 |
apache-2.0 | ['clip', 'zh', 'image-text', 'feature-extraction'] | false | 计算余弦相似度 logit_scale是尺度系数 logit_scale = clip_model.logit_scale.exp() logits_per_image = logit_scale * image_features @ text_features.t() logits_per_text = logits_per_image.t() probs = logits_per_image.softmax(dim=-1).cpu().numpy() print(np.around(probs, 3)) ``` | 14e17e5406c252dda3e5e4848db925af |
mit | ['rudalle', 'pokemon', 'image-generation'] | false | ai-generated-pokemon-rudalle  A finetuned [ruDALL-E](https://github.com/sberbank-ai/ru-dalle) on Pokémon using the finetuning example Colab Notebook [linked in that repo](https://colab.research.google.com/drive/1Tb7J4PvvegWOybPfUubl5O7m5I24CBg5?usp=sharing). This model was used to create Pokémon that... | 8f613378ba14159427fcb4691f03c107 |
other | ['text-generation', 'opt'] | false | How to use You can use this model directly with a pipeline for text generation. ```python >>> from transformers import pipeline >>> generator = pipeline('text-generation', model="facebook/opt-iml-1.3b") >>> generator("What is the capital of USA?") ``` | bc9dae0b2c3cb343616b2a3d415b1082 |
apache-2.0 | ['generated_from_trainer'] | false | distilbert-base-uncased-finetuned-squad This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the squad dataset. It achieves the following results on the evaluation set: - Loss: 1.1572 | 130f5cf5204a211ec01d894ac373577d |
apache-2.0 | ['generated_from_trainer'] | false | Training hyperparameters The following hyperparameters were used during training: - learning_rate: 3e-05 - train_batch_size: 32 - eval_batch_size: 128 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 3 - mixed_precision_training: Native AMP | 1db8f35d7bc72f16a478f2c458179b9c |
apache-2.0 | ['generated_from_trainer'] | false | Training results | Training Loss | Epoch | Step | Validation Loss | |:-------------:|:-----:|:----:|:---------------:| | 1.2337 | 1.0 | 2767 | 1.1525 | | 0.9515 | 2.0 | 5534 | 1.1206 | | 0.7327 | 3.0 | 8301 | 1.1572 | | c10b45c3a328cb472e380ce8f64e1082 |
apache-2.0 | ['longformer', 'clinical', 'biomedical'] | false | <span style="font-size:larger;">**KEPTlongfomer**</span> is a medical knowledge enhanced version of Longformer that was further pre-trained using [contrastive learning](https://arxiv.org/pdf/2210.03304.pdf). The model achieves SOTA performance on auto ICD coding on MIMIC-III as of 11/12/2022. A sister model for bette... | d718b4ebc238b713c5119fe1439e42fd |
apache-2.0 | ['longformer', 'clinical', 'biomedical'] | false | Pre-training We initialized this model from [clinical longformer](https://huggingface.co/yikuan8/Clinical-Longformer). And then pretrained with Hierarchical Self-Alignment Pretrain (HSAP) using Knowledge Graph UMLS. This includes (a) Hierarchy, (b) Synonym, (c) Abbreviation. For more info, see section 3.3 in [paper](... | 5b6abdaa25fdebeec632b332bb5fcaab |
apache-2.0 | ['longformer', 'clinical', 'biomedical'] | false | Usage See our [github](https://github.com/whaleloops/KEPT/tree/rerank300) for how to use this with prompts on auto ICD coding. With the following result: | Metric | Score | | ------------- | ------------- | |rec_micro| =0.5729403619819988| |rec_macro| =0.11342156911120573| |rec_at_8| =0.4094837705486378| |rec_at_75|... | 8b981e76831cb8e37e53e6987d403ced |
mit | ['generated_from_trainer'] | false | finetuning-sentiment-model-tweet-gpt2 This model is a fine-tuned version of [gpt2](https://huggingface.co/gpt2) on an unknown dataset. It achieves the following results on the evaluation set: - Loss: 2.3646 - Accuracy: 0.6908 - F1: 0.6908 | ec76ce998debe5e741850ad60c31b889 |
mit | ['generated_from_trainer'] | false | Training hyperparameters The following hyperparameters were used during training: - learning_rate: 2e-05 - train_batch_size: 1 - eval_batch_size: 1 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 6 | 13b75875cabda975ba3d8b9839f9a4af |
apache-2.0 | ['generated_from_keras_callback'] | false | lewtun/distilgpt2-finetuned-shakespeare This model is a fine-tuned version of [distilgpt2](https://huggingface.co/distilgpt2) on an unknown dataset. It achieves the following results on the evaluation set: - Train Loss: 2.9411 - Validation Loss: 3.5767 - Epoch: 29 | f71ada8a6f1c311e301dae868a51ff6b |
apache-2.0 | ['generated_from_keras_callback'] | false | Training results | Train Loss | Validation Loss | Epoch | |:----------:|:---------------:|:-----:| | 4.2112 | 3.8253 | 0 | | 3.8997 | 3.6898 | 1 | | 3.7783 | 3.6304 | 2 | | 3.7046 | 3.5846 | 3 | | 3.6477 | 3.5667 | 4 | | 3.6001 |... | b00e449b797c6fac8a5d05e442788f6a |
cc-by-4.0 | ['named-entity-recognition', 'Transformer', 'pytorch', 'bert'] | false | 🤗 bert-restore-punctuation-ptbr * 🪄 [W&B Dashboard](https://wandb.ai/dominguesm/RestorePunctuationPTBR) * ⛭ [GitHub](https://github.com/DominguesM/respunct) This is a [bert-base-portuguese-cased](https://huggingface.co/neuralmind/bert-base-portuguese-cased) model finetuned for punctuation restoration on [WikiLin... | 3063550767832305584ef905e98cca51 |
cc-by-4.0 | ['named-entity-recognition', 'Transformer', 'pytorch', 'bert'] | false | 🤷 Usage 🇧🇷 easy-to-use package to restore punctuation of portuguese texts. **Below is a quick way to use the template.** 1. First, install the package. ``` pip install respunct ``` 2. Sample python code. ``` python from respunct import RestorePuncts model = RestorePuncts() model.restore_puncts(""" henrique ... | fb7ae4b918407fc569591400caa56cd8 |
cc-by-4.0 | ['named-entity-recognition', 'Transformer', 'pytorch', 'bert'] | false | 🎯 Accuracy | label | precision | recall | f1-score | support| | ------------------------- | -------------|-------- | ----------|--------| | **Upper - OU** | 0.89 | 0.91 | 0.90 | 69376 | **None - OO** | 0.99 | 0.98 | 0.98 | 857659 | **Fu... | 9c0504ff6cbd3a3a14a4ae270d764caf |
apache-2.0 | ['generated_from_trainer'] | false | wav2vec2-1 This model is a fine-tuned version of [facebook/wav2vec2-base](https://huggingface.co/facebook/wav2vec2-base) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.5980 - Wer: 0.4949 | 4f9f52b2e227edb309151b69d75369e9 |
apache-2.0 | ['generated_from_trainer'] | false | Training results | Training Loss | Epoch | Step | Validation Loss | Wer | |:-------------:|:-----:|:----:|:---------------:|:------:| | 4.2691 | 1.37 | 200 | 2.9045 | 1.0 | | 1.6356 | 2.74 | 400 | 0.9277 | 0.8678 | | 0.8062 | 4.11 | 600 | 0.8200 | 0.7776 | |... | b40ccb3dc48f7efb0eb723aa85098fec |
cc-by-4.0 | ['espnet', 'audio', 'text-to-speech'] | false | `kan-bayashi/jsut_conformer_fastspeech2_transformer_prosody` ♻️ Imported from https://zenodo.org/record/5499066/ This model was trained by kan-bayashi using jsut/tts1 recipe in [espnet](https://github.com/espnet/espnet/). | e8dfbcde6054b47f9bcd62ec5cb6d1f1 |
cc-by-4.0 | ['espnet', 'audio', 'text-to-speech'] | false | `kan-bayashi/vctk_xvector_conformer_fastspeech2` ♻️ Imported from https://zenodo.org/record/4394602/ This model was trained by kan-bayashi using vctk/tts1 recipe in [espnet](https://github.com/espnet/espnet/). | cdbdbd981795a64a3dc7291c33d80e92 |
apache-2.0 | [] | false | ByT5 - large ByT5 is a tokenizer-free version of [Google's T5](https://ai.googleblog.com/2020/02/exploring-transfer-learning-with-t5.html) and generally follows the architecture of [MT5](https://huggingface.co/google/mt5-large). ByT5 was only pre-trained on [mC4](https://www.tensorflow.org/datasets/catalog/c4 | ae15bf5cc7bf8cc1881353d615b012be |
apache-2.0 | [] | false | c4multilingual) excluding any supervised training with an average span-mask of 20 UTF-8 characters. Therefore, this model has to be fine-tuned before it is useable on a downstream task. ByT5 works especially well on noisy text data,*e.g.*, `google/byt5-large` significantly outperforms [mt5-large](https://huggingface.c... | 7c73240a8f6fc324557977703835ce8a |
apache-2.0 | [] | false | Example Inference ByT5 works on raw UTF-8 bytes and can be used without a tokenizer: ```python from transformers import T5ForConditionalGeneration import torch model = T5ForConditionalGeneration.from_pretrained('google/byt5-large') input_ids = torch.tensor([list("Life is like a box of chocolates.".encode("utf-8"))... | d0fe6e48f9e18d12a11a09eb917383f1 |
apache-2.0 | [] | false | forward pass ``` For batched inference & training it is however recommended using a tokenizer class for padding: ```python from transformers import T5ForConditionalGeneration, AutoTokenizer model = T5ForConditionalGeneration.from_pretrained('google/byt5-large') tokenizer = AutoTokenizer.from_pretrained('google/byt5... | 3fcf14458e7bf4db6d3705f8327ac95b |
apache-2.0 | ['generated_from_trainer'] | false | Model description This model is a fine-tuned version of [EleutherAI/gpt-neo-2.7B](https://huggingface.co/EleutherAI/gpt-neo-2.7B) on the Lila-IID-train/dev set from the [Lila dataset](https://github.com/allenai/Lila). | 9efa78100b50e033313842d4468f9765 |
apache-2.0 | ['generated_from_trainer'] | false | Intended uses & limitations If you use this model, please cite our work. ``` @INPROCEEDINGS{Mishra2022Lila, author = { Swaroop Mishra and Matthew Finlayson and Pan Lu and Leonard Tang and Sean Welleck and Chitta Baral and Tanmay Rajpurohit and Oyvind Tafjord ... | cb6b6cb60ef62d4a4e561bfab0576c8e |
apache-2.0 | ['generated_from_trainer'] | false | Training hyperparameters The following hyperparameters were used during training: - learning_rate: 5e-05 - train_batch_size: 4 - eval_batch_size: 4 - seed: 42 - distributed_type: multi-GPU - num_devices: 2 - total_train_batch_size: 8 - total_eval_batch_size: 8 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-0... | 85bf42f463cffe3ccd5792d2c42c4e4b |
apache-2.0 | ['generated_from_trainer'] | false | Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:-----:|:---------------:|:--------:| | No log | 0.06 | 100 | 0.7930 | 0.8214 | | No log | 0.11 | 200 | 0.7544 | 0.8290 | | No log | 0.17 | 300 | 0.7358 ... | 910cba5aa10f8ada63d0b06cb6d39e39 |
creativeml-openrail-m | ['text-to-image', 'stable-diffusion', 'dreambooth', 'anime'] | false | A fined-tuned stable diffusion model for generating Padorus. **Token:** `PadoruMeme` (use this in your prompt to utilise the style)<br> **Class Phrase:** `1girl` (also use this in the prompt) [Model Download](https://huggingface.co/joujiboi/Padoru-Diffusion/resolve/main/2022-12-12T19-38-27_Padoru_1_training_images_2... | da8fc8c48289aed68a92a2721c8e4097 |
apache-2.0 | ['generated_from_trainer'] | false | tiny-mlm-glue-qqp-target-glue-cola This model is a fine-tuned version of [muhtasham/tiny-mlm-glue-qqp](https://huggingface.co/muhtasham/tiny-mlm-glue-qqp) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.7213 - Matthews Correlation: 0.0938 | 4d2eaf01b5e5fefc1b40d44fe67653a9 |
apache-2.0 | ['generated_from_trainer'] | false | Training results | Training Loss | Epoch | Step | Validation Loss | Matthews Correlation | |:-------------:|:-----:|:----:|:---------------:|:--------------------:| | 0.6096 | 1.87 | 500 | 0.6213 | 0.0 | | 0.6002 | 3.73 | 1000 | 0.6164 | 0.0 | | 0.5... | 77e68fd36b6161b1623c9f347c068f6d |
apache-2.0 | ['whisper-event', 'generated_from_trainer'] | false | Whisper Large-v2 Tamil This model is a fine-tuned version of [openai/whisper-large-v2](https://huggingface.co/openai/whisper-large-v2) on the mozilla-foundation/common_voice_11_0 ta dataset. It achieves the following results on the evaluation set: - Loss: 0.1727 - Wer: 8.4538 | ec6e2f93d0390a34bdf10e320a601aa4 |
apache-2.0 | ['whisper-event', 'generated_from_trainer'] | false | Training hyperparameters The following hyperparameters were used during training: - learning_rate: 1e-05 - train_batch_size: 32 - eval_batch_size: 16 - seed: 42 - distributed_type: multi-GPU - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - lr_scheduler_warmup_steps: 50 - traini... | a02be9e137e01cb6df39f620609effda |
apache-2.0 | ['whisper-event', 'generated_from_trainer'] | false | Training results | Training Loss | Epoch | Step | Validation Loss | Wer | |:-------------:|:-----:|:----:|:---------------:|:------:| | 0.0723 | 1.27 | 1000 | 0.1727 | 8.4538 | | 5342afdad9b7d43518bca344c9706842 |
cc-by-sa-4.0 | ['zero-shot-classification', 'text-classification', 'nli', 'pytorch'] | false | roberta-base-japanese-jsnli This model is a fine-tuned version of [nlp-waseda/roberta-base-japanese](https://huggingface.co/nlp-waseda/roberta-base-japanese) on the [JSNLI](https://nlp.ist.i.kyoto-u.ac.jp/?%E6%97%A5%E6%9C%AC%E8%AA%9ESNLI%28JSNLI%29%E3%83%87%E3%83%BC%E3%82%BF%E3%82%BB%E3%83%83%E3%83%88) dataset. It ac... | 2dd93328d52db43455d13c1c6973b521 |
cc-by-sa-4.0 | ['zero-shot-classification', 'text-classification', 'nli', 'pytorch'] | false | Simple zero-shot classification pipeline ```python from transformers import pipeline from pyknp import Juman juman = Juman() classifier = pipeline("zero-shot-classification", model="Formzu/roberta-base-japanese-jsnli") sequence_to_classify = " ".join([tok.midasi for tok in juman.analysis("いつか世界を見る。").mrph_list()]) ... | 223ec72a2bdc621a8753ebb7606becc0 |
cc-by-sa-4.0 | ['zero-shot-classification', 'text-classification', 'nli', 'pytorch'] | false | NLI use-case ```python from transformers import AutoTokenizer, AutoModelForSequenceClassification import torch from pyknp import Juman juman = Juman() device = torch.device("cuda") if torch.cuda.is_available() else torch.device("cpu") model_name = "Formzu/roberta-base-japanese-jsnli" model = AutoModelForSequenceCla... | 9699296cc8b970fed8d09a25968f4db5 |
cc-by-sa-4.0 | ['zero-shot-classification', 'text-classification', 'nli', 'pytorch'] | false | Training hyperparameters The following hyperparameters were used during training: - learning_rate: 2e-05 - train_batch_size: 32 - eval_batch_size: 32 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 3.0 | b59fbbce42e464557e0bd859b436eb3f |
cc-by-sa-4.0 | ['zero-shot-classification', 'text-classification', 'nli', 'pytorch'] | false | Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:-----:|:---------------:|:--------:| | 0.4067 | 1.0 | 16657 | 0.2224 | 0.9201 | | 0.3397 | 2.0 | 33314 | 0.2152 | 0.9208 | | 0.2775 | 3.0 | 49971 | 0.2039 ... | b8f5663ba4dd702ab1c01eba3ea8270d |
apache-2.0 | ['generated_from_keras_callback'] | false | bert-finetuned-ner This model is a fine-tuned version of [bert-base-cased](https://huggingface.co/bert-base-cased) on an unknown dataset. It achieves the following results on the evaluation set: - Train Loss: 0.0225 - Validation Loss: 0.0519 - Epoch: 2 | afe9de77b9b2c11fe4b023e3f0aa53c1 |
apache-2.0 | ['generated_from_keras_callback'] | false | Training results | Train Loss | Validation Loss | Epoch | |:----------:|:---------------:|:-----:| | 0.0226 | 0.0519 | 0 | | 0.0229 | 0.0519 | 1 | | 0.0225 | 0.0519 | 2 | | 2d75b20e0fc60077ed8d9731739ce061 |
mit | ['PyTorch', 'Transformers', 'text generation'] | false | RuGPT2_Gen_Comments Предварительно обученная модель на русском языке с использованием языковой модели "sberbank-ai/rugpt3small_based_on_gpt2". Содержимое карты этой модели было создано, чтобы дополнить предоставленную информацию и привести конкретные примеры её использования. | 3413c2b7fc954f5c620cbf73323fa887 |
mit | ['PyTorch', 'Transformers', 'text generation'] | false | Описание модели RuGPT2_Gen_Comments — это модель предназначена для демонстрации генерации новостей, предварительно обученная на массиве данных Lenta2 проекта CORUS на русском языке. Входные данные — это последовательности непрерывного текста определенной длины (block_size = 1048). | 9586a712f173793503f0f034b6ad79bd |
mit | ['PyTorch', 'Transformers', 'text generation'] | false | Проимер использования ```python from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Dmitriy007/rugpt2_gen_comments") model = AutoModelForCausalLM.from_pretrained("Dmitriy007/rugpt2_gen_comments") input_text = 'Ученик старшего класса лицея № 21 Иван Сидоров из горо... | 1aa90b8c238fbf997f98aef1b64c48b7 |
cc-by-4.0 | ['generated_from_trainer'] | false | bert-large-uncased-whole-word-masking-squad2-finetuned-islamic-squad This model is a fine-tuned version of [deepset/bert-large-uncased-whole-word-masking-squad2](https://huggingface.co/deepset/bert-large-uncased-whole-word-masking-squad2) on an unknown dataset. It achieves the following results on the evaluation set:... | 64cfec58e29599daa4d7586fd3b9f4d6 |
cc-by-4.0 | ['generated_from_trainer'] | false | Training hyperparameters The following hyperparameters were used during training: - learning_rate: 5e-06 - train_batch_size: 4 - eval_batch_size: 4 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 3.0 | 23974d0ef69d8f147af09c852bdf5fcb |
cc-by-4.0 | ['generated_from_trainer'] | false | Training results | Training Loss | Epoch | Step | Validation Loss | |:-------------:|:-----:|:----:|:---------------:| | No log | 1.3 | 100 | 0.3653 | | No log | 2.6 | 200 | 0.4152 | | 2126a8876e82dba73df1f05ea3a91007 |
cc-by-sa-4.0 | ['korean', 'klue'] | false | Model Details **Model Description:** KLUE BERT base is a pre-trained BERT Model on Korean Language. The developers of KLUE BERT base developed the model in the context of the development of the [Korean Language Understanding Evaluation (KLUE) Benchmark](https://arxiv.org/pdf/2105.09680.pdf). - **Developed by:** See ... | 0eb063f9644b9130e76c132cd17d544d |
cc-by-sa-4.0 | ['korean', 'klue'] | false | How to Get Started With the Model ```python from transformers import AutoModel, AutoTokenizer model = AutoModel.from_pretrained("klue/bert-base") tokenizer = AutoTokenizer.from_pretrained("klue/bert-base") ``` | 91c35d9d442e2acc2bae779d609def2e |
cc-by-sa-4.0 | ['korean', 'klue'] | false | Direct Use The model can be used for tasks including topic classification, semantic textual similarity, natural language inference, named entity recognition, and other tasks outlined in the [KLUE Benchmark](https://github.com/KLUE-benchmark/KLUE). | 08e98d19d27441d00a187e1349af7bfb |
cc-by-sa-4.0 | ['korean', 'klue'] | false | Risks, Limitations and Biases Significant research has explored bias and fairness issues with language models (see, e.g., [Sheng et al. (2021)](https://aclanthology.org/2021.acl-long.330.pdf) and [Bender et al. (2021)](https://dl.acm.org/doi/pdf/10.1145/3442188.3445922)). The model developers discuss several ethical ... | f9191f80cbc53e8df41a57c649aad6c8 |
cc-by-sa-4.0 | ['korean', 'klue'] | false | Training Data The authors use the following pretraining corpora for the model, described in the [associated paper](https://arxiv.org/pdf/2105.09680.pdf): > We gather the following five publicly available Korean corpora from diverse sources to cover a broad set of topics and many different styles. We combine these c... | 5ae34826a453193b4a18da729bf49009 |
cc-by-sa-4.0 | ['korean', 'klue'] | false | Preprocessing The authors describe their preprocessing procedure in the [associated paper](https://arxiv.org/pdf/2105.09680.pdf): > We filter noisy text and non-Korean text using the same methods from Section 2.3 (of the paper). Each document in the corpus is split into sentences using C++ implementation (v1.3.1.) o... | 57a0c55d41567746fbb2fd5c69bd1001 |
cc-by-sa-4.0 | ['korean', 'klue'] | false | Tokenization The authors describe their tokenization procedure in the [associated paper](https://arxiv.org/pdf/2105.09680.pdf): > We design and use a new tokenization method, morpheme-based subword tokenization. When building a vocabulary, we pre-tokenize a raw text into morphemes using a morphological analyzer, and... | d5366a01f6ad69cad4a638fe66c2db41 |
cc-by-sa-4.0 | ['korean', 'klue'] | false | Testing Data, Factors and Metrics The model was evaluated on the [KLUE Benchmark](https://github.com/KLUE-benchmark/KLUE). The tasks and metrics from the KLUE Benchmark that were used to evaluate this model are described briefly below. For more information about the KLUE Benchmark, see the [data card](https://hugging... | ed424551a9376282da7f6bfffacb35eb |
cc-by-sa-4.0 | ['korean', 'klue'] | false | Results | Task | TC | STS | | NLI | NER | | RE | | DP | | MRC | | DST | | | :---: |:---: | :---: | :---: |:---:| :---: | :---: |:---:| :---:| :---: |:---: | :---: | :---:| :---: | :---: | | Metric | F1 ... | 033f40d593ed76bdb81ec69bc746618b |
cc-by-sa-4.0 | ['korean', 'klue'] | false | compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700). We present the hardware type based on the [associated paper](https://arxiv.org/pdf/2105.09680.pdf). - **Hardware Type:** TPU v3-8 - **Hours used:** Unknown - **Cloud Provider:** Unknown - **Compute Region:** Unknown - **Carbon Emitted:** ... | ed4b41396ebad481abcfbd141491d813 |
cc-by-sa-4.0 | ['korean', 'klue'] | false | Citation Information ```bibtex @misc{park2021klue, title={KLUE: Korean Language Understanding Evaluation}, author={Sungjoon Park and Jihyung Moon and Sungdong Kim and Won Ik Cho and Jiyoon Han and Jangwon Park and Chisung Song and Junseong Kim and Yongsook Song and Taehwan Oh and Joohong Lee and Juhyun Oh... | 1988d70d99a2407dfd39f6f9eda00095 |
cc-by-4.0 | [] | false | Readability benchmark (ES): mbert-en-es-sentences-3class This project is part of a series of models from the paper "A Benchmark for Neural Readability Assessment of Texts in Spanish". You can find more details about the project in our [GitHub](https://github.com/lmvasque/readability-es-benchmark). | 347bae272f590c397008ce65e9666176 |
cc-by-4.0 | [] | false | Models Our models were fine-tuned in multiple settings, including readability assessment in 2-class (simple/complex) and 3-class (basic/intermediate/advanced) for sentences and paragraph datasets. You can find more details in our [paper](https://drive.google.com/file/d/1KdwvqrjX8MWYRDGBKeHmiR1NCzDcVizo/view?usp=share... | 6aa5cdba399d534994680f6264885da6 |
cc-by-4.0 | [] | false | classes | |-----------------------------------------------------------------------------------------------------------|----------------|:---------:| | [BERTIN (ES)](https://huggingface.co/lmvasque/readability-es-benchmark-bertin-es-paragraphs-2class) | paragraphs | 2 | | [BERTIN (ES)](https://hugging... | ec7288b09c495908c070d1858db5609c |
apache-2.0 | ['translation'] | false | opus-mt-fr-bcl * source languages: fr * target languages: bcl * OPUS readme: [fr-bcl](https://github.com/Helsinki-NLP/OPUS-MT-train/blob/master/models/fr-bcl/README.md) * dataset: opus * model: transformer-align * pre-processing: normalization + SentencePiece * download original weights: [opus-2020-01-09.zip](http... | e237fe1e3588c4ae714f63ad10027d21 |
mit | ['generated_from_trainer'] | false | esm2_t6_8M_UR50D-pfam-test-wed This model is a fine-tuned version of [facebook/esm2_t6_8M_UR50D](https://huggingface.co/facebook/esm2_t6_8M_UR50D) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.8768 - Accuracy: 0.8360 | 4ecdd1ed9b1e1ce7b68300f1333ed0e1 |
mit | ['generated_from_trainer'] | false | Training hyperparameters The following hyperparameters were used during training: - learning_rate: 0.001 - train_batch_size: 32 - eval_batch_size: 32 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 2 - mixed_precision_training: Native AMP | e47efb5da8289c6d567be741be580e6c |
mit | ['generated_from_trainer'] | false | Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:-----:|:---------------:|:--------:| | 3.0443 | 0.44 | 15000 | 2.7588 | 0.4561 | | 1.7448 | 0.88 | 30000 | 1.5400 | 0.6833 | | 1.2082 | 1.33 | 45000 | 1.0888 ... | 78fb5c8fdf45bb70425781f002a6509b |
apache-2.0 | ['generated_from_trainer'] | false | airlinesentiment This model is a fine-tuned version of [PDatt/outcome](https://huggingface.co/PDatt/outcome) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.2552 - Accuracy: 0.9587 - F1: 0.9586 - Precision: 0.9585 - Recall: 0.9587 | 08b1ef37414d99752146000a5502776e |
apache-2.0 | ['automatic-speech-recognition', 'en'] | false | exp_w2v2t_en_unispeech_s809 Fine-tuned [microsoft/unispeech-large-1500h-cv](https://huggingface.co/microsoft/unispeech-large-1500h-cv) for speech recognition on English using the train split of [Common Voice 7.0](https://huggingface.co/datasets/mozilla-foundation/common_voice_7_0). When using this model, make sure th... | 2bd59f486aea7c4fbdbaae7c5a38b92b |
apache-2.0 | ['translation'] | false | opus-mt-en-swc * source languages: en * target languages: swc * OPUS readme: [en-swc](https://github.com/Helsinki-NLP/OPUS-MT-train/blob/master/models/en-swc/README.md) * dataset: opus * model: transformer-align * pre-processing: normalization + SentencePiece * download original weights: [opus-2020-01-08.zip](http... | 60576340c84bca09894fcc27ae824a66 |
apache-2.0 | ['translation'] | false | opus-mt-en-af * source languages: en * target languages: af * OPUS readme: [en-af](https://github.com/Helsinki-NLP/OPUS-MT-train/blob/master/models/en-af/README.md) * dataset: opus * model: transformer-align * pre-processing: normalization + SentencePiece * download original weights: [opus-2019-12-18.zip](https://... | 8feda13cc50c291795783b47f025a5ff |
unknown | ['stable-diffusion', 'stable-diffusion-diffusers', 'text-to-image'] | false | Asmongold model.ckpt for Stable Diffusion v1-5 Model Card Stable Diffusion is a latent text-to-image diffusion model capable of generating photo-realistic images given any text input. I've trained using Dreambooth 20 images of twitch streamer Asmongold for the purpose of text-to-image illustration generation using St... | 624b073eeff5b3b2b1910e1ba405d8ad |
apache-2.0 | ['mobile', 'vison', 'image-classification'] | false | Model Details <!-- Give an overview of your model, the relevant research paper, who trained it, etc. --> EfficientFormer-L1, developed by [Snap Research](https://github.com/snap-research), is one of three EfficientFormer models. The EfficientFormer models were released as part of an effort to prove that properly d... | 52767897bb94e64b069d817601465be0 |
mit | [] | false | Stable Diffusion Artist Collaboration → Model 2 This is the `<model-2>` concept taught to stable diffusion via textual inversion training. Anyone is free to load this concept into the [stable conceptualizer](https://colab.research.google.com/github/huggingface/notebooks/blob/main/diffusers/stable_conceptualizer_infer... | 52efdafd642704c8a89bfbebe5fbe973 |
cc-by-sa-4.0 | ['japanese', 'token-classification', 'pos', 'dependency-parsing'] | false | Model Description This is a DeBERTa(V2) model pre-trained on 青空文庫 texts for POS-tagging and dependency-parsing, derived from [deberta-base-japanese-aozora](https://huggingface.co/KoichiYasuoka/deberta-base-japanese-aozora). Every short-unit-word is tagged by [UPOS](https://universaldependencies.org/u/pos/) (Universal... | ba79ed0547b1c3e0e5cc6ec2e4c1dbc1 |
cc-by-sa-4.0 | ['japanese', 'token-classification', 'pos', 'dependency-parsing'] | false | How to Use ```py import torch from transformers import AutoTokenizer,AutoModelForTokenClassification tokenizer=AutoTokenizer.from_pretrained("KoichiYasuoka/deberta-base-japanese-upos") model=AutoModelForTokenClassification.from_pretrained("KoichiYasuoka/deberta-base-japanese-upos") s="国境の長いトンネルを抜けると雪国であった。" t=tokeniz... | 7e5d1e550bd8bbf150e12f17ff4a040e |
apache-2.0 | ['generated_from_trainer'] | false | distilbert_add_GLUE_Experiment_rte_192 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the GLUE RTE dataset. It achieves the following results on the evaluation set: - Loss: 0.6920 - Accuracy: 0.5271 | 1dad33ca34cc3efee2f9ebd9ef3e1a84 |
apache-2.0 | ['generated_from_trainer'] | false | Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.6952 | 1.0 | 10 | 0.6929 | 0.5271 | | 0.6935 | 2.0 | 20 | 0.6924 | 0.5271 | | 0.6944 | 3.0 | 30 | 0.6930 | 0.... | 7692bba3f0c3bf2121e5cb07ae5e7d97 |
apache-2.0 | [] | false | Bert Base model HPU configuration This model only contains the `GaudiConfig` file for running the [bert-base-uncased](https://huggingface.co/bert-base-uncased) model on Habana's Gaudi processors (HPU). **This model contains no model weights, only a GaudiConfig.** This enables to specify: - `use_habana_mixed_precisi... | 0c4686a2b185d0bdbd656546f27a1c4d |
apache-2.0 | [] | false | Usage The model is instantiated the same way as in the Transformers library. The only difference is that there are a few new training arguments specific to HPUs. [Here](https://github.com/huggingface/optimum-habana/blob/main/examples/question-answering/run_qa.py) is a question-answering example script to fine-tune a... | 254639d28fd668a3d74b726a4b63e20c |
mit | ['generated_from_keras_callback'] | false | Deep98/Materialism-clustered This model is a fine-tuned version of [nandysoham16/7-clustered_aug](https://huggingface.co/nandysoham16/7-clustered_aug) on an unknown dataset. It achieves the following results on the evaluation set: - Train Loss: 0.0705 - Train End Logits Accuracy: 0.9896 - Train Start Logits Accuracy:... | f68d0d888cac585f5dc20d314b54ba51 |
mit | ['generated_from_keras_callback'] | false | Training results | Train Loss | Train End Logits Accuracy | Train Start Logits Accuracy | Validation Loss | Validation End Logits Accuracy | Validation Start Logits Accuracy | Epoch | |:----------:|:-------------------------:|:---------------------------:|:---------------:|:------------------------------:|:----------... | 8b8305546ca89e44694597a258db5830 |
creativeml-openrail-m | ['text-to-image', 'stable-diffusion'] | false | luoshaliya1 Dreambooth model trained by jiaheillu Sample pictures of this concept:   on an unknown dataset. It achieves the following results on the evaluation set: - Loss: 3.1545 - Accuracy: 0.4936 | 666e537d65b9be21ae2f7c54dae9aade |
mit | ['generated_from_trainer'] | false | Training hyperparameters The following hyperparameters were used during training: - learning_rate: 5e-05 - train_batch_size: 1 - eval_batch_size: 1 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 10.0 | c2c49a1b13996ad190169b233b1cbb65 |
apache-2.0 | ['translation'] | false | spa-tgl * source group: Spanish * target group: Tagalog * OPUS readme: [spa-tgl](https://github.com/Helsinki-NLP/Tatoeba-Challenge/tree/master/models/spa-tgl/README.md) * model: transformer-align * source language(s): spa * target language(s): tgl_Latn * model: transformer-align * pre-processing: normalization +... | 4c51c473a600a44af6f63d850364bab2 |
apache-2.0 | ['translation'] | false | System Info: - hf_name: spa-tgl - source_languages: spa - target_languages: tgl - opus_readme_url: https://github.com/Helsinki-NLP/Tatoeba-Challenge/tree/master/models/spa-tgl/README.md - original_repo: Tatoeba-Challenge - tags: ['translation'] - languages: ['es', 'tl'] - src_constituents: {'spa'} - tgt_const... | c51f34b3fd7c99796d321d4c251eab00 |
apache-2.0 | ['audio', 'automatic-speech-recognition', 'speech', 'xlsr-fine-tuning-week'] | false | wav2vec2-large-xlsr-53-Czech Fine-tuned [facebook/wav2vec2-large-xlsr-53](https://huggingface.co/facebook/wav2vec2-large-xlsr-53) in Czech using the [Common Voice](https://huggingface.co/datasets/common_voice) When using this model, make sure that your speech input is sampled at 16kHz. | 1164acad512d7af079974bae43fd98cb |
apache-2.0 | ['audio', 'automatic-speech-recognition', 'speech', 'xlsr-fine-tuning-week'] | false | Usage The model can be used directly (without a language model) as follows: ```python import torch import torchaudio from datasets import load_dataset from transformers import Wav2Vec2ForCTC, Wav2Vec2Processor test_dataset = load_dataset("common_voice", "cs", split="test[:2%]") processor = Wav2Vec2Processor.fr... | 08e79b85299faeb88f1d82a7e5ef8892 |
apache-2.0 | ['audio', 'automatic-speech-recognition', 'speech', 'xlsr-fine-tuning-week'] | false | Evaluation The model can be evaluated as follows on the Czech test data of Common Voice. ```python import torch import torchaudio from datasets import load_dataset, load_metric from transformers import Wav2Vec2ForCTC, Wav2Vec2Processor import re test_dataset = load_dataset("common_voice", "cs", split="test") ... | cc37707955f6518dd572227d9e94b762 |
apache-2.0 | ['audio', 'automatic-speech-recognition', 'speech', 'xlsr-fine-tuning-week'] | false | We need to read the aduio files as arrays def evaluate(batch): inputs = processor(batch["speech"], sampling_rate=16_000, return_tensors="pt", padding=True) with torch.no_grad(): logits = model(inputs.input_values.to("cuda"), attention_mask=inputs.attention_mask.to("cuda")).logits ... | 9ee7878ec61cfdfd0f252b518ff56e54 |
apache-2.0 | ['generated_from_trainer'] | false | mobilebert_sa_GLUE_Experiment_mrpc This model is a fine-tuned version of [google/mobilebert-uncased](https://huggingface.co/google/mobilebert-uncased) on the GLUE MRPC dataset. It achieves the following results on the evaluation set: - Loss: 0.6145 - Accuracy: 0.6838 - F1: 0.8122 - Combined Score: 0.7480 | 378624d1793bc82197be187704ae98d8 |
apache-2.0 | ['generated_from_trainer'] | false | Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | F1 | Combined Score | |:-------------:|:-----:|:----:|:---------------:|:--------:|:------:|:--------------:| | 0.6377 | 1.0 | 29 | 0.6240 | 0.6838 | 0.8122 | 0.7480 | | 0.6309 | 2.0 | 58 | 0.62... | 87eac51e69e2cba593dabae4e6c4d420 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.