license stringlengths 2 30 | tags stringlengths 2 513 | is_nc bool 1
class | readme_section stringlengths 201 597k | hash stringlengths 32 32 |
|---|---|---|---|---|
mit | ['SlovakBERT'] | false | How to use
You can use this model directly with a pipeline for masked language modeling:
```python
from transformers import pipeline
unmasker = pipeline('fill-mask', model='gerulata/slovakbert')
unmasker("Deti sa <mask> na ihrisku.")
[{'sequence': 'Deti sa hrali na ihrisku.',
'score': 0.6355380415916443,
... | c6e5f75b1c9df83deb3e7a8bd2b46c9c |
mit | ['SlovakBERT'] | false | Training data
The SlovakBERT model was pretrained on these datasets:
- Wikipedia (326MB of text),
- OpenSubtitles (415MB of text),
- Oscar (4.6GB of text),
- Gerulata WebCrawl (12.7GB of text) ,
- Gerulata Monitoring (214 MB of text),
- blbec.online (4.5GB of text)
The text was then processed with the foll... | 65a33157f97136c4e1470d3416873815 |
mit | ['SlovakBERT'] | false | Pretraining
The model was trained in **fairseq** on 4 x Nvidia A100 GPUs for 300K steps with a batch size of 512 and a sequence length of 512. The optimizer used is Adam with a learning rate of 5e-4, \\(\beta_{1} = 0.9\\), \\(\beta_{2} = 0.98\\) and \\(\epsilon = 1e-6\\), a weight decay of 0.01, dropout rate 0.1, lea... | e43afed95598561110d4583f4669d733 |
mit | ['SlovakBERT'] | false | About us
<a href="https://www.gerulata.com/">
<img width="300px" src="https://www.gerulata.com/images/gerulata-logo-blue.png">
</a>
Gerulata uses near real-time monitoring, advanced analytics and machine learning to help create a safer, more productive and enjoyable online environment for everyone.
| f3faaf2975c53a8bd8811665ba061cd0 |
mit | ['SlovakBERT'] | false | BibTeX entry and citation info
If you find our resource or paper is useful, please consider including the following citation in your paper.
- https://arxiv.org/abs/2109.15254
```
@misc{pikuliak2021slovakbert,
title={SlovakBERT: Slovak Masked Language Model},
author={Matúš Pikuliak and Štefan Griva... | 30947812e9099551d00e51d137384d8c |
creativeml-openrail-m | ['stable-diffusion', 'text-to-image'] | false | gLWoman This is my second Stable Diffusion custom model that bring to you a generic woman generated with non-licenced images. The magic word is: gLWoman If you enjoy my work, please consider supporting me: [](https://www.buymeacof... | e52fea54e3e4832a560ea857a6c00523 |
creativeml-openrail-m | ['stable-diffusion', 'text-to-image', 'diffusers', 'game'] | false | BreathOfTheWild Diffusion This model was trained on screenshots from Botw and a few from Hyrule warrior, but because I don't actually play both of them, it was pretty hard to get decent training images. The portraits still contain resemblance of link and zelda, this can sometimes be avoided by prompting "portrait of",... | d522fb21f7cbeeb14a9b908adbc2a5d8 |
creativeml-openrail-m | ['stable-diffusion', 'text-to-image', 'diffusers', 'game'] | false | Gradio We support a [Gradio](https://github.com/gradio-app/gradio) Web UI to run BreathOfTheWild_Diffusion: [ on the MOZILLA-FOUNDATION/COMMON_VOICE_8_0 - ID dataset. It achieves the following results on the evaluation set: - Loss: 0.3975 - Wer: 0.2633 | 19a5a6b343bce1806aba6dfe932e9bf4 |
apache-2.0 | ['automatic-speech-recognition', 'mozilla-foundation/common_voice_8_0', 'generated_from_trainer', 'robust-speech-event'] | false | Training hyperparameters The following hyperparameters were used during training: - learning_rate: 0.0003 - train_batch_size: 32 - eval_batch_size: 8 - seed: 42 - gradient_accumulation_steps: 2 - total_train_batch_size: 64 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - lr_sch... | 95824b7be5e8b2ed8bf94d7058aead15 |
apache-2.0 | ['automatic-speech-recognition', 'mozilla-foundation/common_voice_8_0', 'generated_from_trainer', 'robust-speech-event'] | false | Training results | Training Loss | Epoch | Step | Validation Loss | Wer | |:-------------:|:-----:|:----:|:---------------:|:------:| | No log | 0.78 | 100 | 4.5645 | 1.0 | | No log | 1.55 | 200 | 2.9016 | 1.0 | | No log | 2.33 | 300 | 2.2666 | 1.0982 | |... | 76d06985e681c5f8947881bbb1d8af7c |
apache-2.0 | ['image-classification', 'timm'] | false | Model card for convnext_small.in12k A ConvNeXt image classification model. Trained in `timm` on ImageNet-12k (a 11821 class subset of full ImageNet-22k) by Ross Wightman. ImageNet-12k training done on TPUs thanks to support of the [TRC](https://sites.research.google/trc/about/) program. | b4d620375836c82f0d2dcc7cda34703b |
apache-2.0 | ['image-classification', 'timm'] | false | Model Details - **Model Type:** Image classification / feature backbone - **Model Stats:** - Params (M): 58.5 - GMACs: 8.7 - Activations (M): 21.6 - Image size: 224 x 224 - **Papers:** - A ConvNet for the 2020s: https://arxiv.org/abs/2201.03545 - **Original:** https://github.com/rwightman/pytorch-image-model... | 8a446424aa84b7341eff6ab941ba668d |
apache-2.0 | ['image-classification', 'timm'] | false | Image Classification ```python from urllib.request import urlopen from PIL import Image import timm img = Image.open( urlopen('https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/beignets-task-guide.png')) model = timm.create_model('convnext_small.in12k', pretrained=True) model = model.... | e505560fd9063012e0f117ced292a000 |
apache-2.0 | ['image-classification', 'timm'] | false | Feature Map Extraction ```python from urllib.request import urlopen from PIL import Image import timm img = Image.open( urlopen('https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/beignets-task-guide.png')) model = timm.create_model( 'convnext_small.in12k', pretrained=True, ... | 97b4caa3319bb24f1e6b7b1b25507e23 |
apache-2.0 | ['image-classification', 'timm'] | false | Image Embeddings ```python from urllib.request import urlopen from PIL import Image import timm img = Image.open( urlopen('https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/beignets-task-guide.png')) model = timm.create_model( 'convnext_small.in12k', pretrained=True, num_c... | 03c59939a47b3cc0a7f92493e270b7f7 |
apache-2.0 | ['generated_from_trainer'] | false | distilbert_sa_GLUE_Experiment_logit_kd_data_aug_qqp_192 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the GLUE QQP dataset. It achieves the following results on the evaluation set: - Loss: 0.7029 - Accuracy: 0.6540 - F1: 0.1254 - Combined Score: 0.3... | 679bf3e11b4f11e3ac1d797bb27c12d3 |
apache-2.0 | ['generated_from_trainer'] | false | Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | F1 | Combined Score | |:-------------:|:-----:|:------:|:---------------:|:--------:|:------:|:--------------:| | 0.8495 | 1.0 | 29671 | 0.7150 | 0.6333 | 0.0086 | 0.3210 | | 0.7654 | 2.0 | 59342... | 8021890f97023d8cdff76caaecc34070 |
apache-2.0 | ['generated_from_trainer'] | false | finetuned_sentence_itr6_2e-05_all_26_02_2022-04_31_13 This model is a fine-tuned version of [distilbert-base-uncased-finetuned-sst-2-english](https://huggingface.co/distilbert-base-uncased-finetuned-sst-2-english) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.4676 - Accuracy:... | cd745c17ac06181d6f6b3bc010c91b1c |
mit | [] | false | DIALogue-level Commonsense Transformer (DIALeCT) The pretrained checkpoint for the paper [Multiview Contextual Commonsense Inference: A New Dataset and Task](https://arxiv.org/abs/2210.02890). The model is trained based on the [T5-large](https://huggingface.co/t5-large) checkpoint.  following instructions. The Contextualized Commonsense Inference in Dialogues v2 (CICEROv2) consists of annotated commonsense inferences including cause and emotional reaction, etc. The dialog... | 03af41b1c955bc7278b0dc79d997d936 |
mit | [] | false | Examples Some examples of generated results from the pretrained model (the zero-shot setting). **Subsequent Event** ``` What is or could be the subsequent event of the target? <sep> target: Oh . I just can't forget it .<sep> context: A: David , why didn't you clean the room ?, <utt> B: I'm not in the mood ., <utt>... | a10e4e18f70fc1ab039461cb725b3d28 |
mit | [] | false | Inference: The input text should be formatted as follows: ``` Question <sep> target: target_utt <sep> context: A: utterance 1 <utt> B: utterance 2 <utt> A: utterance 3 <utt> B: utterance 4 ``` Question: The question against which we want to make the inference. A, B are speaker identifiers The ```target_utt``` shou... | 06f650fc0c97b5f9daf8c4fe866fe071 |
mit | [] | false | BibTeX entry and citation info If you use the model, you can cite: ```bibtex @article{Shen2022MultiviewCC, title={Multiview Contextual Commonsense Inference: A New Dataset and Task}, author={Siqi Shen and Deepanway Ghosal and Navonil Majumder and Henry Lim and Rada Mihalcea and Soujanya Poria}, journal={ArXiv},... | c2b1d5632221b450cff4303c2db1d609 |
apache-2.0 | ['multiberts', 'multiberts-seed_2', 'multiberts-seed_2-step_1600k'] | false | MultiBERTs, Intermediate Checkpoint - Seed 2, Step 1600k MultiBERTs is a collection of checkpoints and a statistical library to support robust research on BERT. We provide 25 BERT-base models trained with similar hyper-parameters as [the original BERT model](https://github.com/google-research/bert) but with different... | 747a3e8766be3ea2610f8ab291d0a816 |
apache-2.0 | ['multiberts', 'multiberts-seed_2', 'multiberts-seed_2-step_1600k'] | false | How to use Using code from [BERT-base uncased](https://huggingface.co/bert-base-uncased), here is an example based on Tensorflow: ``` from transformers import BertTokenizer, TFBertModel tokenizer = BertTokenizer.from_pretrained('google/multiberts-seed_2-step_1600k') model = TFBertModel.from_pretrained("google/multib... | b18bc9fcc52d280d5794f8a77423885f |
mit | [] | false | Table Transformer (fine-tuned for Table Structure Recognition) Table Transformer (DETR) model trained on PubTables1M. It was introduced in the paper [PubTables-1M: Towards Comprehensive Table Extraction From Unstructured Documents](https://arxiv.org/abs/2110.00061) by Smock et al. and first released in [this reposit... | 87395f148d5f94f8b0ecd68d93e978a4 |
mit | [] | false | Model description The Table Transformer is equivalent to [DETR](https://huggingface.co/docs/transformers/model_doc/detr), a Transformer-based object detection model. Note that the authors decided to use the "normalize before" setting of DETR, which means that layernorm is applied before self- and cross-attention. | d860070b10291d2b88e09715b13e2479 |
mit | [] | false | Usage You can use the raw model for detecting the structure (like rows, columns) in tables. See the [documentation](https://huggingface.co/docs/transformers/main/en/model_doc/table-transformer) for more info. | da7751ce2d3928a88223b4600a8f1baa |
mit | ['generated_from_trainer'] | false | mbti-classification-xlnet-base-cased-augment This model is a fine-tuned version of [xlnet-base-cased](https://huggingface.co/xlnet-base-cased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 2.2045 - Accuracy: 0.2829 | 5ef165b78e096a7f434f8431a6525e9d |
mit | ['generated_from_trainer'] | false | Training hyperparameters The following hyperparameters were used during training: - learning_rate: 2e-05 - train_batch_size: 16 - eval_batch_size: 16 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: cosine - num_epochs: 3 | 9c72170a5394ee1980d4da4ad1391128 |
mit | ['generated_from_trainer'] | false | Training results | Training Loss | Epoch | Step | Accuracy | Validation Loss | |:-------------:|:-----:|:-----:|:--------:|:---------------:| | 2.1055 | 1.0 | 29900 | 0.2884 | 2.1344 | | 1.8127 | 2.0 | 59800 | 0.2830 | 2.1479 | | 1.6953 | 3.0 | 89700 | 2.2045 | 0.28... | e4dddcba1e0ba3f5936c2a2b5d74f0a6 |
mit | ['conversational'] | false | DialoGPT Trained on the Speech of a Game Character This is an instance of [microsoft/DialoGPT-medium](https://huggingface.co/microsoft/DialoGPT-medium) trained on a game character, Neku Sakuraba from [The World Ends With You](https://en.wikipedia.org/wiki/The_World_Ends_with_You). The data comes from [a Kaggle game s... | 735254a9712871a22463189ac8b662d4 |
cc-by-4.0 | ['translation', 'opus-mt-tc'] | false | opus-mt-tc-base-bat-zle Neural machine translation model for translating from Baltic languages (bat) to East Slavic languages (zle). This model is part of the [OPUS-MT project](https://github.com/Helsinki-NLP/Opus-MT), an effort to make neural machine translation models widely available and accessible for many langu... | 165c7fb38a9ab9dbd15448a19bbf255b |
cc-by-4.0 | ['translation', 'opus-mt-tc'] | false | Model info * Release: 2022-03-13 * source language(s): lav lit * target language(s): rus * model: transformer-align * data: opusTCv20210807 ([source](https://github.com/Helsinki-NLP/Tatoeba-Challenge)) * tokenization: SentencePiece (spm32k,spm32k) * original model: [opusTCv20210807_transformer-align_2022-03-13.zip](h... | 98bd4d176e36891c08eb92543b6f7673 |
cc-by-4.0 | ['translation', 'opus-mt-tc'] | false | Usage A short example code: ```python from transformers import MarianMTModel, MarianTokenizer src_text = [ ">>rus<< Āfrika ir cilvēces šūpulis.", ">>ukr<< Tomas yra mūsų kapitonas." ] model_name = "pytorch-models/opus-mt-tc-base-bat-zle" tokenizer = MarianTokenizer.from_pretrained(model_name) model = Maria... | 811ac389c170112e0ddec09f440d541d |
cc-by-4.0 | ['translation', 'opus-mt-tc'] | false | Томас - наш капітан. ``` You can also use OPUS-MT models with the transformers pipelines, for example: ```python from transformers import pipeline pipe = pipeline("translation", model="Helsinki-NLP/opus-mt-tc-base-bat-zle") print(pipe(">>rus<< Āfrika ir cilvēces šūpulis.")) | 3da6f410b8deaae4a5f39567c19808d3 |
cc-by-4.0 | ['translation', 'opus-mt-tc'] | false | Benchmarks * test set translations: [opusTCv20210807_transformer-align_2022-03-13.test.txt](https://object.pouta.csc.fi/Tatoeba-MT-models/bat-zle/opusTCv20210807_transformer-align_2022-03-13.test.txt) * test set scores: [opusTCv20210807_transformer-align_2022-03-13.eval.txt](https://object.pouta.csc.fi/Tatoeba-MT-mod... | 73800f798eb40b3aa43c7d7e5f8a2aad |
cc-by-4.0 | ['translation', 'opus-mt-tc'] | false | words | |----------|---------|-------|-------|-------|--------| | lav-rus | tatoeba-test-v2021-08-07 | 0.75918 | 60.5 | 274 | 1541 | | lit-rus | tatoeba-test-v2021-08-07 | 0.72796 | 54.9 | 3598 | 21908 | | lav-rus | flores101-devtest | 0.49210 | 21.1 | 1012 | 23295 | | lav-ukr | flores101-devtest | 0.48185 | 19.2 | 101... | 0c2fc127b2eaf4a1b2d14add7dc74a46 |
apache-2.0 | ['automatic-speech-recognition', 'de'] | false | exp_w2v2r_de_xls-r_gender_male-5_female-5_s719 Fine-tuned [facebook/wav2vec2-xls-r-300m](https://huggingface.co/facebook/wav2vec2-xls-r-300m) for speech recognition using the train split of [Common Voice 7.0 (de)](https://huggingface.co/datasets/mozilla-foundation/common_voice_7_0). When using this model, make sure t... | a5fba4b12b8c6400a2589faa4e098346 |
apache-2.0 | ['summarization', 't5', 'ar', 'abstractive summarization', 'xlsum', 'generated_from_trainer'] | false | t5-arabic-base-finetuned-xlsum-ar This model is a fine-tuned version of [bakrianoo/t5-arabic-base](https://huggingface.co/bakrianoo/t5-arabic-base) on the xlsum dataset. It achieves the following results on the evaluation set: - Loss: 3.0328 - Rouge-1: 23.72 - Rouge-2: 10.95 - Rouge-l: 21.59 - Gen Len: 19.0 - Bertsco... | 59d9d3e0604dd7d021061a7930911212 |
apache-2.0 | ['summarization', 't5', 'ar', 'abstractive summarization', 'xlsum', 'generated_from_trainer'] | false | Training hyperparameters The following hyperparameters were used during training: - learning_rate: 0.0005 - train_batch_size: 4 - eval_batch_size: 4 - seed: 42 - gradient_accumulation_steps: 16 - total_train_batch_size: 64 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - lr_sch... | 43886c234f00478070178ff66b2a859b |
apache-2.0 | ['translation', 'generated_from_trainer'] | false | marian-finetuned-kde4-en-to-fr This model is a fine-tuned version of [Helsinki-NLP/opus-mt-en-fr](https://huggingface.co/Helsinki-NLP/opus-mt-en-fr) on the kde4 dataset. It achieves the following results on the evaluation set: - Loss: 0.8558 - Bleu: 52.9454 | 4a9d07ea7da6578d24870fcbf4b37c80 |
apache-2.0 | ['generated_from_keras_callback'] | false | reqbert-tapt-epoch30 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: | a4f2bbb195fcb1ce7c431f390501ba6f |
apache-2.0 | ['generated_from_keras_callback'] | false | Training hyperparameters The following hyperparameters were used during training: - optimizer: {'name': 'AdamWeightDecay', 'learning_rate': {'class_name': 'WarmUp', 'config': {'initial_learning_rate': 2e-05, 'decay_schedule_fn': {'class_name': 'PolynomialDecay', 'config': {'initial_learning_rate': 2e-05, 'decay_steps... | 97d193dc19c7eb5dee16ef579a636851 |
apache-2.0 | ['generated_from_trainer'] | false | distilled-mt5-small-1-0.25 This model is a fine-tuned version of [google/mt5-small](https://huggingface.co/google/mt5-small) on the wmt16 ro-en dataset. It achieves the following results on the evaluation set: - Loss: 6.8599 - Bleu: 4.0871 - Gen Len: 35.3267 | 8ece531615e3b38f5f369e4aa716a776 |
creativeml-openrail-m | ['stable-diffusion', 'text-to-image'] | false | **100Memories2.1E** Hi guys! Do you remember my SD 1.5 model about photos with a little bit of vintage style? I resurrect the project as a SD 2.1 embedding Some recomendations: the magic word for your prompts is 100Memories. If you enjoy my work, please consider supporting me: [ on the marcomameli01/gear dataset. It achieves the following results on the evaluation set: - Loss: 0.1268 - Mean Iou: 0.1254 - Mean Accuracy: 0.2509 - Overall Accuracy: 0.2509 - Per Categ... | 91abdaed2cf7970037ebf5d04adc7e71 |
apache-2.0 | ['vision', 'gear-segmentation', 'generated_from_trainer'] | false | Training results | Training Loss | Epoch | Step | Validation Loss | Mean Iou | Mean Accuracy | Overall Accuracy | Per Category Iou | Per Category Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:|:-------------:|:----------------:|:--------------------------:|:--------------------... | 551227ef68c40b4b04c5282359b484f3 |
apache-2.0 | ['generated_from_trainer'] | false | all-roberta-large-v1-kitchen_and_dining-7-16-5 This model is a fine-tuned version of [sentence-transformers/all-roberta-large-v1](https://huggingface.co/sentence-transformers/all-roberta-large-v1) on an unknown dataset. It achieves the following results on the evaluation set: - Loss: 2.3560 - Accuracy: 0.2692 | 9a93dd2a66de1c66dcf9a182cd5826ad |
apache-2.0 | ['generated_from_keras_callback'] | false | whisper_0015 This model is a fine-tuned version of [openai/whisper-tiny](https://huggingface.co/openai/whisper-tiny) on an unknown dataset. It achieves the following results on the evaluation set: - Train Loss: 0.3281 - Train Accuracy: 0.0322 - Validation Loss: 0.5841 - Validation Accuracy: 0.0311 - Epoch: 14 | 2bdf60677116ece2be9dbd948cf40435 |
apache-2.0 | ['generated_from_keras_callback'] | false | Training results | Train Loss | Train Accuracy | Validation Loss | Validation Accuracy | Epoch | |:----------:|:--------------:|:---------------:|:-------------------:|:-----:| | 5.0856 | 0.0116 | 4.4440 | 0.0123 | 0 | | 4.3149 | 0.0131 | 4.0521 | 0.0142 ... | 5c70b3804bf9e7c50ed079214e48d3f0 |
apache-2.0 | ['automatic-speech-recognition', 'common-voice', 'hf-asr-leaderboard', 'ja', 'robust-speech-event'] | false | Benchmark WER result: | | [COMMON VOICE 7.0](https://huggingface.co/datasets/mozilla-foundation/common_voice_7_0) | [COMMON VOICE 8.0](https://huggingface.co/datasets/mozilla-foundation/common_voice_8_0) |---|---|---| |without LM| 16.97 | 17.95 | |with 4-grams LM| 11.77 | 12.23| | c29f7faa83d8f6c52cad6f4462414174 |
apache-2.0 | ['automatic-speech-recognition', 'common-voice', 'hf-asr-leaderboard', 'ja', 'robust-speech-event'] | false | Benchmark CER result: | | [COMMON VOICE 7.0](https://huggingface.co/datasets/mozilla-foundation/common_voice_7_0) | [COMMON VOICE 8.0](https://huggingface.co/datasets/mozilla-foundation/common_voice_8_0) |---|---|---| |without LM| 6.82 | 7.05 | |with 4-grams LM| 5.22 | 5.33 | | 24be62b0b5d30728d9f514f9cc9fceae |
apache-2.0 | ['automatic-speech-recognition', 'common-voice', 'hf-asr-leaderboard', 'ja', 'robust-speech-event'] | false | Evaluation Please use the eval.py file to run the evaluation: ```python pip install mecab-python3 unidic-lite pykakasi python eval.py --model_id vutankiet2901/wav2vec2-xls-r-1b-ja --dataset mozilla-foundation/common_voice_8_0 --config ja --split test --log_outputs ``` | 8b3123e3f663ae1b79bc1af3fa676e7c |
apache-2.0 | ['automatic-speech-recognition', 'common-voice', 'hf-asr-leaderboard', 'ja', 'robust-speech-event'] | false | Training hyperparameters The following hyperparameters were used during training: - learning_rate: 5e-05 - train_batch_size: 16 - eval_batch_size: 8 - seed: 42 - gradient_accumulation_steps: 4 - total_train_batch_size: 64 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - lr_sche... | 8b60226a8a6d8677ec4cb16dad3bb818 |
apache-2.0 | ['automatic-speech-recognition', 'common-voice', 'hf-asr-leaderboard', 'ja', 'robust-speech-event'] | false | Training results | Training Loss | Epoch | Step | Validation Loss | Wer | Cer | |:-------------:|:-----:|:-----:|:---------------:|:------:|:------:| | 3.484 | 9.49 | 1500 | 1.1849 | 0.7543 | 0.4099 | | 1.3582 | 18.98 | 3000 | 0.4320 | 0.3489 | 0.1591 | | 1.1716 | 28.... | c254922f8f53aa4dcef9701523e49767 |
cc | ['text classification'] | false | Model information: This model is the [bert-base-uncased](https://huggingface.co/bert-base-uncased) model that has been finetuned using radiology report texts from the MIMIC-III database. The task performed was text classification in order to benchmark this model with a selection of other variants of BERT for the class... | 41c9f49a86a389574d02fb1334a1cbb9 |
cc | ['text classification'] | false | Limitations: Note that the dataset and model may not be fully represetative or suitable for all needs it is recommended that the paper for the dataset and the base model card should be reviewed before use - - [MIMIC-III](https://www.nature.com/articles/sdata201635.pdf) - [bert-base-uncased](https://huggingface.co/ber... | cd79ab8fb24d4ba45600ec33153057e5 |
cc | ['text classification'] | false | How to use: Load the model from the library using the following checkpoints: ```python from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("sarahmiller137/bert-base-uncased-ft-m3-lc") model = AutoModel.from_pretrained("sarahmiller137/bert-base-uncased-ft-m3-lc") ``` | 7911c3a95b532e1bd8c22f0ecc31e41d |
mit | [] | false | Model Description <!-- Provide a longer summary of what this model is/does. --> sm Latin model for spaCy trained on UD treebanks for tagging, parsing and lemmatization - **Developed by:** Patrick J. Burns - **Model type:** spaCy model - **Language(s) (NLP):** la - **License:** mit - **Resources for more information:... | d54e074df5dda61bf6240d932a314e58 |
mit | [] | false | Citation <!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. --> **BibTeX:** ``` @misc{burns_la_dep_cltk_sm_2022, title = {la\_dep\_cltk\_sm}, version = 0.2.0, url = {https://github.com/diyclassics/la_dep_cltk_sm}, abstract = {sp... | 7a0f76985843ae1891a8cfd010ddb21b |
mit | [] | false | How to Get Started with the Model - Install with... - `pip install https://huggingface.co/diyclassics/la_dep_cltk_sm/resolve/main/la_dep_cltk_sm-0.2.0/dist/la_dep_cltk_sm-0.2.0.tar.gz` - Tested on python 3.10.8, spacy==3.4.2 | c623a96325b6ac5cf7ec2eed35bcf0d8 |
apache-2.0 | ['hf-asr-leaderboard', 'generated_from_trainer'] | false | Whisper Small Swedish This model is an adapted version of [openai/whisper-small](https://huggingface.co/openai/whisper-small) on the Common Voice 11.0 dataset in Swedish. It achieves the following results on the evaluation set: - Wer: 19.8166 | ffb56461a2ae2be8267bf4ce6e5331ab |
apache-2.0 | ['hf-asr-leaderboard', 'generated_from_trainer'] | false | Model description & uses This model is the openai whisper small transformer adapted for Swedish audio to text transcription. The model is available through its [HuggingFace web app](https://huggingface.co/spaces/torileatherman/whisper_small_sv) | 25a96709c9ff8e3355c5688d108033b4 |
apache-2.0 | ['hf-asr-leaderboard', 'generated_from_trainer'] | false | Training and evaluation data Data used for training is the initial 10% of train and validation of [Swedish Common Voice](https://huggingface.co/datasets/mozilla-foundation/common_voice_11_0/viewer/sv/train) 11.0 from Mozilla Foundation. The dataset used for evaluation is the initial 10% of test of Swedish Common Voic... | 9904e31a42fbebf8acd211133efc5a75 |
apache-2.0 | ['hf-asr-leaderboard', 'generated_from_trainer'] | false | Training hyperparameters The following hyperparameters were used during training: - learning_rate: 1e-05 - train_batch_size: 8 - eval_batch_size: 8 - lr_scheduler_type: constant - lr_scheduler_warmup_steps: 500 - training_steps: 4000 - weight decay: 0 | 9efda614cbd8a78355e67a1bad193171 |
apache-2.0 | ['hf-asr-leaderboard', 'generated_from_trainer'] | false | Training results | Training Loss | Epoch | Step | Validation Loss | Wer | |:-------------:|:-----:|:----:|:---------------:|:-------:| | 0.1379 | 0.95 | 1000 | 0.295811 | 21.467| | 0.0245 | 2.86 | 3000 | 0.300059 | 20.160 | | 0.0060 | 3.82 | 4000 | 0.320301 | 19.762 | | f029b60dedf5507485b2173df4b825f5 |
apache-2.0 | ['translation'] | false | jpn-nld * source group: Japanese * target group: Dutch * OPUS readme: [jpn-nld](https://github.com/Helsinki-NLP/Tatoeba-Challenge/tree/master/models/jpn-nld/README.md) * model: transformer-align * source language(s): jpn jpn_Hani jpn_Hira jpn_Kana jpn_Latn * target language(s): nld * model: transformer-align * p... | 3c508b988fc076e2f2c30d8294807de5 |
apache-2.0 | ['translation'] | false | System Info: - hf_name: jpn-nld - source_languages: jpn - target_languages: nld - opus_readme_url: https://github.com/Helsinki-NLP/Tatoeba-Challenge/tree/master/models/jpn-nld/README.md - original_repo: Tatoeba-Challenge - tags: ['translation'] - languages: ['ja', 'nl'] - src_constituents: {'jpn_Hang', 'jpn', ... | 85e9348eaea39f3af968fbc0f516b0df |
apache-2.0 | [] | false | distilbert-base-en-fr-es-de-zh-cased We are sharing smaller versions of [distilbert-base-multilingual-cased](https://huggingface.co/distilbert-base-multilingual-cased) that handle a custom number of languages. Our versions give exactly the same representations produced by the original model which preserves the origi... | 37b0acaac22161c2343703a372ae777e |
apache-2.0 | [] | false | How to use ```python from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("Geotrend/distilbert-base-en-fr-es-de-zh-cased") model = AutoModel.from_pretrained("Geotrend/distilbert-base-en-fr-es-de-zh-cased") ``` To generate other smaller versions of multilingual transformers pl... | aa4f91a93261957282b6d9321a2089d4 |
creativeml-openrail-m | [] | false | A DreamBooth finetune of Stable Diffusion v1.5 model trained on a bunch of stills from [Kurzgesagt](https://www.youtube.com/c/inanutshell) videos. Use the tokens **_kurzgesagt style_** in your prompts for the effect. **Sample 1:**  **Sample 2:**  | 80067bc5557fc5b250e681a65a19bb44 |
apache-2.0 | ['automatic-speech-recognition', 'fr'] | false | exp_w2v2r_fr_vp-100k_age_teens-10_sixties-0_s818 Fine-tuned [facebook/wav2vec2-large-100k-voxpopuli](https://huggingface.co/facebook/wav2vec2-large-100k-voxpopuli) for speech recognition using the train split of [Common Voice 7.0 (fr)](https://huggingface.co/datasets/mozilla-foundation/common_voice_7_0). When using t... | a882fef6a4775fe9d02362f72d698d29 |
mit | ['automatic-speech-recognition', 'generated_from_trainer'] | false | Model description We pre-trained a wav2vec 2.0 base model on 842h of unlabelled Luxembourgish speech collected from [RTL.lu](https://www.rtl.lu/). Then the model was fine-tuned on 4h of labelled Luxembourgish Speech from the same domain. | e4e6fc0580264a066c57718789d795ff |
apache-2.0 | ['generated_from_trainer'] | false | distilbert-base-uncased-finetuned-spam This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on an unknown dataset. It achieves the following results on the evaluation set: - Loss: 0.0325 - F1: 0.9910 - Accuracy: 0.9910 | 339ebefb493dd3e5d3f11dc90e174eed |
apache-2.0 | ['generated_from_trainer'] | false | Training results | Training Loss | Epoch | Step | Validation Loss | F1 | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:------:|:--------:| | 0.1523 | 1.0 | 79 | 0.0369 | 0.9892 | 0.9892 | | 0.0303 | 2.0 | 158 | 0.0325 | 0.9910 | 0.9910 | | 542f569c788bce8ca87e5d7700dda9f4 |
apache-2.0 | ['generated_from_trainer'] | false | TUF_DistilBERT_5E This model is a fine-tuned version of [distilbert-base-cased](https://huggingface.co/distilbert-base-cased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.1832 - Accuracy: 0.96 | eb87bffa997b2ccec1d7c930eb7d435e |
apache-2.0 | ['generated_from_trainer'] | false | Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.5092 | 0.1 | 50 | 0.4385 | 0.7533 | | 0.2807 | 0.2 | 100 | 0.2225 | 0.9 | | 0.1881 | 0.3 | 150 | 0.1531 | 0.... | 83a62ae4ec51704a38b3de2989d0759b |
apache-2.0 | ['automatic-speech-recognition', 'et'] | false | exp_w2v2t_et_wav2vec2_s112 Fine-tuned [facebook/wav2vec2-large-lv60](https://huggingface.co/facebook/wav2vec2-large-lv60) for speech recognition using the train split of [Common Voice 7.0 (et)](https://huggingface.co/datasets/mozilla-foundation/common_voice_7_0). When using this model, make sure that your speech inpu... | 82b5aefb6780b05af2ee98045796a7a4 |
apache-2.0 | [] | false | Training Data Given a question and paragraph, can the question be answered by the paragraph? The models have been trained on the [GLUE QNLI](https://arxiv.org/abs/1804.07461) dataset, which transformed the [SQuAD dataset](https://rajpurkar.github.io/SQuAD-explorer/) into an NLI task. | 5ef21a5ef466dd343b3c7fbdf7e3e861 |
apache-2.0 | [] | false | Usage Pre-trained models can be used like this: ```python from sentence_transformers import CrossEncoder model = CrossEncoder('model_name') scores = model.predict([('Query1', 'Paragraph1'), ('Query2', 'Paragraph2')]) | 51a7ad876f02037ac2687fb0dd00c19d |
apache-2.0 | [] | false | e.g. scores = model.predict([('How many people live in Berlin?', 'Berlin had a population of 3,520,031 registered inhabitants in an area of 891.82 square kilometers.'), ('What is the size of New York?', 'New York City is famous for the Metropolitan Museum of Art.')]) ``` | 675871f385d06873a1d2ad11cd95dafe |
apache-2.0 | [] | false | Usage with Transformers AutoModel You can use the model also directly with Transformers library (without SentenceTransformers library): ```python from transformers import AutoTokenizer, AutoModelForSequenceClassification import torch model = AutoModelForSequenceClassification.from_pretrained('model_name') tokenizer =... | 42bdbc866f77027cbf6d71ff5efc19d1 |
apache-2.0 | ['automatic-speech-recognition', 'es'] | false | exp_w2v2t_es_xls-r_s691 Fine-tuned [facebook/wav2vec2-xls-r-300m](https://huggingface.co/facebook/wav2vec2-xls-r-300m) for speech recognition using the train split of [Common Voice 7.0 (es)](https://huggingface.co/datasets/mozilla-foundation/common_voice_7_0). When using this model, make sure that your speech input i... | 98fc04c888d6f89d9b15a5f39a79acb5 |
mit | ['generated_from_trainer'] | false | finetuned_gpt2-medium_sst2_negation0.001_pretrainedTrue_epochs1 This model is a fine-tuned version of [gpt2-medium](https://huggingface.co/gpt2-medium) on the sst2 dataset. It achieves the following results on the evaluation set: - Loss: 2.8767 | 954ebc6ba10f3972df83473c90c2b6f2 |
unlicense | [] | false | Use the token SamDoesArt to trigger the effect. It should work anywhere in the prompt. I usually put it right at the beginning of the prompt, which has a mildly different effect than putting it at the end of the prompt. Up to you though to do some test and find where is the prompt is best for your personal tastes. I ... | 7ba50c9ae1e176bd964fb526c58db966 |
apache-2.0 | ['whisper-event', 'generated_from_trainer'] | false | Whisper Medium Galician This model is a fine-tuned version of [openai/whisper-medium](https://huggingface.co/openai/whisper-medium) on the google/fleurs gl_es dataset. It achieves the following results on the evaluation set: - Loss: 0.4553 - Wer: 14.6741 | 06ed36e01ed8526f405b5f94628aad93 |
apache-2.0 | ['whisper-event', 'generated_from_trainer'] | false | Training results | Training Loss | Epoch | Step | Validation Loss | Wer | |:-------------:|:-----:|:----:|:---------------:|:-------:| | 0.0002 | 39.01 | 1000 | 0.4553 | 14.6741 | | 0.0001 | 79.0 | 2000 | 0.5023 | 14.9400 | | 0.0 | 119.0 | 3000 | 0.5317 | 15.160... | ad2854ecb173e3140bf1ee548efb3247 |
apache-2.0 | ['generated_from_trainer'] | false | distilbert-base-uncased-finetuned-imdb This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the imdb dataset. It achieves the following results on the evaluation set: - Loss: 0.2214 - Accuracy: 0.9294 | 62db770e3f542d943dae9edd5dcc8681 |
apache-2.0 | ['generated_from_trainer'] | false | Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.2435 | 1.0 | 1250 | 0.2186 | 0.917 | | 0.1495 | 2.0 | 2500 | 0.2214 | 0.9294 | | 0.0829 | 3.0 | 3750 | 0.4892 | 0.... | 9ffe5b5df99b4551e19bff2f34717edf |
apache-2.0 | ['generated_from_trainer'] | false | bert-base-uncased-finetuned-squad This model is a fine-tuned version of [bert-base-uncased](https://huggingface.co/bert-base-uncased) on the squad dataset. It achieves the following results on the evaluation set: - Loss: 1.0964 | ff0f87a11294082cd8fd64b7dffba0f6 |
apache-2.0 | ['generated_from_trainer'] | false | Training results | Training Loss | Epoch | Step | Validation Loss | |:-------------:|:-----:|:-----:|:---------------:| | 1.0664 | 1.0 | 5533 | 1.0170 | | 0.7946 | 2.0 | 11066 | 1.0367 | | 0.5758 | 3.0 | 16599 | 1.0964 | | aed549c00480643041ddd3635df16d32 |
apache-2.0 | ['translation'] | false | opus-mt-sv-chk * source languages: sv * target languages: chk * OPUS readme: [sv-chk](https://github.com/Helsinki-NLP/OPUS-MT-train/blob/master/models/sv-chk/README.md) * dataset: opus * model: transformer-align * pre-processing: normalization + SentencePiece * download original weights: [opus-2020-01-16.zip](http... | eec0b7161a6eb18a879b99f80d0cfc39 |
mit | ['automatic-speech-recognition', 'generated_from_trainer'] | false | Model description We fine-tuned a wav2vec 2.0 large XLSR-53 checkpoint with 842h of unlabelled Luxembourgish speech collected from [RTL.lu](https://www.rtl.lu/). Then the model was fine-tuned on 11h of labelled Luxembourgish speech from the same domain. | 1fb9730bbe5895fbb800ef917c2a5e70 |
apache-2.0 | ['generated_from_trainer'] | false | distilbert-base-uncased__sst2__train-32-5 This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.6248 - Accuracy: 0.6826 | f41210d25d8c7581b3a25252db920c11 |
apache-2.0 | ['generated_from_trainer'] | false | Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.7136 | 1.0 | 13 | 0.6850 | 0.5385 | | 0.6496 | 2.0 | 26 | 0.6670 | 0.6154 | | 0.5895 | 3.0 | 39 | 0.6464 | 0.... | 937ec36df0f96ee6b969bbeebcd418b3 |
apache-2.0 | ['generated_from_trainer'] | false | distilbert-base-uncased-finetuned-cola This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the glue dataset. It achieves the following results on the evaluation set: - Loss: 0.8456 - Matthews Correlation: 0.5500 | fb3bde144e7094baeaf09636a241a53e |
apache-2.0 | ['generated_from_trainer'] | false | Training results | Training Loss | Epoch | Step | Validation Loss | Matthews Correlation | |:-------------:|:-----:|:----:|:---------------:|:--------------------:| | 0.5197 | 1.0 | 535 | 0.5477 | 0.4130 | | 0.3456 | 2.0 | 1070 | 0.5035 | 0.5239 | | 0.2... | 58f4d3005450d944bc5726895a5c9027 |
apache-2.0 | ['whisper-event', 'hf-asr-leaderboard', 'generated_from_trainer'] | false | Whisper Medium Czech 2 CV11 This model is a fine-tuned version of [openai/whisper-medium](https://huggingface.co/openai/whisper-medium) on the mozilla-foundation/common_voice_11_0 cs dataset. It achieves the following results on the evaluation set: - Loss: 0.2417 - Wer: 11.4086 | e6dc0d66771a46fb1686ab15a1a714b1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.