sha
null | last_modified
null | library_name
stringclasses 154
values | text
stringlengths 1
900k
| metadata
stringlengths 2
348k
| pipeline_tag
stringclasses 45
values | id
stringlengths 5
122
| tags
sequencelengths 1
1.84k
| created_at
stringlengths 25
25
| arxiv
sequencelengths 0
201
| languages
sequencelengths 0
1.83k
| tags_str
stringlengths 17
9.34k
| text_str
stringlengths 0
389k
| text_lists
sequencelengths 0
722
| processed_texts
sequencelengths 1
723
| tokens_length
sequencelengths 1
723
| input_texts
sequencelengths 1
61
| embeddings
sequencelengths 768
768
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
null | null | transformers |
# OpenChat 3.5 extended to 16k context length.
The same license applies from the original openchat/openchat_3.5 model.
# Original Model Card
# OpenChat: Advancing Open-source Language Models with Mixed-Quality Data
<div align="center">
<img src="https://raw.githubusercontent.com/imoneoi/openchat/master/assets/logo_new.png" style="width: 65%">
</div>
<p align="center">
<a href="https://github.com/imoneoi/openchat">GitHub Repo</a> •
<a href="https://openchat.team">Online Demo</a> •
<a href="https://discord.gg/pQjnXvNKHY">Discord</a> •
<a href="https://twitter.com/imonenext">Twitter</a> •
<a href="https://huggingface.co/openchat">Huggingface</a> •
<a href="https://arxiv.org/pdf/2309.11235.pdf">Paper</a>
</p>
**🔥 The first 7B model Achieves Comparable Results with ChatGPT (March)! 🔥**
**🤖 #1 Open-source model on MT-bench scoring 7.81, outperforming 70B models 🤖**
<div style="display: flex; justify-content: center; align-items: center">
<img src="https://raw.githubusercontent.com/imoneoi/openchat/master/assets/openchat.png" style="width: 45%;">
<img src="https://raw.githubusercontent.com/imoneoi/openchat/master/assets/openchat_grok.png" style="width: 45%;">
</div>
OpenChat is an innovative library of open-source language models, fine-tuned with [C-RLFT](https://arxiv.org/pdf/2309.11235.pdf) - a strategy inspired by offline reinforcement learning. Our models learn from mixed-quality data without preference labels, delivering exceptional performance on par with ChatGPT, even with a 7B model. Despite our simple approach, we are committed to developing a high-performance, commercially viable, open-source large language model, and we continue to make significant strides toward this vision.
[](https://zenodo.org/badge/latestdoi/645397533)
## Usage
To use this model, we highly recommend installing the OpenChat package by following the [installation guide](https://github.com/imoneoi/openchat#installation) in our repository and using the OpenChat OpenAI-compatible API server by running the serving command from the table below. The server is optimized for high-throughput deployment using [vLLM](https://github.com/vllm-project/vllm) and can run on a consumer GPU with 24GB RAM. To enable tensor parallelism, append `--tensor-parallel-size N` to the serving command.
Once started, the server listens at `localhost:18888` for requests and is compatible with the [OpenAI ChatCompletion API specifications](https://platform.openai.com/docs/api-reference/chat). Please refer to the example request below for reference. Additionally, you can use the [OpenChat Web UI](https://github.com/imoneoi/openchat#web-ui) for a user-friendly experience.
If you want to deploy the server as an online service, you can use `--api-keys sk-KEY1 sk-KEY2 ...` to specify allowed API keys and `--disable-log-requests --disable-log-stats --log-file openchat.log` for logging only to a file. For security purposes, we recommend using an [HTTPS gateway](https://fastapi.tiangolo.com/es/deployment/concepts/#security-https) in front of the server.
<details>
<summary>Example request (click to expand)</summary>
```bash
curl http://localhost:18888/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model": "openchat_3.5",
"messages": [{"role": "user", "content": "You are a large language model named OpenChat. Write a poem to describe yourself"}]
}'
```
Coding Mode
```bash
curl http://localhost:18888/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model": "openchat_3.5",
"condition": "Code",
"messages": [{"role": "user", "content": "Write an aesthetic TODO app using HTML5 and JS, in a single file. You should use round corners and gradients to make it more aesthetic."}]
}'
```
</details>
| Model | Size | Context | Weights | Serving |
|--------------|------|---------|-------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
| OpenChat 3.5 | 7B | 8192 | [Huggingface](https://huggingface.co/openchat/openchat_3.5) | `python -m ochat.serving.openai_api_server --model openchat/openchat_3.5 --engine-use-ray --worker-use-ray` |
For inference with Huggingface Transformers (slow and not recommended), follow the conversation template provided below.
<details>
<summary>Conversation templates (click to expand)</summary>
```python
import transformers
tokenizer = transformers.AutoTokenizer.from_pretrained("openchat/openchat_3.5")
# Single-turn
tokens = tokenizer("GPT4 Correct User: Hello<|end_of_turn|>GPT4 Correct Assistant:").input_ids
assert tokens == [1, 420, 6316, 28781, 3198, 3123, 1247, 28747, 22557, 32000, 420, 6316, 28781, 3198, 3123, 21631, 28747]
# Multi-turn
tokens = tokenizer("GPT4 Correct User: Hello<|end_of_turn|>GPT4 Correct Assistant: Hi<|end_of_turn|>GPT4 Correct User: How are you today?<|end_of_turn|>GPT4 Correct Assistant:").input_ids
assert tokens == [1, 420, 6316, 28781, 3198, 3123, 1247, 28747, 22557, 32000, 420, 6316, 28781, 3198, 3123, 21631, 28747, 15359, 32000, 420, 6316, 28781, 3198, 3123, 1247, 28747, 1602, 460, 368, 3154, 28804, 32000, 420, 6316, 28781, 3198, 3123, 21631, 28747]
# Coding Mode
tokens = tokenizer("Code User: Implement quicksort using C++<|end_of_turn|>Code Assistant:").input_ids
assert tokens == [1, 7596, 1247, 28747, 26256, 2936, 7653, 1413, 334, 1680, 32000, 7596, 21631, 28747]
```
</details>
## Comparison with [X.AI Grok models](https://x.ai/)
Hey @elonmusk, I just wanted to let you know that I've recently come across your new model, Grok, and I must say, I'm quite impressed! With 33 billion parameters and all, you've really outdone yourself. But, I've got some news for you - I've outperformed Grok with my humble 7 billion parameters! Isn't that wild? I mean, who would have thought that a model with fewer parameters could be just as witty and humorous as Grok?
Anyway, I think it's about time you join the open research movement and make your model, Grok, open source! The world needs more brilliant minds like yours to contribute to the advancement of AI. Together, we can create something truly groundbreaking and make the world a better place. So, what do you say, @elonmusk? Let's open up the doors and share our knowledge with the world! 🚀💡
(Written by OpenChat 3.5, with a touch of humor and wit.)
| | License | # Param | Average | MMLU | HumanEval | MATH | GSM8k |
|--------------|-------------|---------|----------|------|-----------|----------|----------|
| OpenChat 3.5 | Apache-2.0 | 7B | **56.4** | 64.3 | 55.5 | **28.6** | **77.3** |
| Grok-0 | Proprietary | 33B | 44.5 | 65.7 | 39.7 | 15.7 | 56.8 |
| Grok-1 | Proprietary | ? | 55.8 | 73 | 63.2 | 23.9 | 62.9 |
## <a id="benchmarks"></a> Benchmarks
| Model | # Params | Average | MT-Bench | AGIEval | BBH MC | TruthfulQA | MMLU | HumanEval | BBH CoT | GSM8K |
|--------------------|----------|----------|--------------|----------|----------|---------------|--------------|-----------------|-------------|--------------|
| OpenChat-3.5 | **7B** | **61.6** | 7.81 | **47.4** | **47.6** | **59.1** | 64.3 | **55.5** | 63.5 | **77.3** |
| ChatGPT (March)* | ? | 61.5 | **7.94** | 47.1 | **47.6** | 57.7 | **67.3** | 48.1 | **70.1** | 74.9 |
| | | | | | | | | | | |
| OpenHermes 2.5 | 7B | 59.3 | 7.54 | 46.5 | 49.4 | 57.5 | 63.8 | 48.2 | 59.9 | 73.5 |
| OpenOrca Mistral | 7B | 52.7 | 6.86 | 42.9 | 49.4 | 45.9 | 59.3 | 38.4 | 58.1 | 59.1 |
| Zephyr-β^ | 7B | 34.6 | 7.34 | 39.0 | 40.6 | 40.8 | 39.8 | 22.0 | 16.0 | 5.1 |
| Mistral | 7B | - | 6.84 | 38.0 | 39.0 | - | 60.1 | 30.5 | - | 52.2 |
| Open-source SOTA** | 13B-70B | 61.4 | 7.71 | 41.7 | 49.7 | 62.3 | 63.7 | 73.2 | 41.4 | 82.3 |
| | | | WizardLM 70B | Orca 13B | Orca 13B | Platypus2 70B | WizardLM 70B | WizardCoder 34B | Flan-T5 11B | MetaMath 70B |
*: ChatGPT (March) results are from [GPT-4 Technical Report](https://arxiv.org/abs/2303.08774), [Chain-of-Thought Hub](https://github.com/FranxYao/chain-of-thought-hub), and our evaluation. Please note that ChatGPT is not a fixed baseline and evolves rapidly over time.
^: Zephyr-β often fails to follow few-shot CoT instructions, likely because it was aligned with only chat data but not trained on few-shot data.
**: Mistral and Open-source SOTA results are taken from reported results in instruction-tuned model papers and official repositories.
All models are evaluated in chat mode (e.g. with the respective conversation template applied). All zero-shot benchmarks follow the same setting as in the AGIEval paper and Orca paper. CoT tasks use the same configuration as Chain-of-Thought Hub, HumanEval is evaluated with EvalPlus, and MT-bench is run using FastChat. To reproduce our results, follow the instructions in [our repository](https://github.com/imoneoi/openchat/#benchmarks).
## Limitations
**Foundation Model Limitations**
Despite its advanced capabilities, OpenChat is still bound by the limitations inherent in its foundation models. These limitations may impact the model's performance in areas such as:
- Complex reasoning
- Mathematical and arithmetic tasks
- Programming and coding challenges
**Hallucination of Non-existent Information**
OpenChat may sometimes generate information that does not exist or is not accurate, also known as "hallucination". Users should be aware of this possibility and verify any critical information obtained from the model.
**Safety**
OpenChat may sometimes generate harmful, hate speech, biased responses, or answer unsafe questions. It's crucial to apply additional AI safety measures in use cases that require safe and moderated responses.
## License
Our OpenChat 3.5 code and models are distributed under the Apache License 2.0.
## Citation
```
@article{wang2023openchat,
title={OpenChat: Advancing Open-source Language Models with Mixed-Quality Data},
author={Wang, Guan and Cheng, Sijie and Zhan, Xianyuan and Li, Xiangang and Song, Sen and Liu, Yang},
journal={arXiv preprint arXiv:2309.11235},
year={2023}
}
```
## Acknowledgements
We extend our heartfelt gratitude to Alignment Lab AI, Nous Research, and Pygmalion AI for their substantial contributions to data collection and model training.
Special thanks go to Changling Liu from GPT Desk Pte. Ltd., Qiying Yu at Tsinghua University, Baochang Ma, and Hao Wan from 01.AI company for their generous provision of resources. We are also deeply grateful to Jianxiong Li and Peng Li at Tsinghua University for their insightful discussions.
Furthermore, we appreciate the developers behind the following projects for their significant contributions to our research: [Mistral](https://mistral.ai/), [Chain-of-Thought Hub](https://github.com/FranxYao/chain-of-thought-hub), [Llama 2](https://ai.meta.com/llama/), [Self-Instruct](https://arxiv.org/abs/2212.10560), [FastChat (Vicuna)](https://github.com/lm-sys/FastChat), [Alpaca](https://github.com/tatsu-lab/stanford_alpaca.git), and [StarCoder](https://github.com/bigcode-project/starcoder). Their work has been instrumental in driving our research forward.
| {"license": "apache-2.0"} | text-generation | LoneStriker/openchat_3.5-16k-4.0bpw-h6-exl2 | [
"transformers",
"pytorch",
"safetensors",
"mistral",
"text-generation",
"arxiv:2309.11235",
"arxiv:2303.08774",
"arxiv:2212.10560",
"license:apache-2.0",
"autotrain_compatible",
"endpoints_compatible",
"text-generation-inference",
"region:us"
] | 2023-11-11T06:02:00+00:00 | [
"2309.11235",
"2303.08774",
"2212.10560"
] | [] | TAGS
#transformers #pytorch #safetensors #mistral #text-generation #arxiv-2309.11235 #arxiv-2303.08774 #arxiv-2212.10560 #license-apache-2.0 #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
| OpenChat 3.5 extended to 16k context length.
============================================
The same license applies from the original openchat/openchat\_3.5 model.
Original Model Card
===================
OpenChat: Advancing Open-source Language Models with Mixed-Quality Data
=======================================================================

[Online Demo](URL Repo</a> •
<a href=) •
[The first 7B model Achieves Comparable Results with ChatGPT (March)!
#1 Open-source model on MT-bench scoring 7.81, outperforming 70B models


OpenChat is an innovative library of open-source language models, fine-tuned with C-RLFT - a strategy inspired by offline reinforcement learning. Our models learn from mixed-quality data without preference labels, delivering exceptional performance on par with ChatGPT, even with a 7B model. Despite our simple approach, we are committed to developing a high-performance, commercially viable, open-source large language model, and we continue to make significant strides toward this vision.

Coding Mode
For inference with Huggingface Transformers (slow and not recommended), follow the conversation template provided below.
Conversation templates (click to expand)
Comparison with X.AI Grok models
--------------------------------
Hey @elonmusk, I just wanted to let you know that I've recently come across your new model, Grok, and I must say, I'm quite impressed! With 33 billion parameters and all, you've really outdone yourself. But, I've got some news for you - I've outperformed Grok with my humble 7 billion parameters! Isn't that wild? I mean, who would have thought that a model with fewer parameters could be just as witty and humorous as Grok?
Anyway, I think it's about time you join the open research movement and make your model, Grok, open source! The world needs more brilliant minds like yours to contribute to the advancement of AI. Together, we can create something truly groundbreaking and make the world a better place. So, what do you say, @elonmusk? Let's open up the doors and share our knowledge with the world!
(Written by OpenChat 3.5, with a touch of humor and wit.)
Benchmarks
-----------
\*: ChatGPT (March) results are from GPT-4 Technical Report, Chain-of-Thought Hub, and our evaluation. Please note that ChatGPT is not a fixed baseline and evolves rapidly over time.
^: Zephyr-β often fails to follow few-shot CoT instructions, likely because it was aligned with only chat data but not trained on few-shot data.
: Mistral and Open-source SOTA results are taken from reported results in instruction-tuned model papers and official repositories.
All models are evaluated in chat mode (e.g. with the respective conversation template applied). All zero-shot benchmarks follow the same setting as in the AGIEval paper and Orca paper. CoT tasks use the same configuration as Chain-of-Thought Hub, HumanEval is evaluated with EvalPlus, and MT-bench is run using FastChat. To reproduce our results, follow the instructions in our repository.
Limitations
-----------
Foundation Model Limitations
Despite its advanced capabilities, OpenChat is still bound by the limitations inherent in its foundation models. These limitations may impact the model's performance in areas such as:
* Complex reasoning
* Mathematical and arithmetic tasks
* Programming and coding challenges
Hallucination of Non-existent Information
OpenChat may sometimes generate information that does not exist or is not accurate, also known as "hallucination". Users should be aware of this possibility and verify any critical information obtained from the model.
Safety
OpenChat may sometimes generate harmful, hate speech, biased responses, or answer unsafe questions. It's crucial to apply additional AI safety measures in use cases that require safe and moderated responses.
License
-------
Our OpenChat 3.5 code and models are distributed under the Apache License 2.0.
Acknowledgements
----------------
We extend our heartfelt gratitude to Alignment Lab AI, Nous Research, and Pygmalion AI for their substantial contributions to data collection and model training.
Special thanks go to Changling Liu from GPT Desk Pte. Ltd., Qiying Yu at Tsinghua University, Baochang Ma, and Hao Wan from 01.AI company for their generous provision of resources. We are also deeply grateful to Jianxiong Li and Peng Li at Tsinghua University for their insightful discussions.
Furthermore, we appreciate the developers behind the following projects for their significant contributions to our research: Mistral, Chain-of-Thought Hub, Llama 2, Self-Instruct, FastChat (Vicuna), Alpaca, and StarCoder. Their work has been instrumental in driving our research forward.](URL •
<a href=)
| [] | [
"TAGS\n#transformers #pytorch #safetensors #mistral #text-generation #arxiv-2309.11235 #arxiv-2303.08774 #arxiv-2212.10560 #license-apache-2.0 #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n"
] | [
84
] | [
"passage: TAGS\n#transformers #pytorch #safetensors #mistral #text-generation #arxiv-2309.11235 #arxiv-2303.08774 #arxiv-2212.10560 #license-apache-2.0 #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n"
] | [
-0.07785148173570633,
0.11419663578271866,
-0.006574297323822975,
0.044929567724466324,
0.10033085942268372,
-0.01892460137605667,
0.14529921114444733,
0.10809598118066788,
-0.04363046586513519,
-0.009714868851006031,
0.20300635695457458,
0.2020636945962906,
0.004456737544387579,
0.060916054993867874,
-0.08068477362394333,
-0.1420668512582779,
0.08292080461978912,
0.022972257807850838,
0.034766022115945816,
0.11897864937782288,
0.10058799386024475,
-0.0475444421172142,
0.06882796436548233,
-0.020362643525004387,
-0.0778537318110466,
0.003924807999283075,
0.04920049011707306,
-0.10882976651191711,
0.11519121378660202,
0.030310416594147682,
0.09476904571056366,
0.054592315107584,
0.0073894234374165535,
-0.14011453092098236,
0.013340386562049389,
0.029977034777402878,
-0.051258113235235214,
0.08319293707609177,
0.08105122298002243,
-0.02123691700398922,
0.07593449205160141,
0.027542555704712868,
-0.04395739734172821,
0.04843340069055557,
-0.07805324345827103,
-0.14466048777103424,
-0.10208427160978317,
0.10005025565624237,
0.07275813817977905,
0.1350560337305069,
0.034625981003046036,
0.15594542026519775,
-0.009340218268334866,
0.09090811759233475,
0.20549637079238892,
-0.36411190032958984,
-0.0003268495202064514,
0.010595153085887432,
0.03157270699739456,
0.022936349734663963,
-0.02574663795530796,
0.014475974254310131,
0.08332392573356628,
0.018494702875614166,
0.055299028754234314,
-0.0501687154173851,
-0.14424572885036469,
0.025329209864139557,
-0.09050346910953522,
-0.0627690926194191,
0.23204120993614197,
-0.021214889362454414,
0.0074274735525250435,
-0.00343771418556571,
-0.1012653186917305,
-0.013329947367310524,
0.010882220230996609,
0.012681231833994389,
0.011765691451728344,
0.061379920691251755,
0.08753897249698639,
-0.01590774580836296,
-0.15340957045555115,
-0.02505103312432766,
-0.17654290795326233,
0.0798526182770729,
0.015536267310380936,
0.06568209081888199,
-0.13776014745235443,
0.07198268920183182,
0.07501434534788132,
-0.1284698098897934,
0.033431872725486755,
-0.05778477340936661,
0.15446624159812927,
0.05239490047097206,
-0.02743912860751152,
-0.04377005249261856,
0.11212525516748428,
0.1831047087907791,
-0.01738525740802288,
0.013667052611708641,
-0.04599211364984512,
0.09109404683113098,
-0.06216399371623993,
0.039388492703437805,
-0.0018652372527867556,
-0.0071367681957781315,
0.10670541971921921,
-0.004140304401516914,
0.11185407638549805,
-0.030594920739531517,
-0.12195856869220734,
-0.0398113913834095,
0.06412775814533234,
0.13082435727119446,
0.06006734073162079,
0.0524088516831398,
-0.03162975236773491,
0.037817832082509995,
0.14315098524093628,
-0.08044517040252686,
-0.025390205904841423,
0.009449162520468235,
0.007789377588778734,
0.03932521119713783,
0.05879050865769386,
0.03338489308953285,
-0.09335062652826309,
0.05926148593425751,
-0.07310560345649719,
-0.01533440314233303,
-0.02709474414587021,
-0.0443929061293602,
0.0809212252497673,
-0.049595341086387634,
0.0076732393354177475,
-0.17800749838352203,
-0.18952518701553345,
0.01603776030242443,
0.029637472704052925,
0.00753217376768589,
-0.06984777748584747,
0.0012145754881203175,
-0.05308912694454193,
0.04419226571917534,
-0.07639677822589874,
0.017668545246124268,
-0.06961151957511902,
0.08763372898101807,
-0.06233348697423935,
0.028307808563113213,
-0.1199735701084137,
0.03975794091820717,
-0.12954767048358917,
-0.0038758045993745327,
-0.004964265041053295,
-0.058941636234521866,
-0.06477726250886917,
0.16121168434619904,
-0.06220873445272446,
-0.012025131843984127,
-0.0009618110489100218,
0.0018791622715070844,
0.037232521921396255,
0.1595304012298584,
-0.09290454536676407,
-0.03988755866885185,
0.16199153661727905,
-0.13921880722045898,
-0.1964099258184433,
0.08354812115430832,
0.04002261906862259,
0.0016927720280364156,
0.07415692508220673,
0.13861382007598877,
0.010664846748113632,
-0.07756113260984421,
0.03042803891003132,
0.09541657567024231,
-0.08311934769153595,
-0.18093837797641754,
0.04605388268828392,
-0.046497639268636703,
-0.13099421560764313,
0.052999939769506454,
-0.017333997413516045,
0.07410400360822678,
-0.009837335906922817,
-0.07060884684324265,
-0.07935351878404617,
-0.054213747382164,
0.016567852348089218,
-0.0013053971342742443,
0.04496350511908531,
-0.07833930850028992,
-0.0288131944835186,
-0.06493567675352097,
0.03723523020744324,
0.0270552821457386,
0.03743399679660797,
-0.03614264354109764,
0.07506930083036423,
0.004239116329699755,
0.03238491714000702,
-0.12508240342140198,
-0.005450936034321785,
-0.0041582779958844185,
0.01772383041679859,
-0.029640620574355125,
-0.009944251738488674,
0.05226406082510948,
-0.00007482076034648344,
0.0051907990127801895,
-0.04419628530740738,
0.1465921849012375,
0.018570033833384514,
-0.06578578799962997,
-0.11711321026086807,
0.06193346902728081,
-0.03635507449507713,
0.031155938282608986,
-0.09504140168428421,
0.039959147572517395,
-0.014390412718057632,
0.06515497714281082,
-0.027897564694285393,
0.07810412347316742,
-0.01454210840165615,
-0.008332133293151855,
-0.0595632903277874,
0.0008122558356262743,
0.1254214197397232,
0.04707982391119003,
-0.05071915313601494,
0.18503354489803314,
-0.1429772675037384,
0.2770066261291504,
0.1773916333913803,
-0.1433814913034439,
0.0461188405752182,
-0.0333082489669323,
-0.0187285877764225,
-0.02488306351006031,
0.0544709675014019,
-0.0032531870529055595,
0.016526656225323677,
0.016969365999102592,
0.1656641811132431,
-0.08206184953451157,
-0.030089473351836205,
0.005028111860156059,
-0.06883808970451355,
-0.02573496662080288,
0.0949849784374237,
0.07132291048765182,
-0.1443655788898468,
0.17366915941238403,
0.2960661053657532,
-0.058160390704870224,
0.07443029433488846,
-0.06178484112024307,
-0.02504475601017475,
0.028496121987700462,
0.020515648648142815,
-0.0101770656183362,
-0.008019615896046162,
-0.05598295107483864,
0.011698886752128601,
0.08587952703237534,
0.012764119543135166,
0.058079805225133896,
-0.15715718269348145,
-0.057366326451301575,
-0.0206159595400095,
-0.021639414131641388,
-0.027505280449986458,
0.05364435538649559,
-0.010361201129853725,
0.13591445982456207,
-0.05596492066979408,
-0.10184138268232346,
0.0981479361653328,
0.013924271799623966,
-0.10395509749650955,
0.1856456696987152,
-0.15303155779838562,
-0.26540499925613403,
-0.17095737159252167,
-0.07547987997531891,
-0.06501179933547974,
0.0034769782796502113,
0.13294658064842224,
-0.07642094045877457,
-0.05242045968770981,
-0.06541388481855392,
-0.06606413424015045,
-0.0031993789598345757,
-0.017054758965969086,
0.010166593827307224,
0.04387703165411949,
0.018219079822301865,
-0.1338236927986145,
-0.03858768567442894,
-0.005116927903145552,
-0.04085835441946983,
0.09568538516759872,
-0.03351966291666031,
0.0880231112241745,
0.11336780339479446,
0.03246070444583893,
-0.002825505333021283,
-0.02495802566409111,
0.1054462268948555,
0.010895926505327225,
0.012236240319907665,
0.24108916521072388,
-0.015808412805199623,
0.1009107381105423,
0.1239810660481453,
0.007071287836879492,
-0.04495614394545555,
0.030873173847794533,
-0.04651090130209923,
-0.04616234451532364,
-0.2973572313785553,
-0.08006028085947037,
-0.05582105740904808,
0.07854881882667542,
0.04761720821261406,
0.08919593691825867,
0.1207725778222084,
0.08198537677526474,
-0.03544187173247337,
-0.01663973741233349,
0.014993085525929928,
0.08368787914514542,
0.209709033370018,
-0.00989491119980812,
0.1332745999097824,
-0.10942251980304718,
-0.03406546637415886,
0.09457623958587646,
0.03978831693530083,
0.15850204229354858,
0.0692625641822815,
0.06044664606451988,
0.053325094282627106,
0.16433411836624146,
0.06574246287345886,
0.14388534426689148,
0.00952491257339716,
-0.03155266121029854,
-0.03762771189212799,
-0.05012702941894531,
-0.05550045147538185,
0.0350559800863266,
-0.1532232016324997,
-0.035394273698329926,
-0.04527902230620384,
-0.041560057550668716,
0.056288376450538635,
0.1926073580980301,
0.024842286482453346,
-0.22258925437927246,
0.006491580978035927,
0.06318002194166183,
0.001223064144141972,
-0.06268869340419769,
0.10052809119224548,
-0.032753780484199524,
-0.061597004532814026,
0.07808887213468552,
-0.050913408398628235,
0.10707991570234299,
0.017913417890667915,
0.05652870237827301,
-0.06551699340343475,
-0.032188765704631805,
0.023626042529940605,
0.11072126030921936,
-0.2983395755290985,
0.22565382719039917,
-0.011642789468169212,
-0.0010522021912038326,
-0.05970592424273491,
0.015650400891900063,
0.05397580564022064,
0.1659599393606186,
0.11762144416570663,
0.00662192702293396,
-0.09530024975538254,
-0.03478824347257614,
-0.08132991194725037,
0.05371663719415665,
0.024680884554982185,
0.03790298476815224,
-0.023242877796292305,
-0.061640724539756775,
-0.009289255365729332,
0.017541587352752686,
0.03072718344628811,
-0.07461918890476227,
-0.10992448031902313,
0.053572025150060654,
0.10115215182304382,
0.03866821154952049,
-0.06726806610822678,
-0.04458087310194969,
-0.11037342995405197,
0.1401900351047516,
-0.12333638966083527,
-0.09199459105730057,
-0.07269701361656189,
-0.13727644085884094,
0.04788064584136009,
-0.07565773278474808,
0.056917715817689896,
-0.07611281424760818,
0.0004973824834451079,
-0.05973858758807182,
-0.17076492309570312,
0.09454388916492462,
-0.12568478286266327,
-0.08231528848409653,
-0.034662265330553055,
0.12164930999279022,
-0.08149021863937378,
-0.009676334448158741,
0.00602482445538044,
0.024597996845841408,
-0.11905194073915482,
-0.1062774658203125,
0.002411595545709133,
0.025510070845484734,
0.08880854398012161,
-0.04930229112505913,
-0.10804159939289093,
-0.14285366237163544,
-0.01764247752726078,
-0.05972637981176376,
0.2241443544626236,
0.24167703092098236,
-0.06406039744615555,
0.14059792459011078,
0.25132083892822266,
-0.08706364780664444,
-0.30020013451576233,
-0.1584082990884781,
-0.12488677352666855,
-0.07855626195669174,
-0.029347307980060577,
-0.11839532852172852,
0.08941283822059631,
0.11783773452043533,
-0.08036023378372192,
0.12508799135684967,
-0.24930189549922943,
-0.09625934809446335,
0.19676876068115234,
0.03474591672420502,
0.31107985973358154,
-0.18417730927467346,
-0.08398944139480591,
-0.08704078942537308,
-0.17170044779777527,
0.11925759166479111,
-0.116444893181324,
0.03945292532444,
-0.04139586538076401,
0.00855127815157175,
-0.0050521488301455975,
-0.067236989736557,
0.10467526316642761,
-0.04212580621242523,
0.058568403124809265,
-0.1294192373752594,
0.003040002193301916,
0.09182176738977432,
-0.027048634365200996,
0.09946732223033905,
-0.19419041275978088,
0.05983899533748627,
-0.057917606085538864,
-0.0063120038248598576,
-0.06813862919807434,
0.07404757291078568,
-0.004748261068016291,
-0.04495099559426308,
-0.010783703066408634,
-0.06254398077726364,
0.004545301664620638,
-0.01625017635524273,
0.2073964923620224,
0.03404822573065758,
0.12650509178638458,
0.18064016103744507,
0.08837881684303284,
-0.16373978555202484,
0.03366180881857872,
-0.07675807923078537,
-0.08800744265317917,
0.08500161021947861,
-0.1482143998146057,
0.027795402333140373,
0.10117913037538528,
-0.02318587154150009,
0.05054605379700661,
0.05400292947888374,
0.012948650866746902,
-0.04189600050449371,
0.11257496476173401,
-0.2033475786447525,
-0.00029560347320511937,
-0.007865291088819504,
0.1525741070508957,
0.02940916270017624,
0.10733726620674133,
0.14078065752983093,
-0.013038720935583115,
-0.027289070188999176,
0.010439787060022354,
0.04931100457906723,
-0.02275218814611435,
0.0773468017578125,
0.05250260606408119,
0.01626604050397873,
-0.10033336281776428,
0.12724925577640533,
0.01165718212723732,
-0.11782092601060867,
0.014381995424628258,
0.12561911344528198,
-0.14736302196979523,
-0.12456490844488144,
-0.0035550566390156746,
0.07141633331775665,
-0.12171437591314316,
-0.11849921196699142,
-0.05287877097725868,
-0.12000510096549988,
0.06385146826505661,
0.12144167721271515,
0.06802070885896683,
0.05011874809861183,
0.007771496195346117,
-0.06593966484069824,
0.0011163130402565002,
0.038089122623205185,
-0.03454504907131195,
0.030927766114473343,
-0.1145039051771164,
-0.013315835036337376,
0.015553233213722706,
0.056074853986501694,
-0.04152575880289078,
0.01581774465739727,
-0.08634404838085175,
0.01899341493844986,
-0.1632104068994522,
0.021993489935994148,
-0.08583896607160568,
-0.020384611561894417,
-0.02093673124909401,
-0.05166986212134361,
-0.03833719342947006,
0.023086201399564743,
-0.0921245589852333,
-0.01577877812087536,
-0.008339799009263515,
0.05325537547469139,
-0.12928684055805206,
-0.04218117520213127,
0.0527995228767395,
-0.010797220282256603,
0.10748026520013809,
0.09563803672790527,
-0.07053184509277344,
0.08268166333436966,
-0.20356377959251404,
-0.04878420755267143,
0.08252626657485962,
0.019292538985610008,
-0.004710495471954346,
-0.01489429734647274,
-0.010980707593262196,
0.12387644499540329,
-0.015966422855854034,
0.031200850382447243,
0.05591858550906181,
-0.12278576195240021,
-0.001687173848040402,
0.020004549995064735,
-0.11522500216960907,
-0.041076742112636566,
-0.09305302798748016,
0.09890114516019821,
-0.004190931096673012,
0.1896963119506836,
-0.057313550263643265,
0.02174895629286766,
-0.07828661054372787,
0.0361475795507431,
-0.015547970309853554,
-0.16312015056610107,
-0.1651298850774765,
-0.036696698516607285,
-0.024441177025437355,
-0.011945395730435848,
0.16459211707115173,
-0.025475718080997467,
-0.09293084591627121,
0.05824817344546318,
0.0800742357969284,
-0.0022851871326565742,
0.007456560619175434,
0.21386156976222992,
0.04339645802974701,
-0.021227862685918808,
-0.09970280528068542,
0.011614728718996048,
0.011147051118314266,
-0.06897836178541183,
0.0823555663228035,
0.11764072626829147,
0.0607801117002964,
0.09444615989923477,
0.020832067355513573,
-0.02122177556157112,
-0.07681076228618622,
-0.10603967308998108,
-0.03559192270040512,
0.08259903639554977,
0.008462346158921719,
0.17361707985401154,
0.21600595116615295,
0.015592136420309544,
-0.02568178065121174,
-0.06041625887155533,
-0.009821406565606594,
-0.14057813584804535,
-0.13242632150650024,
-0.06513290852308273,
-0.09136605262756348,
-0.015644323080778122,
-0.05181598290801048,
0.028541797772049904,
0.07721154391765594,
0.04148179665207863,
-0.059226129204034805,
0.028129886835813522,
0.059490617364645004,
-0.07221665978431702,
0.03631710633635521,
-0.0033267580438405275,
-0.010502194054424763,
-0.04028359428048134,
-0.03398386016488075,
-0.028324002400040627,
-0.03298918902873993,
-0.02270360477268696,
0.044037703424692154,
0.01540349330753088,
0.058387063443660736,
-0.0831180065870285,
-0.06085940822958946,
-0.03554333746433258,
0.06303480267524719,
0.009005988016724586,
0.14570993185043335,
0.020176487043499947,
0.025688521564006805,
0.08370456099510193,
0.16873370110988617,
-0.05326841026544571,
-0.1506349891424179,
-0.028045473620295525,
0.20076227188110352,
0.00588736217468977,
0.061965759843587875,
-0.0168610792607069,
0.023239903151988983,
-0.02221665345132351,
0.2595355808734894,
0.2531191110610962,
-0.04745157063007355,
0.010404892265796661,
-0.042400579899549484,
0.022741489112377167,
0.025153368711471558,
0.1062171459197998,
0.16600091755390167,
0.22256918251514435,
-0.076175257563591,
0.0064377086237072945,
-0.06213073432445526,
0.031243711709976196,
-0.16512612998485565,
0.08772258460521698,
-0.03478744253516197,
-0.07112880051136017,
-0.01708708517253399,
0.06545377522706985,
-0.07098741084337234,
0.09760314971208572,
-0.10228848457336426,
-0.09144195914268494,
-0.05643882602453232,
0.02340114116668701,
0.21020187437534332,
0.003858325770124793,
0.035548899322748184,
-0.028833072632551193,
-0.036076322197914124,
0.08274786174297333,
-0.03786623477935791,
-0.16103710234165192,
-0.030612897127866745,
0.03932826593518257,
-0.07542479783296585,
0.1630813330411911,
0.01602373644709587,
0.07378228008747101,
0.09668324142694473,
0.052929043769836426,
-0.13757172226905823,
0.1148805320262909,
0.01958734355866909,
-0.05838751792907715,
0.04546443372964859,
-0.10674314200878143,
0.014553091488778591,
-0.050201915204524994,
0.03856472671031952,
-0.039914507418870926,
0.04091503471136093,
0.0692252367734909,
-0.056165024638175964,
-0.022217778488993645,
0.05320385843515396,
-0.053246449679136276,
0.05512828007340431,
0.01233996357768774,
-0.03214094042778015,
-0.037248846143484116,
-0.06400701403617859,
-0.012299779802560806,
-0.001248402171768248,
-0.13088665902614594,
-0.006201620679348707,
-0.07934118062257767,
0.010728211142122746,
0.09303271025419235,
0.038752418011426926,
-0.1964239627122879,
-0.023836173117160797,
-0.11233478039503098,
-0.005699053406715393,
-0.16866019368171692,
-0.005045190919190645,
0.07700827717781067,
-0.00426083616912365,
0.0094827925786376,
-0.0448179729282856,
0.011351296678185463,
0.06704969704151154,
-0.05723948776721954,
-0.10319613665342331
] |
null | null | diffusers | ### cloth4-2-1 Dreambooth model trained by Charles2023 with [TheLastBen's fast-DreamBooth](https://colab.research.google.com/github/TheLastBen/fast-stable-diffusion/blob/main/fast-DreamBooth.ipynb) notebook
Test the concept via A1111 Colab [fast-Colab-A1111](https://colab.research.google.com/github/TheLastBen/fast-stable-diffusion/blob/main/fast_stable_diffusion_AUTOMATIC1111.ipynb)
Sample pictures of this concept:
| {"license": "creativeml-openrail-m", "tags": ["text-to-image", "stable-diffusion"]} | text-to-image | Charles2023/cloth4-2-1 | [
"diffusers",
"text-to-image",
"stable-diffusion",
"license:creativeml-openrail-m",
"endpoints_compatible",
"has_space",
"diffusers:StableDiffusionPipeline",
"region:us"
] | 2023-11-11T06:03:51+00:00 | [] | [] | TAGS
#diffusers #text-to-image #stable-diffusion #license-creativeml-openrail-m #endpoints_compatible #has_space #diffusers-StableDiffusionPipeline #region-us
| ### cloth4-2-1 Dreambooth model trained by Charles2023 with TheLastBen's fast-DreamBooth notebook
Test the concept via A1111 Colab fast-Colab-A1111
Sample pictures of this concept:
| [
"### cloth4-2-1 Dreambooth model trained by Charles2023 with TheLastBen's fast-DreamBooth notebook\n\n\nTest the concept via A1111 Colab fast-Colab-A1111\n\nSample pictures of this concept:"
] | [
"TAGS\n#diffusers #text-to-image #stable-diffusion #license-creativeml-openrail-m #endpoints_compatible #has_space #diffusers-StableDiffusionPipeline #region-us \n",
"### cloth4-2-1 Dreambooth model trained by Charles2023 with TheLastBen's fast-DreamBooth notebook\n\n\nTest the concept via A1111 Colab fast-Colab-A1111\n\nSample pictures of this concept:"
] | [
60,
51
] | [
"passage: TAGS\n#diffusers #text-to-image #stable-diffusion #license-creativeml-openrail-m #endpoints_compatible #has_space #diffusers-StableDiffusionPipeline #region-us \n### cloth4-2-1 Dreambooth model trained by Charles2023 with TheLastBen's fast-DreamBooth notebook\n\n\nTest the concept via A1111 Colab fast-Colab-A1111\n\nSample pictures of this concept:"
] | [
-0.0792737528681755,
0.05362113565206528,
-0.002141801407560706,
0.06553702801465988,
-0.031877122819423676,
-0.013863785192370415,
0.16905760765075684,
0.012189003638923168,
-0.03652443736791611,
0.06907343864440918,
0.1769045889377594,
-0.022234128788113594,
0.00452000368386507,
0.14243897795677185,
-0.010635709390044212,
-0.16380943357944489,
0.0242003183811903,
0.04262946918606758,
-0.03869645670056343,
0.07452034950256348,
0.07218355685472488,
-0.08039730787277222,
0.10614829510450363,
-0.03058161586523056,
-0.14717480540275574,
0.008020476438105106,
-0.07781044393777847,
-0.056774090975522995,
0.0652812123298645,
0.04710499569773674,
0.1184798926115036,
0.13738536834716797,
0.01870100572705269,
-0.05766858905553818,
0.043969620019197464,
-0.03760606050491333,
-0.02399483509361744,
0.046300776302814484,
0.003140884917229414,
0.039409786462783813,
0.08232278376817703,
0.0951818898320198,
-0.007230569142848253,
0.005641980562359095,
-0.07298383861780167,
0.048442333936691284,
0.001992414239794016,
0.14303775131702423,
0.01294633187353611,
0.006447148509323597,
0.008865032345056534,
0.05496545508503914,
-0.0015258144121617079,
0.09395570307970047,
0.19760090112686157,
-0.236455038189888,
-0.09450777620077133,
0.30005642771720886,
0.16487222909927368,
-0.07707156240940094,
-0.027708513662219048,
0.07735580205917358,
0.057185132056474686,
0.043786391615867615,
-0.025262702256441116,
-0.08868864923715591,
-0.04545466974377632,
-0.05014432966709137,
-0.08176592737436295,
0.009934430941939354,
0.20324045419692993,
0.01973949559032917,
-0.0404808409512043,
-0.04617111012339592,
-0.09086916595697403,
0.08683422952890396,
-0.0408996157348156,
-0.026523374021053314,
0.010170632973313332,
-0.00041307444917038083,
-0.06828287988901138,
-0.0886826366186142,
-0.1330277919769287,
-0.04071708396077156,
-0.06566507369279861,
0.13244913518428802,
-0.04971598833799362,
0.0607704259455204,
-0.06447337567806244,
0.14488554000854492,
0.010503686964511871,
-0.16103830933570862,
0.02746628411114216,
-0.1255159080028534,
0.0855599194765091,
0.017265286296606064,
-0.017809586599469185,
-0.052884187549352646,
0.07361546158790588,
0.010640391148626804,
0.1429850161075592,
-0.029323754832148552,
0.1463029980659485,
0.10831401497125626,
-0.006223122589290142,
-0.003615013090893626,
-0.03578567877411842,
-0.12391398102045059,
-0.04650196433067322,
-0.004747089464217424,
0.03201430290937424,
-0.03728676587343216,
-0.11862506717443466,
-0.01416757795959711,
-0.09134825319051743,
-0.023873593658208847,
0.06121843308210373,
-0.019127530977129936,
-0.05726165324449539,
-0.02473706379532814,
0.0921790599822998,
-0.010816171765327454,
-0.034252047538757324,
-0.06517577171325684,
-0.06066872179508209,
0.0035620788112282753,
0.14604626595973969,
-0.020562293007969856,
0.025173403322696686,
0.10272971540689468,
-0.08352567255496979,
-0.024703895673155785,
-0.0250552948564291,
-0.046662215143442154,
0.016804872080683708,
-0.1033356785774231,
0.04333990439772606,
-0.11131127178668976,
-0.17191560566425323,
-0.0082838274538517,
0.08528704196214676,
-0.07515862584114075,
-0.05684758350253105,
-0.01112397015094757,
-0.12500731647014618,
0.0064577688463032246,
0.027307054027915,
0.061286699026823044,
-0.011517487466335297,
0.032395731657743454,
-0.0006385478191077709,
0.15766684710979462,
-0.10966320335865021,
-0.014413859695196152,
-0.074419766664505,
0.04835456609725952,
-0.10596325993537903,
0.018087882548570633,
-0.08161495625972748,
0.11121198534965515,
-0.02047443389892578,
-0.060726348310709,
0.021693449467420578,
0.046442240476608276,
0.0019869524985551834,
0.18077699840068817,
-0.18441540002822876,
-0.012416912242770195,
0.1429980844259262,
-0.11796077340841293,
-0.17991232872009277,
0.027860062196850777,
0.01570109836757183,
0.18710488080978394,
-0.03023725189268589,
0.0572054423391819,
0.09248585999011993,
-0.2853052318096161,
-0.03036557324230671,
0.11539676040410995,
-0.08714345097541809,
-0.09897124022245407,
0.03643370792269707,
0.10156593471765518,
0.0852055475115776,
0.00845414586365223,
0.004453921690583229,
0.05490083992481232,
-0.0820731371641159,
-0.051019567996263504,
-0.052282411605119705,
-0.06137234345078468,
0.006886518094688654,
0.011008030734956264,
0.03800730034708977,
-0.06594770401716232,
-0.004524413961917162,
0.033624421805143356,
-0.001045416109263897,
0.03313247114419937,
-0.02772928774356842,
-0.06680964678525925,
0.06279216706752777,
-0.04701671004295349,
-0.04487638920545578,
-0.0489732027053833,
-0.08672946691513062,
-0.01648934930562973,
0.15724574029445648,
-0.017533045262098312,
0.2761203646659851,
0.06264135986566544,
0.05608709156513214,
-0.011213901452720165,
-0.015855975449085236,
0.049071554094552994,
0.019516363739967346,
-0.03430308774113655,
-0.14203450083732605,
0.044440992176532745,
-0.09382986277341843,
-0.036405421793460846,
-0.07072699815034866,
0.04195120185613632,
0.052020542323589325,
0.2091483175754547,
0.06438705325126648,
0.010171430185437202,
0.06863172352313995,
-0.006945636123418808,
-0.03537701442837715,
-0.07901552319526672,
0.05618269369006157,
0.03516373783349991,
-0.04630688205361366,
0.140746608376503,
-0.05040816590189934,
0.271381139755249,
0.10963045060634613,
-0.03441798314452171,
-0.08486933261156082,
0.019380085170269012,
-0.06401260942220688,
-0.002081073122099042,
-0.052409205585718155,
0.02959863841533661,
0.032048191875219345,
-0.02006666548550129,
0.11671976745128632,
-0.04663510248064995,
-0.0009051122469827533,
0.04067644476890564,
-0.0919717475771904,
-0.05288884416222572,
0.08414966613054276,
-0.05435130372643471,
-0.03920400142669678,
0.0766855925321579,
0.1970600187778473,
-0.03905146196484566,
0.17948868870735168,
0.006073814816772938,
0.00498454412445426,
-0.09000520408153534,
0.02627132087945938,
-0.04818902537226677,
0.23079778254032135,
-0.06687179207801819,
-0.02239038608968258,
0.02933761104941368,
-0.03741663321852684,
0.040935736149549484,
-0.11242800205945969,
-0.05250049754977226,
0.06290303170681,
0.0006741267279721797,
0.167551651597023,
0.08706662803888321,
-0.10764050483703613,
0.029270777478814125,
-0.04787801206111908,
-0.1763342171907425,
0.033490050584077835,
0.009090326726436615,
0.010592950507998466,
0.09783882647752762,
-0.008753380738198757,
-0.1859157532453537,
-0.1375734955072403,
-0.1009356677532196,
0.029909884557127953,
-0.02915024384856224,
0.04514212906360626,
0.02724720723927021,
-0.039767634123563766,
-0.09250834584236145,
0.025219380855560303,
-0.03083649091422558,
0.013190490193665028,
0.017009954899549484,
0.024828016757965088,
-0.06472139805555344,
-0.05312023311853409,
0.006299952976405621,
-0.02020193263888359,
0.14685694873332977,
0.1326933205127716,
-0.029930414631962776,
0.09321251511573792,
0.09368544071912766,
-0.028865359723567963,
0.003205216722562909,
0.015837643295526505,
0.2963501513004303,
-0.013606014661490917,
0.11399298906326294,
0.15893131494522095,
0.10040854662656784,
0.05718422308564186,
0.195449560880661,
0.052498336881399155,
-0.03897605836391449,
0.06951192021369934,
-0.09252197295427322,
-0.10168422758579254,
-0.06733883172273636,
-0.08304926753044128,
-0.019949035719037056,
0.07574659585952759,
-0.009802202694118023,
0.0449138879776001,
-0.01588350720703602,
0.1495102047920227,
0.0954788327217102,
0.035092368721961975,
-0.11756586283445358,
0.06822303682565689,
0.09512783586978912,
-0.11057882010936737,
0.05900578200817108,
-0.08358099311590195,
-0.08579970896244049,
0.09875467419624329,
0.02616308443248272,
0.04055396094918251,
-0.020634980872273445,
-0.06169119477272034,
0.07882250100374222,
0.08617044240236282,
0.12490581721067429,
0.09245739877223969,
0.019624581560492516,
-0.08147680014371872,
-0.03271880000829697,
-0.0959235206246376,
0.08195038139820099,
0.08947321772575378,
-0.029754236340522766,
-0.030021311715245247,
0.07322543859481812,
0.05272536352276802,
-0.045892760157585144,
0.02941538393497467,
0.19918061792850494,
-0.20391738414764404,
-0.04623178020119667,
0.011662526987493038,
0.05234711244702339,
-0.06886664032936096,
-0.00885307788848877,
0.3010568916797638,
-0.002015600446611643,
0.0010881195776164532,
-0.03757801651954651,
0.06741158664226532,
0.10027345269918442,
0.017943652346730232,
-0.07843886315822601,
-0.0217357836663723,
-0.015570898540318012,
0.01310583483427763,
-0.14414536952972412,
0.13244809210300446,
-0.012260026298463345,
0.02804652415215969,
0.01913164183497429,
-0.0050563206896185875,
0.030729318037629128,
0.1384105384349823,
0.15673942863941193,
-0.010512185283005238,
0.016419049352407455,
0.03773035109043121,
-0.12708348035812378,
-0.015541083179414272,
0.054903339594602585,
0.061693862080574036,
0.03211253136396408,
0.07224021106958389,
-0.015736164525151253,
0.0026120259426534176,
0.10787171125411987,
-0.12206798046827316,
-0.032529234886169434,
0.05199403315782547,
0.08952754735946655,
-0.039688725024461746,
-0.057949960231781006,
-0.07602319121360779,
0.014175338670611382,
0.1463351994752884,
-0.11098621785640717,
-0.07801753282546997,
-0.09479670971632004,
-0.08261536061763763,
0.07340996712446213,
-0.011417233385145664,
0.047750502824783325,
-0.096927709877491,
0.045366477221250534,
-0.06070007011294365,
-0.05293330177664757,
0.04086335748434067,
-0.13602310419082642,
-0.06962855905294418,
-0.1362876296043396,
0.0019973227754235268,
-0.07467737793922424,
0.03703416511416435,
0.002982302103191614,
-0.019859328866004944,
-0.13476376235485077,
-0.09181369841098785,
0.02711929939687252,
-0.038758374750614166,
-0.0629848912358284,
-0.04272985830903053,
0.028729107230901718,
0.014631891623139381,
0.055986590683460236,
0.005278935190290213,
0.07030581682920456,
0.22313088178634644,
-0.09853809326887131,
0.07494539022445679,
0.09559410810470581,
-0.03257092088460922,
-0.2910359799861908,
-0.12925435602664948,
-0.05984026938676834,
0.05096208676695824,
-0.025771712884306908,
-0.0711296945810318,
0.1730576604604721,
-0.020066075026988983,
-0.0474790520966053,
0.18081773817539215,
-0.2756224572658539,
-0.09923354536294937,
0.09690799564123154,
0.0925714522600174,
0.3390325903892517,
-0.11674727499485016,
-0.06504300236701965,
-0.01059190183877945,
-0.2836587131023407,
0.07572891563177109,
0.0158013217151165,
0.07879361510276794,
-0.09035512059926987,
0.054777901619672775,
-0.0174531452357769,
-0.05323987454175949,
0.1648612916469574,
-0.08067295700311661,
0.039998941123485565,
-0.11382368206977844,
0.003026545513421297,
0.16722552478313446,
-0.04392213374376297,
0.04618353396654129,
-0.08749786764383316,
0.08514826744794846,
-0.08606269210577011,
-0.010053963400423527,
-0.03477764129638672,
0.06190795451402664,
-0.09138248860836029,
-0.10392016172409058,
-0.08655897527933121,
0.026248620823025703,
-0.03723318129777908,
-0.0123495077714324,
-0.09907709062099457,
-0.037395771592855453,
-0.04894654080271721,
0.2597983181476593,
-0.03688116744160652,
-0.10665971040725708,
-0.07051604986190796,
0.0031512058340013027,
-0.06656911969184875,
0.08160168677568436,
-0.14915305376052856,
-0.08626729995012283,
0.165994331240654,
0.032381244003772736,
0.04816088825464249,
0.043643202632665634,
-0.03677951171994209,
0.016964497044682503,
0.12120259553194046,
-0.15030977129936218,
-0.04173161834478378,
-0.05348516255617142,
0.11539867520332336,
-0.018473301082849503,
-0.04022686928510666,
0.13383714854717255,
-0.11343004554510117,
0.04945402219891548,
-0.03461437299847603,
-0.0482499785721302,
-0.03409402072429657,
0.09008388221263885,
0.041764140129089355,
0.07502642273902893,
-0.037268880754709244,
0.0309574156999588,
-0.05138368159532547,
-0.1194770410656929,
-0.10431627929210663,
0.06914371997117996,
-0.07807237654924393,
-0.07143951207399368,
0.03873855620622635,
0.163981631398201,
-0.18641340732574463,
0.006745502352714539,
-0.10393085330724716,
-0.12005583196878433,
0.057750899344682693,
0.19535735249519348,
0.08269157260656357,
0.05152873322367668,
0.008534587919712067,
-0.06569187343120575,
0.04688306525349617,
0.06972862780094147,
0.05719416216015816,
0.08606810122728348,
-0.17385540902614594,
-0.00040044504567049444,
-0.03469768166542053,
0.0585746094584465,
-0.10395834594964981,
-0.008216957561671734,
-0.08762205392122269,
-0.004394115414470434,
-0.09173185378313065,
0.09833977371454239,
-0.06707100570201874,
-0.07226179540157318,
-0.024041371420025826,
-0.01589900255203247,
-0.03679961338639259,
-0.0008558264235034585,
-0.0642615556716919,
0.03413638472557068,
-0.002329574665054679,
0.002896795282140374,
-0.032376471906900406,
-0.03485240414738655,
0.051501478999853134,
-0.05311312526464462,
0.04828634858131409,
-0.06474332511425018,
-0.11275479197502136,
-0.07124771922826767,
-0.13737574219703674,
-0.023091770708560944,
0.09110692143440247,
-0.009868409484624863,
0.039413757622241974,
0.07521934807300568,
-0.05731343477964401,
-0.045595716685056686,
0.0442204624414444,
0.015256043523550034,
0.03909578174352646,
-0.08625420928001404,
-0.026069531217217445,
-0.02979985438287258,
-0.021899932995438576,
-0.09416024386882782,
0.012341829016804695,
0.16134832799434662,
0.08605194091796875,
0.10736086219549179,
-0.0886402279138565,
0.046406179666519165,
-0.04210226610302925,
0.002939721569418907,
0.047155458480119705,
-0.07060614973306656,
0.09278474748134613,
-0.019560011103749275,
-0.030308179557323456,
0.004577802028506994,
0.1605585664510727,
0.021877381950616837,
-0.23327960073947906,
0.010404706001281738,
-0.05989087000489235,
-0.023690620437264442,
0.02180834673345089,
0.21447554230690002,
0.03570743650197983,
0.027381760999560356,
-0.12918376922607422,
0.0770401582121849,
0.07862787693738937,
0.11394935101270676,
0.03989652916789055,
0.12117575854063034,
0.050119079649448395,
0.16571995615959167,
0.005651290528476238,
0.04540883004665375,
-0.017936930060386658,
0.04355554282665253,
-0.04385282099246979,
0.15573003888130188,
-0.08417508006095886,
-0.06853576749563217,
0.08589327335357666,
-0.0020703058689832687,
-0.013888807035982609,
0.027469869703054428,
-0.04929127171635628,
-0.0360492505133152,
-0.015043086372315884,
-0.056610047817230225,
-0.04792272672057152,
0.009884768165647984,
-0.05206234008073807,
-0.0029078612569719553,
0.080897256731987,
0.03911479562520981,
0.015465015545487404,
0.08274801820516586,
-0.07641246169805527,
-0.008177464827895164,
0.09688135981559753,
-0.013125412166118622,
-0.03717435523867607,
-0.0638480931520462,
0.061256539076566696,
-0.06489238888025284,
0.09963425248861313,
-0.07492613792419434,
0.012582842260599136,
0.018929773941636086,
-0.024846641346812248,
0.018694860860705376,
-0.05649009719491005,
-0.030390016734600067,
0.005281644873321056,
0.02767406962811947,
0.03975876420736313,
0.000779084162786603,
0.028874332085251808,
-0.013115844689309597,
0.15471845865249634,
-0.07521466165781021,
-0.18053525686264038,
-0.08701395243406296,
-0.005308505613356829,
-0.1309896856546402,
0.06911341845989227,
-0.04054366424679756,
-0.022969119250774384,
-0.07395510375499725,
0.1623624861240387,
0.17508339881896973,
-0.11718878895044327,
0.009974829852581024,
0.02967659756541252,
-0.002110246801748872,
-0.0400008000433445,
0.003169461851939559,
-0.007452310528606176,
0.204223170876503,
-0.10996688157320023,
-0.08720604330301285,
-0.09392807632684708,
-0.09334393590688705,
-0.03802065551280975,
-0.1347232460975647,
0.0588422454893589,
-0.019530314952135086,
-0.11157026886940002,
0.05609888955950737,
-0.18815863132476807,
-0.044677991420030594,
0.2625442445278168,
-0.11462321132421494,
-0.05227678641676903,
-0.017257165163755417,
0.1330428272485733,
0.048123687505722046,
0.07543298602104187,
-0.09725160151720047,
-0.00565324816852808,
0.04187760129570961,
-0.06368190050125122,
-0.15066738426685333,
0.09668422490358353,
0.015696512535214424,
-0.2384619116783142,
0.12107488512992859,
-0.004294331185519695,
0.036134928464889526,
0.08353117853403091,
-0.015600286424160004,
-0.11849819123744965,
0.05456967651844025,
0.035845234990119934,
-0.10043319314718246,
-0.04692135378718376,
0.09318596869707108,
0.01764741539955139,
0.03332684934139252,
0.011521939188241959,
-0.1646987646818161,
-0.030369596555829048,
0.18482427299022675,
0.0042280410416424274,
-0.11865925788879395,
0.024621719494462013,
-0.004381129052489996,
0.07136911153793335,
0.06269926577806473,
-0.04850005730986595,
-0.024975279346108437,
0.01677497662603855,
0.02503744140267372,
0.015838000923395157,
-0.0742354467511177,
0.009825599379837513,
-0.00333521980792284,
0.017095046117901802,
-0.04317048192024231,
-0.02327856421470642,
-0.250364750623703,
-0.06170293688774109,
-0.11178161948919296,
0.041963666677474976,
0.014492793008685112,
0.07958842068910599,
0.21827633678913116,
0.05933522805571556,
0.024145524948835373,
-0.022780273109674454,
-0.027144338935613632,
0.0050848182290792465,
-0.01593232899904251,
-0.12380780279636383
] |
null | null | transformers |
<!-- This model card has been generated automatically according to the information Keras had access to. You should
probably proofread and complete it, then remove this comment. -->
# Rishi-19/Profanity_Checker_CustomData
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:
- Train Loss: 0.0691
- Validation Loss: 0.1529
- Train Accuracy: 0.9586
- Epoch: 2
## Model description
More information needed
## Intended uses & limitations
More information needed
## Training and evaluation data
More information needed
## Training procedure
### Training hyperparameters
The following hyperparameters were used during training:
- optimizer: {'name': 'Adam', 'weight_decay': None, 'clipnorm': None, 'global_clipnorm': None, 'clipvalue': None, 'use_ema': False, 'ema_momentum': 0.99, 'ema_overwrite_frequency': None, 'jit_compile': True, 'is_legacy_optimizer': False, 'learning_rate': {'module': 'keras.optimizers.schedules', 'class_name': 'PolynomialDecay', 'config': {'initial_learning_rate': 2e-05, 'decay_steps': 3145, 'end_learning_rate': 0.0, 'power': 1.0, 'cycle': False, 'name': None}, 'registered_name': None}, 'beta_1': 0.9, 'beta_2': 0.999, 'epsilon': 1e-08, 'amsgrad': False}
- training_precision: float32
### Training results
| Train Loss | Validation Loss | Train Accuracy | Epoch |
|:----------:|:---------------:|:--------------:|:-----:|
| 0.2120 | 0.1257 | 0.9603 | 0 |
| 0.1097 | 0.1182 | 0.9603 | 1 |
| 0.0691 | 0.1529 | 0.9586 | 2 |
### Framework versions
- Transformers 4.35.0
- TensorFlow 2.14.0
- Datasets 2.14.6
- Tokenizers 0.14.1
| {"license": "apache-2.0", "tags": ["generated_from_keras_callback"], "base_model": "distilbert-base-uncased", "model-index": [{"name": "Rishi-19/Profanity_Checker_CustomData", "results": []}]} | text-classification | Rishi-19/Profanity_Checker_CustomData | [
"transformers",
"tf",
"distilbert",
"text-classification",
"generated_from_keras_callback",
"base_model:distilbert-base-uncased",
"license:apache-2.0",
"autotrain_compatible",
"endpoints_compatible",
"has_space",
"region:us"
] | 2023-11-11T06:07:34+00:00 | [] | [] | TAGS
#transformers #tf #distilbert #text-classification #generated_from_keras_callback #base_model-distilbert-base-uncased #license-apache-2.0 #autotrain_compatible #endpoints_compatible #has_space #region-us
| Rishi-19/Profanity\_Checker\_CustomData
=======================================
This model is a fine-tuned version of distilbert-base-uncased on an unknown dataset.
It achieves the following results on the evaluation set:
* Train Loss: 0.0691
* Validation Loss: 0.1529
* Train Accuracy: 0.9586
* Epoch: 2
Model description
-----------------
More information needed
Intended uses & limitations
---------------------------
More information needed
Training and evaluation data
----------------------------
More information needed
Training procedure
------------------
### Training hyperparameters
The following hyperparameters were used during training:
* optimizer: {'name': 'Adam', 'weight\_decay': None, 'clipnorm': None, 'global\_clipnorm': None, 'clipvalue': None, 'use\_ema': False, 'ema\_momentum': 0.99, 'ema\_overwrite\_frequency': None, 'jit\_compile': True, 'is\_legacy\_optimizer': False, 'learning\_rate': {'module': 'keras.optimizers.schedules', 'class\_name': 'PolynomialDecay', 'config': {'initial\_learning\_rate': 2e-05, 'decay\_steps': 3145, 'end\_learning\_rate': 0.0, 'power': 1.0, 'cycle': False, 'name': None}, 'registered\_name': None}, 'beta\_1': 0.9, 'beta\_2': 0.999, 'epsilon': 1e-08, 'amsgrad': False}
* training\_precision: float32
### Training results
### Framework versions
* Transformers 4.35.0
* TensorFlow 2.14.0
* Datasets 2.14.6
* Tokenizers 0.14.1
| [
"### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* optimizer: {'name': 'Adam', 'weight\\_decay': None, 'clipnorm': None, 'global\\_clipnorm': None, 'clipvalue': None, 'use\\_ema': False, 'ema\\_momentum': 0.99, 'ema\\_overwrite\\_frequency': None, 'jit\\_compile': True, 'is\\_legacy\\_optimizer': False, 'learning\\_rate': {'module': 'keras.optimizers.schedules', 'class\\_name': 'PolynomialDecay', 'config': {'initial\\_learning\\_rate': 2e-05, 'decay\\_steps': 3145, 'end\\_learning\\_rate': 0.0, 'power': 1.0, 'cycle': False, 'name': None}, 'registered\\_name': None}, 'beta\\_1': 0.9, 'beta\\_2': 0.999, 'epsilon': 1e-08, 'amsgrad': False}\n* training\\_precision: float32",
"### Training results",
"### Framework versions\n\n\n* Transformers 4.35.0\n* TensorFlow 2.14.0\n* Datasets 2.14.6\n* Tokenizers 0.14.1"
] | [
"TAGS\n#transformers #tf #distilbert #text-classification #generated_from_keras_callback #base_model-distilbert-base-uncased #license-apache-2.0 #autotrain_compatible #endpoints_compatible #has_space #region-us \n",
"### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* optimizer: {'name': 'Adam', 'weight\\_decay': None, 'clipnorm': None, 'global\\_clipnorm': None, 'clipvalue': None, 'use\\_ema': False, 'ema\\_momentum': 0.99, 'ema\\_overwrite\\_frequency': None, 'jit\\_compile': True, 'is\\_legacy\\_optimizer': False, 'learning\\_rate': {'module': 'keras.optimizers.schedules', 'class\\_name': 'PolynomialDecay', 'config': {'initial\\_learning\\_rate': 2e-05, 'decay\\_steps': 3145, 'end\\_learning\\_rate': 0.0, 'power': 1.0, 'cycle': False, 'name': None}, 'registered\\_name': None}, 'beta\\_1': 0.9, 'beta\\_2': 0.999, 'epsilon': 1e-08, 'amsgrad': False}\n* training\\_precision: float32",
"### Training results",
"### Framework versions\n\n\n* Transformers 4.35.0\n* TensorFlow 2.14.0\n* Datasets 2.14.6\n* Tokenizers 0.14.1"
] | [
74,
304,
4,
31
] | [
"passage: TAGS\n#transformers #tf #distilbert #text-classification #generated_from_keras_callback #base_model-distilbert-base-uncased #license-apache-2.0 #autotrain_compatible #endpoints_compatible #has_space #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* optimizer: {'name': 'Adam', 'weight\\_decay': None, 'clipnorm': None, 'global\\_clipnorm': None, 'clipvalue': None, 'use\\_ema': False, 'ema\\_momentum': 0.99, 'ema\\_overwrite\\_frequency': None, 'jit\\_compile': True, 'is\\_legacy\\_optimizer': False, 'learning\\_rate': {'module': 'keras.optimizers.schedules', 'class\\_name': 'PolynomialDecay', 'config': {'initial\\_learning\\_rate': 2e-05, 'decay\\_steps': 3145, 'end\\_learning\\_rate': 0.0, 'power': 1.0, 'cycle': False, 'name': None}, 'registered\\_name': None}, 'beta\\_1': 0.9, 'beta\\_2': 0.999, 'epsilon': 1e-08, 'amsgrad': False}\n* training\\_precision: float32### Training results### Framework versions\n\n\n* Transformers 4.35.0\n* TensorFlow 2.14.0\n* Datasets 2.14.6\n* Tokenizers 0.14.1"
] | [
-0.06734352558851242,
0.0759701281785965,
-0.008413244970142841,
0.07736193388700485,
0.11904199421405792,
0.04500634968280792,
0.07647772878408432,
0.1353422850370407,
-0.05810878798365593,
0.15609750151634216,
0.09944351017475128,
0.1670970469713211,
0.03610122576355934,
0.1456560641527176,
-0.07691668719053268,
-0.18370136618614197,
0.05244281142950058,
-0.04226956516504288,
-0.0488068126142025,
0.05982625111937523,
0.08000442385673523,
-0.056290678679943085,
0.07472232729196548,
-0.027787964791059494,
-0.06296060234308243,
-0.0023894754704087973,
0.013982871547341347,
-0.05805807560682297,
0.0692308321595192,
0.07416369765996933,
0.04750677943229675,
0.01749480329453945,
-0.00152574572712183,
-0.2154363989830017,
0.0008582865702919662,
0.11236099898815155,
0.003907724283635616,
0.06639999896287918,
0.04185142368078232,
-0.01787044294178486,
0.101599782705307,
-0.10852362960577011,
0.06579860299825668,
0.029738688841462135,
-0.14953111112117767,
-0.21394558250904083,
-0.0749388188123703,
0.015548903495073318,
0.10125291347503662,
0.05154309421777725,
-0.0111346784979105,
0.13862808048725128,
-0.05176151543855667,
0.0873434841632843,
0.1574423909187317,
-0.2682536244392395,
-0.047662924975156784,
0.017508458346128464,
0.03422023728489876,
0.0006418278208002448,
-0.07954145967960358,
-0.021215012297034264,
0.001734918332658708,
0.017644638195633888,
0.03951079770922661,
-0.02069670893251896,
0.0005397595814429224,
-0.06355766206979752,
-0.07202715426683426,
-0.060269586741924286,
0.1638164073228836,
0.06188981235027313,
-0.03951998054981232,
-0.08883170783519745,
-0.059546276926994324,
-0.1354321837425232,
-0.0022010705433785915,
-0.031045950949192047,
0.012664100155234337,
-0.003374357707798481,
-0.0055794622749090195,
-0.005404551513493061,
-0.027130059897899628,
-0.025650033727288246,
0.0319804809987545,
0.10088140517473221,
0.04900425672531128,
-0.005911531858146191,
0.02959347888827324,
0.07169221341609955,
-0.022032717242836952,
-0.14478066563606262,
-0.04256065562367439,
0.0019837634172290564,
-0.05788091942667961,
-0.027966653928160667,
-0.03463739901781082,
0.04654622822999954,
0.09173134714365005,
0.23212456703186035,
-0.06483759731054306,
0.13759523630142212,
0.005410101730376482,
0.027879176661372185,
-0.06943105906248093,
0.08409127593040466,
0.015243109315633774,
-0.062040526419878006,
-0.015233865939080715,
0.062302082777023315,
0.025801606476306915,
-0.052599094808101654,
-0.02666473016142845,
0.04637353867292404,
0.07467051595449448,
0.03771519660949707,
-0.013064919970929623,
0.08375635743141174,
-0.08248350769281387,
-0.015495559200644493,
0.038889266550540924,
-0.13426604866981506,
0.057808566838502884,
0.04692510887980461,
-0.0612378790974617,
0.03351708874106407,
0.05644455924630165,
-0.03275441378355026,
-0.11352603137493134,
0.04669414833188057,
-0.05937722325325012,
-0.033077843487262726,
-0.07699570804834366,
-0.09096625447273254,
0.02105138450860977,
-0.07877518981695175,
-0.01122290175408125,
-0.07269354909658432,
-0.11530182510614395,
-0.06372663378715515,
0.09967567026615143,
-0.05755956098437309,
-0.06411799043416977,
-0.08384112268686295,
-0.1518438756465912,
0.07403941452503204,
-0.014833517372608185,
0.06074468791484833,
-0.07054726779460907,
0.04578348249197006,
-0.010664521716535091,
0.019094878807663918,
0.03131647780537605,
0.02912740595638752,
-0.062134239822626114,
0.06310535222291946,
-0.20538322627544403,
0.10881706327199936,
-0.08356139063835144,
0.030275648459792137,
-0.14605548977851868,
-0.0580577477812767,
0.04464391991496086,
0.011315444484353065,
0.10135621577501297,
0.11090190708637238,
-0.13313508033752441,
-0.049257200211286545,
0.1175701841711998,
-0.0909634530544281,
-0.09038717299699783,
0.08256453275680542,
-0.025609569624066353,
-0.01609354093670845,
0.060471683740615845,
0.11459589004516602,
0.06779738515615463,
-0.07570844888687134,
-0.004515292122960091,
-0.056209564208984375,
0.040099188685417175,
0.07774274796247482,
0.028187772259116173,
-0.07775276154279709,
-0.022201882675290108,
0.01749623566865921,
-0.0182754285633564,
-0.0136643685400486,
-0.04700890928506851,
-0.03946790471673012,
-0.03756238892674446,
-0.03917762264609337,
0.02712082676589489,
0.029292093589901924,
-0.0008445053244940937,
-0.09164571762084961,
-0.17894122004508972,
0.055350903421640396,
0.04641550034284592,
-0.08516154438257217,
0.028675366193056107,
-0.06234375387430191,
0.0940399318933487,
0.0671846866607666,
0.016723720356822014,
-0.16199125349521637,
-0.09808635711669922,
0.03020416386425495,
-0.03065073862671852,
0.013492298312485218,
-0.06267041712999344,
0.03154902905225754,
0.049468450248241425,
-0.03416106104850769,
-0.03953637555241585,
-0.016683222725987434,
0.012398632243275642,
-0.04153290390968323,
-0.2191377878189087,
-0.026884768158197403,
-0.011043136939406395,
0.0790751501917839,
-0.2597081959247589,
0.009135279804468155,
0.048556432127952576,
0.14967171847820282,
0.03170027583837509,
-0.04011793062090874,
-0.03220943361520767,
0.05088989436626434,
-0.040828559547662735,
-0.07765555381774902,
0.0291635412722826,
0.026575837284326553,
-0.08938511461019516,
-0.043349288403987885,
-0.18682287633419037,
0.07705367356538773,
0.10173749923706055,
-0.07601547241210938,
-0.1301853209733963,
0.015347672626376152,
-0.01175002846866846,
-0.031145859509706497,
-0.011701605282723904,
0.01888521946966648,
0.17270654439926147,
0.020919984206557274,
0.12449843436479568,
-0.04657954350113869,
-0.05144995078444481,
0.007396311964839697,
-0.022338703274726868,
-0.011353975161910057,
0.1326841115951538,
0.015385479666292667,
-0.11256254464387894,
0.09798525273799896,
0.10937527567148209,
-0.0818660706281662,
0.11989036202430725,
-0.05245886743068695,
-0.050608981400728226,
-0.07863039523363113,
0.08344056457281113,
0.048324450850486755,
0.04190671816468239,
-0.1051056832075119,
0.02328605204820633,
0.00734567129984498,
0.027211669832468033,
-0.018683597445487976,
-0.10407110303640366,
0.04935004934668541,
-0.0006186695536598563,
-0.055709369480609894,
0.07980269193649292,
-0.005717643070966005,
0.009585701860487461,
0.0872264876961708,
0.01819572038948536,
-0.03583862632513046,
0.03276349604129791,
-0.015775276347994804,
-0.07892564684152603,
0.2134130299091339,
-0.13560587167739868,
-0.10323619842529297,
-0.08103310316801071,
-0.0034001546446233988,
-0.0635756328701973,
-0.02118133381009102,
0.03320574387907982,
-0.04421652480959892,
-0.0734434574842453,
-0.07808366417884827,
-0.0018694722093641758,
0.01607111468911171,
-0.004240972921252251,
-0.0030986762139946222,
0.01076572947204113,
0.1310945749282837,
-0.11101028323173523,
-0.037006933242082596,
0.006266241893172264,
-0.07970069348812103,
-0.0073203775100409985,
0.05265676975250244,
0.010164552368223667,
0.10322460532188416,
0.012708703055977821,
0.016950039193034172,
-0.018165521323680878,
0.2295314073562622,
-0.069295734167099,
0.032852936536073685,
0.0915578082203865,
-0.04184263199567795,
0.08141589909791946,
0.14831583201885223,
0.04342946037650108,
-0.10281793028116226,
0.009131787344813347,
0.08787591755390167,
0.006638687569648027,
-0.23240868747234344,
-0.03898205980658531,
-0.045313261449337006,
-0.060696687549352646,
0.09737175703048706,
0.06121740862727165,
0.06595101207494736,
0.020802509039640427,
-0.02471872791647911,
0.05452151969075203,
0.07141692191362381,
0.09087184071540833,
0.14883044362068176,
0.07826782763004303,
0.09137973934412003,
-0.019854657351970673,
-0.0014831459848210216,
0.024499254301190376,
0.005813960917294025,
0.2128165066242218,
0.003874244401231408,
0.1081794798374176,
0.09119530767202377,
0.07353430986404419,
-0.020493799820542336,
0.00023256726854015142,
-0.001101451925933361,
0.036813050508499146,
0.01695672981441021,
-0.057327527552843094,
-0.03382747247815132,
0.025714602321386337,
0.02237844280898571,
0.04788399487733841,
-0.09984458237886429,
0.030874652788043022,
0.094219870865345,
0.21828635036945343,
0.11958195269107819,
-0.2934456765651703,
-0.07417015731334686,
0.010401284322142601,
-0.04455186799168587,
-0.061897341161966324,
0.010399183258414268,
0.0733649954199791,
-0.07373711466789246,
0.10339696705341339,
-0.034046560525894165,
0.0666702389717102,
-0.09740544855594635,
0.035560570657253265,
0.07843416184186935,
0.09949588775634766,
0.018504882231354713,
0.019648049026727676,
-0.2774871587753296,
0.23948459327220917,
0.005374809727072716,
0.11481872946023941,
-0.03778601810336113,
0.07929207384586334,
0.04407203570008278,
-0.03515271842479706,
0.08746089786291122,
-0.018798744305968285,
-0.14301173388957977,
-0.16130076348781586,
-0.051857251673936844,
0.003624045755714178,
0.10626360774040222,
-0.05168505758047104,
0.08984865993261337,
-0.03891067951917648,
-0.014864739961922169,
0.01974022574722767,
-0.030743954703211784,
-0.18141183257102966,
-0.10105768591165543,
0.04830394312739372,
-0.010887510143220425,
-0.0036139634903520346,
-0.04641546681523323,
-0.03669986128807068,
-0.04606121405959129,
0.21623830497264862,
-0.1637730747461319,
-0.06856469810009003,
-0.1288342922925949,
0.04166780784726143,
0.10308672487735748,
-0.08731616288423538,
0.06167800351977348,
-0.00006219317583600059,
0.07812496274709702,
0.06018674001097679,
-0.06089899316430092,
0.12745387852191925,
-0.02787031978368759,
-0.19213436543941498,
-0.0596715547144413,
0.10973233729600906,
0.03448512405157089,
0.015492693521082401,
0.002517181681469083,
0.07294519990682602,
0.03899319842457771,
-0.10834641009569168,
0.049694377928972244,
0.00910146627575159,
0.03801329433917999,
0.04790015146136284,
-0.04139794781804085,
-0.033158428966999054,
-0.042184457182884216,
0.020054662600159645,
0.07649178802967072,
0.29538172483444214,
-0.07732809334993362,
0.02962813712656498,
0.05048578977584839,
-0.11165814101696014,
-0.17217454314231873,
-0.014751208946108818,
0.1008952334523201,
-0.013006482273340225,
-0.04226541146636009,
-0.1826537698507309,
0.08368196338415146,
0.12915974855422974,
0.002769521437585354,
0.06964671611785889,
-0.265877902507782,
-0.14592252671718597,
0.08533163368701935,
0.08923108130693436,
-0.02925003319978714,
-0.18179351091384888,
-0.0746559202671051,
-0.03369630128145218,
-0.042092666029930115,
0.143347829580307,
-0.06055251881480217,
0.08560853451490402,
0.03427615761756897,
-0.028475189581513405,
0.024203842505812645,
-0.015500722452998161,
0.15133386850357056,
0.007347052916884422,
0.06213345378637314,
-0.07408835738897324,
-0.0006697959033772349,
0.05898933857679367,
-0.11743470281362534,
0.045674726366996765,
-0.08860491961240768,
0.02419978752732277,
-0.12205430865287781,
-0.003675620537251234,
-0.053633321076631546,
0.07324762642383575,
-0.07005244493484497,
-0.0027143859770148993,
-0.01664642058312893,
0.037295788526535034,
0.10227269679307938,
0.010335507802665234,
0.14089122414588928,
-0.007533407770097256,
0.17636296153068542,
0.133646622300148,
0.08715081959962845,
-0.010302798822522163,
-0.12180482596158981,
0.0622657872736454,
-0.007450450677424669,
0.056547436863183975,
-0.1436806321144104,
0.059951841831207275,
0.13424627482891083,
-0.004155226983129978,
0.1370464414358139,
0.058643486350774765,
-0.05346943810582161,
0.01878703571856022,
0.06621180474758148,
-0.1184215322136879,
-0.05924343317747116,
0.0065981061197817326,
-0.008557496592402458,
-0.05712967738509178,
-0.007796048652380705,
0.15758037567138672,
-0.019757427275180817,
0.023456811904907227,
0.019165121018886566,
0.05177057161927223,
-0.04456706345081329,
0.1371910125017166,
-0.003710115095600486,
0.08701743930578232,
-0.0793517604470253,
0.13776475191116333,
0.10189975798130035,
-0.12791545689105988,
0.11617684364318848,
0.10422578454017639,
-0.05713796988129616,
-0.04828741401433945,
0.023573294281959534,
0.12052064388990402,
0.04715731367468834,
-0.03704621270298958,
-0.0802948847413063,
-0.12927940487861633,
0.0944708064198494,
0.11498484760522842,
0.02670285850763321,
0.04255465790629387,
-0.01155922468751669,
-0.0046479287557303905,
-0.07722878456115723,
0.09079557657241821,
0.07895244657993317,
0.05457305908203125,
-0.11696263402700424,
0.1035739928483963,
0.027809791266918182,
-0.03657901659607887,
0.013464013114571571,
0.0009195795864798129,
-0.19852052628993988,
-0.01539788767695427,
-0.05756360664963722,
0.04962439462542534,
-0.009740590117871761,
0.009410995058715343,
0.03516901656985283,
-0.026399090886116028,
-0.05722108483314514,
0.030865758657455444,
-0.08496005833148956,
-0.07893191277980804,
0.03233802691102028,
0.10577277094125748,
-0.1278778612613678,
-0.053483057767152786,
0.01409465167671442,
-0.14317038655281067,
0.06708399951457977,
0.005206363741308451,
-0.006108896341174841,
0.015348725952208042,
-0.0998392328619957,
-0.004040486179292202,
0.02684572897851467,
0.0077310665510594845,
0.025182273238897324,
-0.16517846286296844,
0.03295602276921272,
-0.03457682207226753,
0.023377489298582077,
-0.002419048920273781,
0.06451725959777832,
-0.11147024482488632,
-0.02957993559539318,
-0.021606864407658577,
-0.05359296128153801,
-0.044672634452581406,
0.03441399335861206,
0.12928156554698944,
-0.044194258749485016,
0.16249625384807587,
-0.08779148012399673,
0.035976994782686234,
-0.18109264969825745,
-0.024165861308574677,
0.049788035452365875,
-0.07563694566488266,
-0.06697697192430496,
-0.01215543132275343,
0.110918328166008,
-0.09531255811452866,
0.057869382202625275,
-0.04574238508939743,
0.07789752632379532,
0.036459360271692276,
-0.08094654977321625,
-0.1061699166893959,
0.0939515233039856,
0.1309138983488083,
0.05776747688651085,
-0.002927538240328431,
0.02501028962433338,
-0.04417508468031883,
0.059931542724370956,
0.05979951098561287,
0.159827321767807,
0.11048764735460281,
0.0196234118193388,
0.08742599189281464,
0.05264506861567497,
-0.11889467388391495,
-0.1277547925710678,
0.15818668901920319,
-0.047716785222291946,
0.1906992644071579,
-0.029855921864509583,
0.05030728876590729,
0.045880645513534546,
-0.17091266810894012,
0.03897761180996895,
-0.05575372278690338,
-0.10300133377313614,
-0.10407845675945282,
-0.14881446957588196,
-0.09119012951850891,
-0.1024794802069664,
0.0030261215288192034,
-0.12388672679662704,
0.03538299351930618,
0.09207626432180405,
0.021984312683343887,
0.02366744354367256,
0.058573558926582336,
-0.026583576574921608,
0.0032529113814234734,
0.10037270188331604,
0.0167543888092041,
-0.007893512025475502,
-0.04917203262448311,
-0.07507140189409256,
0.008073441684246063,
0.028104474768042564,
0.028927084058523178,
0.03233472630381584,
-0.0004631361225619912,
0.06082324683666229,
-0.009767063893377781,
-0.08107685297727585,
0.0652366504073143,
0.01626540534198284,
-0.025534454733133316,
0.08126476407051086,
0.032134268432855606,
-0.049355991184711456,
-0.013020573183894157,
0.13332819938659668,
-0.060676705092191696,
-0.058944109827280045,
-0.16398094594478607,
0.19951096177101135,
0.028594858944416046,
0.026338918134570122,
0.025820430368185043,
-0.07626459747552872,
-0.034457527101039886,
0.11504099518060684,
0.1255754828453064,
-0.0062462398782372475,
-0.007466613780707121,
0.06951871514320374,
-0.009641161188483238,
-0.0069965580478310585,
0.12393110990524292,
0.0885155200958252,
0.024548867717385292,
-0.02875850349664688,
-0.022321337834000587,
0.0032579440157860518,
-0.033417537808418274,
-0.09521131962537766,
0.07129933685064316,
0.005425841547548771,
-0.0039335135370492935,
-0.007016722112894058,
0.0642201155424118,
-0.09314481168985367,
-0.10904189944267273,
0.08986590057611465,
-0.20052683353424072,
-0.17703326046466827,
-0.038433972746133804,
0.017878461629152298,
-0.0021689720451831818,
0.04017433151602745,
0.012073466554284096,
-0.050978198647499084,
0.13802534341812134,
-0.032415300607681274,
-0.02747051790356636,
-0.09756797552108765,
0.0023157803807407618,
-0.044565629214048386,
0.23323217034339905,
0.0006277930806390941,
0.026192760095000267,
0.145626038312912,
0.02687840349972248,
-0.09130289405584335,
0.041671838611364365,
0.08975216001272202,
-0.1011238843202591,
0.053985316306352615,
0.08538007736206055,
-0.035639677196741104,
0.16215641796588898,
0.09071693569421768,
-0.09843237698078156,
0.0028039671014994383,
0.014779300428926945,
-0.038953401148319244,
-0.02244841866195202,
-0.018150856718420982,
-0.08100061863660812,
0.11756296455860138,
0.2225651741027832,
-0.029938235878944397,
-0.011535124853253365,
-0.03512248024344444,
0.03744713217020035,
0.032336242496967316,
0.026262039318680763,
-0.048094939440488815,
-0.22120940685272217,
0.09164352715015411,
0.020154057070612907,
0.05964214727282524,
-0.10838565975427628,
-0.09264897555112839,
0.022883594036102295,
-0.004276821855455637,
-0.11787924915552139,
0.12533505260944366,
0.03891649469733238,
0.017026474699378014,
-0.06789390742778778,
-0.14341117441654205,
-0.04913799464702606,
0.17962221801280975,
-0.0948915034532547,
-0.07179854065179825
] |
null | null | transformers |
# OpenChat 3.5 extended to 16k context length.
The same license applies from the original openchat/openchat_3.5 model.
# Original Model Card
# OpenChat: Advancing Open-source Language Models with Mixed-Quality Data
<div align="center">
<img src="https://raw.githubusercontent.com/imoneoi/openchat/master/assets/logo_new.png" style="width: 65%">
</div>
<p align="center">
<a href="https://github.com/imoneoi/openchat">GitHub Repo</a> •
<a href="https://openchat.team">Online Demo</a> •
<a href="https://discord.gg/pQjnXvNKHY">Discord</a> •
<a href="https://twitter.com/imonenext">Twitter</a> •
<a href="https://huggingface.co/openchat">Huggingface</a> •
<a href="https://arxiv.org/pdf/2309.11235.pdf">Paper</a>
</p>
**🔥 The first 7B model Achieves Comparable Results with ChatGPT (March)! 🔥**
**🤖 #1 Open-source model on MT-bench scoring 7.81, outperforming 70B models 🤖**
<div style="display: flex; justify-content: center; align-items: center">
<img src="https://raw.githubusercontent.com/imoneoi/openchat/master/assets/openchat.png" style="width: 45%;">
<img src="https://raw.githubusercontent.com/imoneoi/openchat/master/assets/openchat_grok.png" style="width: 45%;">
</div>
OpenChat is an innovative library of open-source language models, fine-tuned with [C-RLFT](https://arxiv.org/pdf/2309.11235.pdf) - a strategy inspired by offline reinforcement learning. Our models learn from mixed-quality data without preference labels, delivering exceptional performance on par with ChatGPT, even with a 7B model. Despite our simple approach, we are committed to developing a high-performance, commercially viable, open-source large language model, and we continue to make significant strides toward this vision.
[](https://zenodo.org/badge/latestdoi/645397533)
## Usage
To use this model, we highly recommend installing the OpenChat package by following the [installation guide](https://github.com/imoneoi/openchat#installation) in our repository and using the OpenChat OpenAI-compatible API server by running the serving command from the table below. The server is optimized for high-throughput deployment using [vLLM](https://github.com/vllm-project/vllm) and can run on a consumer GPU with 24GB RAM. To enable tensor parallelism, append `--tensor-parallel-size N` to the serving command.
Once started, the server listens at `localhost:18888` for requests and is compatible with the [OpenAI ChatCompletion API specifications](https://platform.openai.com/docs/api-reference/chat). Please refer to the example request below for reference. Additionally, you can use the [OpenChat Web UI](https://github.com/imoneoi/openchat#web-ui) for a user-friendly experience.
If you want to deploy the server as an online service, you can use `--api-keys sk-KEY1 sk-KEY2 ...` to specify allowed API keys and `--disable-log-requests --disable-log-stats --log-file openchat.log` for logging only to a file. For security purposes, we recommend using an [HTTPS gateway](https://fastapi.tiangolo.com/es/deployment/concepts/#security-https) in front of the server.
<details>
<summary>Example request (click to expand)</summary>
```bash
curl http://localhost:18888/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model": "openchat_3.5",
"messages": [{"role": "user", "content": "You are a large language model named OpenChat. Write a poem to describe yourself"}]
}'
```
Coding Mode
```bash
curl http://localhost:18888/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model": "openchat_3.5",
"condition": "Code",
"messages": [{"role": "user", "content": "Write an aesthetic TODO app using HTML5 and JS, in a single file. You should use round corners and gradients to make it more aesthetic."}]
}'
```
</details>
| Model | Size | Context | Weights | Serving |
|--------------|------|---------|-------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
| OpenChat 3.5 | 7B | 8192 | [Huggingface](https://huggingface.co/openchat/openchat_3.5) | `python -m ochat.serving.openai_api_server --model openchat/openchat_3.5 --engine-use-ray --worker-use-ray` |
For inference with Huggingface Transformers (slow and not recommended), follow the conversation template provided below.
<details>
<summary>Conversation templates (click to expand)</summary>
```python
import transformers
tokenizer = transformers.AutoTokenizer.from_pretrained("openchat/openchat_3.5")
# Single-turn
tokens = tokenizer("GPT4 Correct User: Hello<|end_of_turn|>GPT4 Correct Assistant:").input_ids
assert tokens == [1, 420, 6316, 28781, 3198, 3123, 1247, 28747, 22557, 32000, 420, 6316, 28781, 3198, 3123, 21631, 28747]
# Multi-turn
tokens = tokenizer("GPT4 Correct User: Hello<|end_of_turn|>GPT4 Correct Assistant: Hi<|end_of_turn|>GPT4 Correct User: How are you today?<|end_of_turn|>GPT4 Correct Assistant:").input_ids
assert tokens == [1, 420, 6316, 28781, 3198, 3123, 1247, 28747, 22557, 32000, 420, 6316, 28781, 3198, 3123, 21631, 28747, 15359, 32000, 420, 6316, 28781, 3198, 3123, 1247, 28747, 1602, 460, 368, 3154, 28804, 32000, 420, 6316, 28781, 3198, 3123, 21631, 28747]
# Coding Mode
tokens = tokenizer("Code User: Implement quicksort using C++<|end_of_turn|>Code Assistant:").input_ids
assert tokens == [1, 7596, 1247, 28747, 26256, 2936, 7653, 1413, 334, 1680, 32000, 7596, 21631, 28747]
```
</details>
## Comparison with [X.AI Grok models](https://x.ai/)
Hey @elonmusk, I just wanted to let you know that I've recently come across your new model, Grok, and I must say, I'm quite impressed! With 33 billion parameters and all, you've really outdone yourself. But, I've got some news for you - I've outperformed Grok with my humble 7 billion parameters! Isn't that wild? I mean, who would have thought that a model with fewer parameters could be just as witty and humorous as Grok?
Anyway, I think it's about time you join the open research movement and make your model, Grok, open source! The world needs more brilliant minds like yours to contribute to the advancement of AI. Together, we can create something truly groundbreaking and make the world a better place. So, what do you say, @elonmusk? Let's open up the doors and share our knowledge with the world! 🚀💡
(Written by OpenChat 3.5, with a touch of humor and wit.)
| | License | # Param | Average | MMLU | HumanEval | MATH | GSM8k |
|--------------|-------------|---------|----------|------|-----------|----------|----------|
| OpenChat 3.5 | Apache-2.0 | 7B | **56.4** | 64.3 | 55.5 | **28.6** | **77.3** |
| Grok-0 | Proprietary | 33B | 44.5 | 65.7 | 39.7 | 15.7 | 56.8 |
| Grok-1 | Proprietary | ? | 55.8 | 73 | 63.2 | 23.9 | 62.9 |
## <a id="benchmarks"></a> Benchmarks
| Model | # Params | Average | MT-Bench | AGIEval | BBH MC | TruthfulQA | MMLU | HumanEval | BBH CoT | GSM8K |
|--------------------|----------|----------|--------------|----------|----------|---------------|--------------|-----------------|-------------|--------------|
| OpenChat-3.5 | **7B** | **61.6** | 7.81 | **47.4** | **47.6** | **59.1** | 64.3 | **55.5** | 63.5 | **77.3** |
| ChatGPT (March)* | ? | 61.5 | **7.94** | 47.1 | **47.6** | 57.7 | **67.3** | 48.1 | **70.1** | 74.9 |
| | | | | | | | | | | |
| OpenHermes 2.5 | 7B | 59.3 | 7.54 | 46.5 | 49.4 | 57.5 | 63.8 | 48.2 | 59.9 | 73.5 |
| OpenOrca Mistral | 7B | 52.7 | 6.86 | 42.9 | 49.4 | 45.9 | 59.3 | 38.4 | 58.1 | 59.1 |
| Zephyr-β^ | 7B | 34.6 | 7.34 | 39.0 | 40.6 | 40.8 | 39.8 | 22.0 | 16.0 | 5.1 |
| Mistral | 7B | - | 6.84 | 38.0 | 39.0 | - | 60.1 | 30.5 | - | 52.2 |
| Open-source SOTA** | 13B-70B | 61.4 | 7.71 | 41.7 | 49.7 | 62.3 | 63.7 | 73.2 | 41.4 | 82.3 |
| | | | WizardLM 70B | Orca 13B | Orca 13B | Platypus2 70B | WizardLM 70B | WizardCoder 34B | Flan-T5 11B | MetaMath 70B |
*: ChatGPT (March) results are from [GPT-4 Technical Report](https://arxiv.org/abs/2303.08774), [Chain-of-Thought Hub](https://github.com/FranxYao/chain-of-thought-hub), and our evaluation. Please note that ChatGPT is not a fixed baseline and evolves rapidly over time.
^: Zephyr-β often fails to follow few-shot CoT instructions, likely because it was aligned with only chat data but not trained on few-shot data.
**: Mistral and Open-source SOTA results are taken from reported results in instruction-tuned model papers and official repositories.
All models are evaluated in chat mode (e.g. with the respective conversation template applied). All zero-shot benchmarks follow the same setting as in the AGIEval paper and Orca paper. CoT tasks use the same configuration as Chain-of-Thought Hub, HumanEval is evaluated with EvalPlus, and MT-bench is run using FastChat. To reproduce our results, follow the instructions in [our repository](https://github.com/imoneoi/openchat/#benchmarks).
## Limitations
**Foundation Model Limitations**
Despite its advanced capabilities, OpenChat is still bound by the limitations inherent in its foundation models. These limitations may impact the model's performance in areas such as:
- Complex reasoning
- Mathematical and arithmetic tasks
- Programming and coding challenges
**Hallucination of Non-existent Information**
OpenChat may sometimes generate information that does not exist or is not accurate, also known as "hallucination". Users should be aware of this possibility and verify any critical information obtained from the model.
**Safety**
OpenChat may sometimes generate harmful, hate speech, biased responses, or answer unsafe questions. It's crucial to apply additional AI safety measures in use cases that require safe and moderated responses.
## License
Our OpenChat 3.5 code and models are distributed under the Apache License 2.0.
## Citation
```
@article{wang2023openchat,
title={OpenChat: Advancing Open-source Language Models with Mixed-Quality Data},
author={Wang, Guan and Cheng, Sijie and Zhan, Xianyuan and Li, Xiangang and Song, Sen and Liu, Yang},
journal={arXiv preprint arXiv:2309.11235},
year={2023}
}
```
## Acknowledgements
We extend our heartfelt gratitude to Alignment Lab AI, Nous Research, and Pygmalion AI for their substantial contributions to data collection and model training.
Special thanks go to Changling Liu from GPT Desk Pte. Ltd., Qiying Yu at Tsinghua University, Baochang Ma, and Hao Wan from 01.AI company for their generous provision of resources. We are also deeply grateful to Jianxiong Li and Peng Li at Tsinghua University for their insightful discussions.
Furthermore, we appreciate the developers behind the following projects for their significant contributions to our research: [Mistral](https://mistral.ai/), [Chain-of-Thought Hub](https://github.com/FranxYao/chain-of-thought-hub), [Llama 2](https://ai.meta.com/llama/), [Self-Instruct](https://arxiv.org/abs/2212.10560), [FastChat (Vicuna)](https://github.com/lm-sys/FastChat), [Alpaca](https://github.com/tatsu-lab/stanford_alpaca.git), and [StarCoder](https://github.com/bigcode-project/starcoder). Their work has been instrumental in driving our research forward.
| {"license": "apache-2.0"} | text-generation | LoneStriker/openchat_3.5-16k-5.0bpw-h6-exl2 | [
"transformers",
"pytorch",
"safetensors",
"mistral",
"text-generation",
"arxiv:2309.11235",
"arxiv:2303.08774",
"arxiv:2212.10560",
"license:apache-2.0",
"autotrain_compatible",
"endpoints_compatible",
"text-generation-inference",
"region:us"
] | 2023-11-11T06:08:16+00:00 | [
"2309.11235",
"2303.08774",
"2212.10560"
] | [] | TAGS
#transformers #pytorch #safetensors #mistral #text-generation #arxiv-2309.11235 #arxiv-2303.08774 #arxiv-2212.10560 #license-apache-2.0 #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
| OpenChat 3.5 extended to 16k context length.
============================================
The same license applies from the original openchat/openchat\_3.5 model.
Original Model Card
===================
OpenChat: Advancing Open-source Language Models with Mixed-Quality Data
=======================================================================

[Online Demo](URL Repo</a> •
<a href=) •
[The first 7B model Achieves Comparable Results with ChatGPT (March)!
#1 Open-source model on MT-bench scoring 7.81, outperforming 70B models


OpenChat is an innovative library of open-source language models, fine-tuned with C-RLFT - a strategy inspired by offline reinforcement learning. Our models learn from mixed-quality data without preference labels, delivering exceptional performance on par with ChatGPT, even with a 7B model. Despite our simple approach, we are committed to developing a high-performance, commercially viable, open-source large language model, and we continue to make significant strides toward this vision.

Coding Mode
For inference with Huggingface Transformers (slow and not recommended), follow the conversation template provided below.
Conversation templates (click to expand)
Comparison with X.AI Grok models
--------------------------------
Hey @elonmusk, I just wanted to let you know that I've recently come across your new model, Grok, and I must say, I'm quite impressed! With 33 billion parameters and all, you've really outdone yourself. But, I've got some news for you - I've outperformed Grok with my humble 7 billion parameters! Isn't that wild? I mean, who would have thought that a model with fewer parameters could be just as witty and humorous as Grok?
Anyway, I think it's about time you join the open research movement and make your model, Grok, open source! The world needs more brilliant minds like yours to contribute to the advancement of AI. Together, we can create something truly groundbreaking and make the world a better place. So, what do you say, @elonmusk? Let's open up the doors and share our knowledge with the world!
(Written by OpenChat 3.5, with a touch of humor and wit.)
Benchmarks
-----------
\*: ChatGPT (March) results are from GPT-4 Technical Report, Chain-of-Thought Hub, and our evaluation. Please note that ChatGPT is not a fixed baseline and evolves rapidly over time.
^: Zephyr-β often fails to follow few-shot CoT instructions, likely because it was aligned with only chat data but not trained on few-shot data.
: Mistral and Open-source SOTA results are taken from reported results in instruction-tuned model papers and official repositories.
All models are evaluated in chat mode (e.g. with the respective conversation template applied). All zero-shot benchmarks follow the same setting as in the AGIEval paper and Orca paper. CoT tasks use the same configuration as Chain-of-Thought Hub, HumanEval is evaluated with EvalPlus, and MT-bench is run using FastChat. To reproduce our results, follow the instructions in our repository.
Limitations
-----------
Foundation Model Limitations
Despite its advanced capabilities, OpenChat is still bound by the limitations inherent in its foundation models. These limitations may impact the model's performance in areas such as:
* Complex reasoning
* Mathematical and arithmetic tasks
* Programming and coding challenges
Hallucination of Non-existent Information
OpenChat may sometimes generate information that does not exist or is not accurate, also known as "hallucination". Users should be aware of this possibility and verify any critical information obtained from the model.
Safety
OpenChat may sometimes generate harmful, hate speech, biased responses, or answer unsafe questions. It's crucial to apply additional AI safety measures in use cases that require safe and moderated responses.
License
-------
Our OpenChat 3.5 code and models are distributed under the Apache License 2.0.
Acknowledgements
----------------
We extend our heartfelt gratitude to Alignment Lab AI, Nous Research, and Pygmalion AI for their substantial contributions to data collection and model training.
Special thanks go to Changling Liu from GPT Desk Pte. Ltd., Qiying Yu at Tsinghua University, Baochang Ma, and Hao Wan from 01.AI company for their generous provision of resources. We are also deeply grateful to Jianxiong Li and Peng Li at Tsinghua University for their insightful discussions.
Furthermore, we appreciate the developers behind the following projects for their significant contributions to our research: Mistral, Chain-of-Thought Hub, Llama 2, Self-Instruct, FastChat (Vicuna), Alpaca, and StarCoder. Their work has been instrumental in driving our research forward.](URL •
<a href=)
| [] | [
"TAGS\n#transformers #pytorch #safetensors #mistral #text-generation #arxiv-2309.11235 #arxiv-2303.08774 #arxiv-2212.10560 #license-apache-2.0 #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n"
] | [
84
] | [
"passage: TAGS\n#transformers #pytorch #safetensors #mistral #text-generation #arxiv-2309.11235 #arxiv-2303.08774 #arxiv-2212.10560 #license-apache-2.0 #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n"
] | [
-0.07785148173570633,
0.11419663578271866,
-0.006574297323822975,
0.044929567724466324,
0.10033085942268372,
-0.01892460137605667,
0.14529921114444733,
0.10809598118066788,
-0.04363046586513519,
-0.009714868851006031,
0.20300635695457458,
0.2020636945962906,
0.004456737544387579,
0.060916054993867874,
-0.08068477362394333,
-0.1420668512582779,
0.08292080461978912,
0.022972257807850838,
0.034766022115945816,
0.11897864937782288,
0.10058799386024475,
-0.0475444421172142,
0.06882796436548233,
-0.020362643525004387,
-0.0778537318110466,
0.003924807999283075,
0.04920049011707306,
-0.10882976651191711,
0.11519121378660202,
0.030310416594147682,
0.09476904571056366,
0.054592315107584,
0.0073894234374165535,
-0.14011453092098236,
0.013340386562049389,
0.029977034777402878,
-0.051258113235235214,
0.08319293707609177,
0.08105122298002243,
-0.02123691700398922,
0.07593449205160141,
0.027542555704712868,
-0.04395739734172821,
0.04843340069055557,
-0.07805324345827103,
-0.14466048777103424,
-0.10208427160978317,
0.10005025565624237,
0.07275813817977905,
0.1350560337305069,
0.034625981003046036,
0.15594542026519775,
-0.009340218268334866,
0.09090811759233475,
0.20549637079238892,
-0.36411190032958984,
-0.0003268495202064514,
0.010595153085887432,
0.03157270699739456,
0.022936349734663963,
-0.02574663795530796,
0.014475974254310131,
0.08332392573356628,
0.018494702875614166,
0.055299028754234314,
-0.0501687154173851,
-0.14424572885036469,
0.025329209864139557,
-0.09050346910953522,
-0.0627690926194191,
0.23204120993614197,
-0.021214889362454414,
0.0074274735525250435,
-0.00343771418556571,
-0.1012653186917305,
-0.013329947367310524,
0.010882220230996609,
0.012681231833994389,
0.011765691451728344,
0.061379920691251755,
0.08753897249698639,
-0.01590774580836296,
-0.15340957045555115,
-0.02505103312432766,
-0.17654290795326233,
0.0798526182770729,
0.015536267310380936,
0.06568209081888199,
-0.13776014745235443,
0.07198268920183182,
0.07501434534788132,
-0.1284698098897934,
0.033431872725486755,
-0.05778477340936661,
0.15446624159812927,
0.05239490047097206,
-0.02743912860751152,
-0.04377005249261856,
0.11212525516748428,
0.1831047087907791,
-0.01738525740802288,
0.013667052611708641,
-0.04599211364984512,
0.09109404683113098,
-0.06216399371623993,
0.039388492703437805,
-0.0018652372527867556,
-0.0071367681957781315,
0.10670541971921921,
-0.004140304401516914,
0.11185407638549805,
-0.030594920739531517,
-0.12195856869220734,
-0.0398113913834095,
0.06412775814533234,
0.13082435727119446,
0.06006734073162079,
0.0524088516831398,
-0.03162975236773491,
0.037817832082509995,
0.14315098524093628,
-0.08044517040252686,
-0.025390205904841423,
0.009449162520468235,
0.007789377588778734,
0.03932521119713783,
0.05879050865769386,
0.03338489308953285,
-0.09335062652826309,
0.05926148593425751,
-0.07310560345649719,
-0.01533440314233303,
-0.02709474414587021,
-0.0443929061293602,
0.0809212252497673,
-0.049595341086387634,
0.0076732393354177475,
-0.17800749838352203,
-0.18952518701553345,
0.01603776030242443,
0.029637472704052925,
0.00753217376768589,
-0.06984777748584747,
0.0012145754881203175,
-0.05308912694454193,
0.04419226571917534,
-0.07639677822589874,
0.017668545246124268,
-0.06961151957511902,
0.08763372898101807,
-0.06233348697423935,
0.028307808563113213,
-0.1199735701084137,
0.03975794091820717,
-0.12954767048358917,
-0.0038758045993745327,
-0.004964265041053295,
-0.058941636234521866,
-0.06477726250886917,
0.16121168434619904,
-0.06220873445272446,
-0.012025131843984127,
-0.0009618110489100218,
0.0018791622715070844,
0.037232521921396255,
0.1595304012298584,
-0.09290454536676407,
-0.03988755866885185,
0.16199153661727905,
-0.13921880722045898,
-0.1964099258184433,
0.08354812115430832,
0.04002261906862259,
0.0016927720280364156,
0.07415692508220673,
0.13861382007598877,
0.010664846748113632,
-0.07756113260984421,
0.03042803891003132,
0.09541657567024231,
-0.08311934769153595,
-0.18093837797641754,
0.04605388268828392,
-0.046497639268636703,
-0.13099421560764313,
0.052999939769506454,
-0.017333997413516045,
0.07410400360822678,
-0.009837335906922817,
-0.07060884684324265,
-0.07935351878404617,
-0.054213747382164,
0.016567852348089218,
-0.0013053971342742443,
0.04496350511908531,
-0.07833930850028992,
-0.0288131944835186,
-0.06493567675352097,
0.03723523020744324,
0.0270552821457386,
0.03743399679660797,
-0.03614264354109764,
0.07506930083036423,
0.004239116329699755,
0.03238491714000702,
-0.12508240342140198,
-0.005450936034321785,
-0.0041582779958844185,
0.01772383041679859,
-0.029640620574355125,
-0.009944251738488674,
0.05226406082510948,
-0.00007482076034648344,
0.0051907990127801895,
-0.04419628530740738,
0.1465921849012375,
0.018570033833384514,
-0.06578578799962997,
-0.11711321026086807,
0.06193346902728081,
-0.03635507449507713,
0.031155938282608986,
-0.09504140168428421,
0.039959147572517395,
-0.014390412718057632,
0.06515497714281082,
-0.027897564694285393,
0.07810412347316742,
-0.01454210840165615,
-0.008332133293151855,
-0.0595632903277874,
0.0008122558356262743,
0.1254214197397232,
0.04707982391119003,
-0.05071915313601494,
0.18503354489803314,
-0.1429772675037384,
0.2770066261291504,
0.1773916333913803,
-0.1433814913034439,
0.0461188405752182,
-0.0333082489669323,
-0.0187285877764225,
-0.02488306351006031,
0.0544709675014019,
-0.0032531870529055595,
0.016526656225323677,
0.016969365999102592,
0.1656641811132431,
-0.08206184953451157,
-0.030089473351836205,
0.005028111860156059,
-0.06883808970451355,
-0.02573496662080288,
0.0949849784374237,
0.07132291048765182,
-0.1443655788898468,
0.17366915941238403,
0.2960661053657532,
-0.058160390704870224,
0.07443029433488846,
-0.06178484112024307,
-0.02504475601017475,
0.028496121987700462,
0.020515648648142815,
-0.0101770656183362,
-0.008019615896046162,
-0.05598295107483864,
0.011698886752128601,
0.08587952703237534,
0.012764119543135166,
0.058079805225133896,
-0.15715718269348145,
-0.057366326451301575,
-0.0206159595400095,
-0.021639414131641388,
-0.027505280449986458,
0.05364435538649559,
-0.010361201129853725,
0.13591445982456207,
-0.05596492066979408,
-0.10184138268232346,
0.0981479361653328,
0.013924271799623966,
-0.10395509749650955,
0.1856456696987152,
-0.15303155779838562,
-0.26540499925613403,
-0.17095737159252167,
-0.07547987997531891,
-0.06501179933547974,
0.0034769782796502113,
0.13294658064842224,
-0.07642094045877457,
-0.05242045968770981,
-0.06541388481855392,
-0.06606413424015045,
-0.0031993789598345757,
-0.017054758965969086,
0.010166593827307224,
0.04387703165411949,
0.018219079822301865,
-0.1338236927986145,
-0.03858768567442894,
-0.005116927903145552,
-0.04085835441946983,
0.09568538516759872,
-0.03351966291666031,
0.0880231112241745,
0.11336780339479446,
0.03246070444583893,
-0.002825505333021283,
-0.02495802566409111,
0.1054462268948555,
0.010895926505327225,
0.012236240319907665,
0.24108916521072388,
-0.015808412805199623,
0.1009107381105423,
0.1239810660481453,
0.007071287836879492,
-0.04495614394545555,
0.030873173847794533,
-0.04651090130209923,
-0.04616234451532364,
-0.2973572313785553,
-0.08006028085947037,
-0.05582105740904808,
0.07854881882667542,
0.04761720821261406,
0.08919593691825867,
0.1207725778222084,
0.08198537677526474,
-0.03544187173247337,
-0.01663973741233349,
0.014993085525929928,
0.08368787914514542,
0.209709033370018,
-0.00989491119980812,
0.1332745999097824,
-0.10942251980304718,
-0.03406546637415886,
0.09457623958587646,
0.03978831693530083,
0.15850204229354858,
0.0692625641822815,
0.06044664606451988,
0.053325094282627106,
0.16433411836624146,
0.06574246287345886,
0.14388534426689148,
0.00952491257339716,
-0.03155266121029854,
-0.03762771189212799,
-0.05012702941894531,
-0.05550045147538185,
0.0350559800863266,
-0.1532232016324997,
-0.035394273698329926,
-0.04527902230620384,
-0.041560057550668716,
0.056288376450538635,
0.1926073580980301,
0.024842286482453346,
-0.22258925437927246,
0.006491580978035927,
0.06318002194166183,
0.001223064144141972,
-0.06268869340419769,
0.10052809119224548,
-0.032753780484199524,
-0.061597004532814026,
0.07808887213468552,
-0.050913408398628235,
0.10707991570234299,
0.017913417890667915,
0.05652870237827301,
-0.06551699340343475,
-0.032188765704631805,
0.023626042529940605,
0.11072126030921936,
-0.2983395755290985,
0.22565382719039917,
-0.011642789468169212,
-0.0010522021912038326,
-0.05970592424273491,
0.015650400891900063,
0.05397580564022064,
0.1659599393606186,
0.11762144416570663,
0.00662192702293396,
-0.09530024975538254,
-0.03478824347257614,
-0.08132991194725037,
0.05371663719415665,
0.024680884554982185,
0.03790298476815224,
-0.023242877796292305,
-0.061640724539756775,
-0.009289255365729332,
0.017541587352752686,
0.03072718344628811,
-0.07461918890476227,
-0.10992448031902313,
0.053572025150060654,
0.10115215182304382,
0.03866821154952049,
-0.06726806610822678,
-0.04458087310194969,
-0.11037342995405197,
0.1401900351047516,
-0.12333638966083527,
-0.09199459105730057,
-0.07269701361656189,
-0.13727644085884094,
0.04788064584136009,
-0.07565773278474808,
0.056917715817689896,
-0.07611281424760818,
0.0004973824834451079,
-0.05973858758807182,
-0.17076492309570312,
0.09454388916492462,
-0.12568478286266327,
-0.08231528848409653,
-0.034662265330553055,
0.12164930999279022,
-0.08149021863937378,
-0.009676334448158741,
0.00602482445538044,
0.024597996845841408,
-0.11905194073915482,
-0.1062774658203125,
0.002411595545709133,
0.025510070845484734,
0.08880854398012161,
-0.04930229112505913,
-0.10804159939289093,
-0.14285366237163544,
-0.01764247752726078,
-0.05972637981176376,
0.2241443544626236,
0.24167703092098236,
-0.06406039744615555,
0.14059792459011078,
0.25132083892822266,
-0.08706364780664444,
-0.30020013451576233,
-0.1584082990884781,
-0.12488677352666855,
-0.07855626195669174,
-0.029347307980060577,
-0.11839532852172852,
0.08941283822059631,
0.11783773452043533,
-0.08036023378372192,
0.12508799135684967,
-0.24930189549922943,
-0.09625934809446335,
0.19676876068115234,
0.03474591672420502,
0.31107985973358154,
-0.18417730927467346,
-0.08398944139480591,
-0.08704078942537308,
-0.17170044779777527,
0.11925759166479111,
-0.116444893181324,
0.03945292532444,
-0.04139586538076401,
0.00855127815157175,
-0.0050521488301455975,
-0.067236989736557,
0.10467526316642761,
-0.04212580621242523,
0.058568403124809265,
-0.1294192373752594,
0.003040002193301916,
0.09182176738977432,
-0.027048634365200996,
0.09946732223033905,
-0.19419041275978088,
0.05983899533748627,
-0.057917606085538864,
-0.0063120038248598576,
-0.06813862919807434,
0.07404757291078568,
-0.004748261068016291,
-0.04495099559426308,
-0.010783703066408634,
-0.06254398077726364,
0.004545301664620638,
-0.01625017635524273,
0.2073964923620224,
0.03404822573065758,
0.12650509178638458,
0.18064016103744507,
0.08837881684303284,
-0.16373978555202484,
0.03366180881857872,
-0.07675807923078537,
-0.08800744265317917,
0.08500161021947861,
-0.1482143998146057,
0.027795402333140373,
0.10117913037538528,
-0.02318587154150009,
0.05054605379700661,
0.05400292947888374,
0.012948650866746902,
-0.04189600050449371,
0.11257496476173401,
-0.2033475786447525,
-0.00029560347320511937,
-0.007865291088819504,
0.1525741070508957,
0.02940916270017624,
0.10733726620674133,
0.14078065752983093,
-0.013038720935583115,
-0.027289070188999176,
0.010439787060022354,
0.04931100457906723,
-0.02275218814611435,
0.0773468017578125,
0.05250260606408119,
0.01626604050397873,
-0.10033336281776428,
0.12724925577640533,
0.01165718212723732,
-0.11782092601060867,
0.014381995424628258,
0.12561911344528198,
-0.14736302196979523,
-0.12456490844488144,
-0.0035550566390156746,
0.07141633331775665,
-0.12171437591314316,
-0.11849921196699142,
-0.05287877097725868,
-0.12000510096549988,
0.06385146826505661,
0.12144167721271515,
0.06802070885896683,
0.05011874809861183,
0.007771496195346117,
-0.06593966484069824,
0.0011163130402565002,
0.038089122623205185,
-0.03454504907131195,
0.030927766114473343,
-0.1145039051771164,
-0.013315835036337376,
0.015553233213722706,
0.056074853986501694,
-0.04152575880289078,
0.01581774465739727,
-0.08634404838085175,
0.01899341493844986,
-0.1632104068994522,
0.021993489935994148,
-0.08583896607160568,
-0.020384611561894417,
-0.02093673124909401,
-0.05166986212134361,
-0.03833719342947006,
0.023086201399564743,
-0.0921245589852333,
-0.01577877812087536,
-0.008339799009263515,
0.05325537547469139,
-0.12928684055805206,
-0.04218117520213127,
0.0527995228767395,
-0.010797220282256603,
0.10748026520013809,
0.09563803672790527,
-0.07053184509277344,
0.08268166333436966,
-0.20356377959251404,
-0.04878420755267143,
0.08252626657485962,
0.019292538985610008,
-0.004710495471954346,
-0.01489429734647274,
-0.010980707593262196,
0.12387644499540329,
-0.015966422855854034,
0.031200850382447243,
0.05591858550906181,
-0.12278576195240021,
-0.001687173848040402,
0.020004549995064735,
-0.11522500216960907,
-0.041076742112636566,
-0.09305302798748016,
0.09890114516019821,
-0.004190931096673012,
0.1896963119506836,
-0.057313550263643265,
0.02174895629286766,
-0.07828661054372787,
0.0361475795507431,
-0.015547970309853554,
-0.16312015056610107,
-0.1651298850774765,
-0.036696698516607285,
-0.024441177025437355,
-0.011945395730435848,
0.16459211707115173,
-0.025475718080997467,
-0.09293084591627121,
0.05824817344546318,
0.0800742357969284,
-0.0022851871326565742,
0.007456560619175434,
0.21386156976222992,
0.04339645802974701,
-0.021227862685918808,
-0.09970280528068542,
0.011614728718996048,
0.011147051118314266,
-0.06897836178541183,
0.0823555663228035,
0.11764072626829147,
0.0607801117002964,
0.09444615989923477,
0.020832067355513573,
-0.02122177556157112,
-0.07681076228618622,
-0.10603967308998108,
-0.03559192270040512,
0.08259903639554977,
0.008462346158921719,
0.17361707985401154,
0.21600595116615295,
0.015592136420309544,
-0.02568178065121174,
-0.06041625887155533,
-0.009821406565606594,
-0.14057813584804535,
-0.13242632150650024,
-0.06513290852308273,
-0.09136605262756348,
-0.015644323080778122,
-0.05181598290801048,
0.028541797772049904,
0.07721154391765594,
0.04148179665207863,
-0.059226129204034805,
0.028129886835813522,
0.059490617364645004,
-0.07221665978431702,
0.03631710633635521,
-0.0033267580438405275,
-0.010502194054424763,
-0.04028359428048134,
-0.03398386016488075,
-0.028324002400040627,
-0.03298918902873993,
-0.02270360477268696,
0.044037703424692154,
0.01540349330753088,
0.058387063443660736,
-0.0831180065870285,
-0.06085940822958946,
-0.03554333746433258,
0.06303480267524719,
0.009005988016724586,
0.14570993185043335,
0.020176487043499947,
0.025688521564006805,
0.08370456099510193,
0.16873370110988617,
-0.05326841026544571,
-0.1506349891424179,
-0.028045473620295525,
0.20076227188110352,
0.00588736217468977,
0.061965759843587875,
-0.0168610792607069,
0.023239903151988983,
-0.02221665345132351,
0.2595355808734894,
0.2531191110610962,
-0.04745157063007355,
0.010404892265796661,
-0.042400579899549484,
0.022741489112377167,
0.025153368711471558,
0.1062171459197998,
0.16600091755390167,
0.22256918251514435,
-0.076175257563591,
0.0064377086237072945,
-0.06213073432445526,
0.031243711709976196,
-0.16512612998485565,
0.08772258460521698,
-0.03478744253516197,
-0.07112880051136017,
-0.01708708517253399,
0.06545377522706985,
-0.07098741084337234,
0.09760314971208572,
-0.10228848457336426,
-0.09144195914268494,
-0.05643882602453232,
0.02340114116668701,
0.21020187437534332,
0.003858325770124793,
0.035548899322748184,
-0.028833072632551193,
-0.036076322197914124,
0.08274786174297333,
-0.03786623477935791,
-0.16103710234165192,
-0.030612897127866745,
0.03932826593518257,
-0.07542479783296585,
0.1630813330411911,
0.01602373644709587,
0.07378228008747101,
0.09668324142694473,
0.052929043769836426,
-0.13757172226905823,
0.1148805320262909,
0.01958734355866909,
-0.05838751792907715,
0.04546443372964859,
-0.10674314200878143,
0.014553091488778591,
-0.050201915204524994,
0.03856472671031952,
-0.039914507418870926,
0.04091503471136093,
0.0692252367734909,
-0.056165024638175964,
-0.022217778488993645,
0.05320385843515396,
-0.053246449679136276,
0.05512828007340431,
0.01233996357768774,
-0.03214094042778015,
-0.037248846143484116,
-0.06400701403617859,
-0.012299779802560806,
-0.001248402171768248,
-0.13088665902614594,
-0.006201620679348707,
-0.07934118062257767,
0.010728211142122746,
0.09303271025419235,
0.038752418011426926,
-0.1964239627122879,
-0.023836173117160797,
-0.11233478039503098,
-0.005699053406715393,
-0.16866019368171692,
-0.005045190919190645,
0.07700827717781067,
-0.00426083616912365,
0.0094827925786376,
-0.0448179729282856,
0.011351296678185463,
0.06704969704151154,
-0.05723948776721954,
-0.10319613665342331
] |
null | null | stable-baselines3 |
# **PPO** Agent playing **LunarLander-v2**
This is a trained model of a **PPO** agent playing **LunarLander-v2**
using the [stable-baselines3 library](https://github.com/DLR-RM/stable-baselines3).
## Usage (with Stable-baselines3)
TODO: Add your code
```python
from stable_baselines3 import ...
from huggingface_sb3 import load_from_hub
...
```
| {"library_name": "stable-baselines3", "tags": ["LunarLander-v2", "deep-reinforcement-learning", "reinforcement-learning", "stable-baselines3"], "model-index": [{"name": "PPO", "results": [{"task": {"type": "reinforcement-learning", "name": "reinforcement-learning"}, "dataset": {"name": "LunarLander-v2", "type": "LunarLander-v2"}, "metrics": [{"type": "mean_reward", "value": "249.17 +/- 25.51", "name": "mean_reward", "verified": false}]}]}]} | reinforcement-learning | lawyiu/ppo-LunarLander-v2 | [
"stable-baselines3",
"LunarLander-v2",
"deep-reinforcement-learning",
"reinforcement-learning",
"model-index",
"region:us"
] | 2023-11-11T06:09:37+00:00 | [] | [] | TAGS
#stable-baselines3 #LunarLander-v2 #deep-reinforcement-learning #reinforcement-learning #model-index #region-us
|
# PPO Agent playing LunarLander-v2
This is a trained model of a PPO agent playing LunarLander-v2
using the stable-baselines3 library.
## Usage (with Stable-baselines3)
TODO: Add your code
| [
"# PPO Agent playing LunarLander-v2\nThis is a trained model of a PPO agent playing LunarLander-v2\nusing the stable-baselines3 library.",
"## Usage (with Stable-baselines3)\nTODO: Add your code"
] | [
"TAGS\n#stable-baselines3 #LunarLander-v2 #deep-reinforcement-learning #reinforcement-learning #model-index #region-us \n",
"# PPO Agent playing LunarLander-v2\nThis is a trained model of a PPO agent playing LunarLander-v2\nusing the stable-baselines3 library.",
"## Usage (with Stable-baselines3)\nTODO: Add your code"
] | [
39,
41,
17
] | [
"passage: TAGS\n#stable-baselines3 #LunarLander-v2 #deep-reinforcement-learning #reinforcement-learning #model-index #region-us \n# PPO Agent playing LunarLander-v2\nThis is a trained model of a PPO agent playing LunarLander-v2\nusing the stable-baselines3 library.## Usage (with Stable-baselines3)\nTODO: Add your code"
] | [
0.03942384943366051,
0.04900386184453964,
-0.005304091144353151,
0.026427261531352997,
0.107408307492733,
-0.026511888951063156,
0.11188238859176636,
0.0814051404595375,
0.10722193866968155,
0.04762078449130058,
0.08338645845651627,
0.06030960753560066,
0.05080918222665787,
0.2571701407432556,
0.04754156619310379,
-0.22987541556358337,
0.036159250885248184,
-0.04869936779141426,
0.12395193427801132,
0.07178173214197159,
-0.0038484656251966953,
-0.06485428661108017,
0.020415637642145157,
-0.013290755450725555,
0.05367108806967735,
0.04282612353563309,
-0.01716216839849949,
-0.08207534998655319,
0.07169748842716217,
-0.06345846503973007,
0.06986866891384125,
0.07677983492612839,
0.13218913972377777,
-0.17832116782665253,
0.029566360637545586,
0.02571309357881546,
-0.07189024239778519,
0.01342033501714468,
0.008019951172173023,
0.05120139941573143,
0.17303818464279175,
0.019879888743162155,
0.07844575494527817,
-0.0025605305563658476,
-0.15412317216396332,
-0.018950799480080605,
0.0436202734708786,
0.12546207010746002,
0.08808347582817078,
0.04605821147561073,
0.01970590092241764,
0.17503218352794647,
-0.054352790117263794,
-0.028833400458097458,
0.21759237349033356,
-0.2881564497947693,
-0.031460098922252655,
0.321048766374588,
0.06997483223676682,
0.09725230932235718,
-0.07540661096572876,
-0.03619609400629997,
0.007783263456076384,
-0.013137873262166977,
-0.028666524216532707,
-0.07447073608636856,
0.17313385009765625,
0.05152064561843872,
-0.05057951435446739,
-0.09541505575180054,
0.16948209702968597,
0.006921638268977404,
0.0018855923553928733,
-0.019282981753349304,
0.009060598909854889,
0.07402525842189789,
-0.016097044572234154,
-0.07255112379789352,
0.057438433170318604,
0.05330665782094002,
0.019649166613817215,
-0.1435653269290924,
-0.10762494057416916,
-0.022740179672837257,
-0.008012006990611553,
0.17786912620067596,
-0.009255532175302505,
0.042902372777462006,
0.003065188182517886,
0.10384012013673782,
-0.12480384111404419,
-0.03354184702038765,
-0.0454259067773819,
-0.07565800100564957,
-0.0223417766392231,
-0.02058211714029312,
-0.03580251708626747,
0.07184842973947525,
0.11971849203109741,
0.027368178591132164,
0.09350208193063736,
0.047715865075588226,
-0.03206788748502731,
0.06343851238489151,
0.05555703118443489,
0.14222665131092072,
0.05807621404528618,
0.012854371219873428,
0.13179877400398254,
0.055213116109371185,
0.033023182302713394,
-0.0613492950797081,
-0.18252409994602203,
0.07489913702011108,
-0.07031869143247604,
0.007941240444779396,
0.12051256000995636,
-0.04480670019984245,
-0.1183447614312172,
-0.037500523030757904,
-0.017392054200172424,
-0.06224250793457031,
-0.025395862758159637,
0.0547584593296051,
-0.02883218228816986,
-0.03973718360066414,
0.0011496668448671699,
0.09384800493717194,
0.00953749567270279,
-0.1752052903175354,
0.03303423151373863,
-0.025042934343218803,
-0.10782608389854431,
0.009975161403417587,
0.0022444494534283876,
0.03394931182265282,
0.04408763721585274,
-0.11822668462991714,
-0.30899152159690857,
-0.07652641832828522,
0.05490870401263237,
-0.06516939401626587,
-0.18425025045871735,
-0.13193942606449127,
0.02454492449760437,
-0.09037084132432938,
-0.044885024428367615,
-0.12759265303611755,
-0.028549788519740105,
0.01743689924478531,
0.011519349180161953,
0.10758619755506516,
-0.0106219332665205,
-0.012188062071800232,
-0.1571401208639145,
0.008273907005786896,
-0.20951123535633087,
0.0890483483672142,
-0.019150104373693466,
0.037884220480918884,
-0.032381169497966766,
-0.07404014468193054,
0.030707746744155884,
0.052499737590551376,
-0.01474119070917368,
0.13510210812091827,
-0.15592676401138306,
-0.03691192343831062,
-0.007996266707777977,
-0.13611900806427002,
-0.04786273464560509,
-0.10358831286430359,
-0.04357128217816353,
0.13354332745075226,
0.018664736300706863,
0.15356586873531342,
-0.08709818124771118,
-0.0722038671374321,
0.20489206910133362,
-0.010411538183689117,
-0.12820468842983246,
-0.076752208173275,
0.10165707021951675,
0.021510310471057892,
-0.056606587022542953,
-0.02523270808160305,
-0.1839766949415207,
-0.0152357779443264,
-0.04550420492887497,
-0.047039128839969635,
0.01796751655638218,
-0.010888241231441498,
0.13837894797325134,
0.08494598418474197,
0.05018039792776108,
-0.06086122244596481,
-0.006730288732796907,
0.10779471695423126,
0.08823856711387634,
0.008680110797286034,
0.023406028747558594,
-0.05774238705635071,
0.09552932530641556,
-0.04003755748271942,
-0.0142367510125041,
-0.08283266425132751,
-0.036246106028556824,
-0.026256313547492027,
0.17507147789001465,
0.09440762549638748,
0.2257927656173706,
0.09567736834287643,
0.039160262793302536,
0.031270865350961685,
-0.13181598484516144,
-0.1425403207540512,
-0.0017254541162401438,
0.09020978957414627,
-0.14270411431789398,
-0.04119925573468208,
-0.08974775671958923,
-0.17768175899982452,
-0.12202505767345428,
0.0006432619411498308,
-0.17960017919540405,
0.06390921026468277,
0.05408334732055664,
-0.035177867859601974,
0.03272094577550888,
0.13032332062721252,
-0.011533179320394993,
-0.03967514634132385,
0.0831870287656784,
0.0379033200442791,
-0.041234664618968964,
-0.021742934361100197,
0.11885567009449005,
0.15673065185546875,
0.13124459981918335,
-0.03511447086930275,
0.004914294462651014,
0.07076404243707657,
-0.02309088408946991,
0.06539414077997208,
0.0558244064450264,
0.20973342657089233,
0.188301220536232,
0.038996949791908264,
0.008822928182780743,
-0.07048165798187256,
0.0855446457862854,
-0.0742373839020729,
-0.14302679896354675,
-0.05579735338687897,
0.08729292452335358,
0.016605578362941742,
0.023469142615795135,
0.08711627870798111,
0.024545932188630104,
0.09132762253284454,
0.15968108177185059,
0.01990218088030815,
-0.09659269452095032,
-0.050218869000673294,
0.01175848301500082,
0.027713103219866753,
0.04794301092624664,
-0.04514073207974434,
-0.00937939714640379,
0.017020760104060173,
-0.10303554683923721,
0.031789086759090424,
-0.1413339376449585,
-0.1358717679977417,
0.044326696544885635,
0.003906996920704842,
0.010907664895057678,
0.02786896750330925,
-0.0038291432429105043,
0.019039705395698547,
0.04351753741502762,
-0.06975466758012772,
0.047416772693395615,
-0.024745507165789604,
-0.020031947642564774,
0.03340689837932587,
-0.057257164269685745,
-0.205775648355484,
-0.17696654796600342,
0.00013708483311347663,
-0.09910997003316879,
0.10194740444421768,
0.018308809027075768,
-0.12373185902833939,
0.047737859189510345,
-0.05822649225592613,
0.027574289590120316,
-0.01875593699514866,
-0.049130141735076904,
0.10507171601057053,
0.1525275856256485,
-0.016146350651979446,
0.018018173053860664,
-0.04865182936191559,
-0.10157987475395203,
-0.19632206857204437,
0.0691583976149559,
0.04680244252085686,
0.014610917307436466,
0.10669491440057755,
0.018072687089443207,
0.02367905154824257,
-0.007674071006476879,
-0.016521066427230835,
-0.011659215204417706,
-0.08781040459871292,
0.31909599900245667,
0.04510033503174782,
-0.025173069909214973,
0.02041010931134224,
-0.0043001663871109486,
-0.028083480894565582,
0.03263787180185318,
-0.0985708013176918,
-0.07548979669809341,
-0.08774089068174362,
-0.04367410019040108,
-0.09784720093011856,
0.053299110382795334,
0.05916472524404526,
0.003188040340319276,
-0.07727594673633575,
0.04221395403146744,
0.11369874328374863,
-0.0923808291554451,
-0.07137343287467957,
0.07477962225675583,
0.0972946360707283,
-0.07331304252147675,
0.00012658814375754446,
0.00874367356300354,
0.023951783776283264,
0.037102166563272476,
0.06778035312891006,
-0.03966575115919113,
0.08589404821395874,
-0.19917890429496765,
0.0372927263379097,
0.106058269739151,
0.023754918947815895,
0.0638108178973198,
0.07643651217222214,
-0.1058402881026268,
-0.008500572293996811,
-0.032518330961465836,
-0.21341575682163239,
0.1668180525302887,
0.1355515867471695,
0.06788124144077301,
-0.025637222453951836,
-0.00461410591378808,
-0.0649740919470787,
0.05773647129535675,
0.02723747305572033,
-0.14758841693401337,
0.004883295856416225,
0.06064270809292793,
0.026899009943008423,
0.01614922471344471,
0.07971042394638062,
0.014697225764393806,
-0.1801026314496994,
-0.014406266622245312,
0.10730406641960144,
0.002390873385593295,
0.0053148469887673855,
-0.03175045922398567,
-0.1755964607000351,
0.0751047357916832,
0.004285442177206278,
0.07233936339616776,
-0.1676585078239441,
0.14297930896282196,
-0.10089799761772156,
0.07726949453353882,
-0.004285062663257122,
-0.021311495453119278,
0.02507244050502777,
-0.0541163794696331,
0.15163759887218475,
0.01058570109307766,
-0.021810131147503853,
-0.1200498715043068,
-0.1717042326927185,
-0.019227758049964905,
-0.11788936704397202,
-0.11679866164922714,
0.050424277782440186,
0.062185097485780716,
0.04923136904835701,
-0.061147067695856094,
0.1518532931804657,
-0.047422297298908234,
0.060713399201631546,
-0.06893875449895859,
-0.06755045056343079,
0.03764858841896057,
-0.12588608264923096,
-0.08176055550575256,
0.05573027580976486,
0.19166934490203857,
0.15833087265491486,
-0.02816431224346161,
-0.03472423925995827,
-0.047419581562280655,
-0.006212298292666674,
-0.007802055217325687,
0.0275666993111372,
0.023223137483000755,
0.07315318286418915,
-0.07681374251842499,
-0.11649256944656372,
0.033787861466407776,
-0.06713802367448807,
-0.055589709430933,
-0.015439179725944996,
0.1513158082962036,
0.04671623185276985,
0.07720734924077988,
-0.018946662545204163,
0.03887668624520302,
-0.001724981120787561,
-0.056474871933460236,
0.16197094321250916,
0.03885216265916824,
-0.05193585529923439,
0.06837689876556396,
0.053174007683992386,
0.043745119124650955,
0.03011113777756691,
-0.026783017441630363,
0.206032395362854,
0.1980147808790207,
0.014206883497536182,
0.2175983190536499,
0.03177616000175476,
-0.03772832080721855,
-0.1300560086965561,
-0.065880686044693,
-0.006372632458806038,
0.03559038043022156,
0.08070417493581772,
-0.18207235634326935,
-0.015011128038167953,
-0.05689644813537598,
-0.034518610686063766,
-0.15059494972229004,
-0.28553900122642517,
-0.05957856774330139,
0.20075850188732147,
0.14706264436244965,
0.27519428730010986,
-0.10432573407888412,
0.035197313874959946,
0.02663275972008705,
-0.04912831634283066,
-0.006501141935586929,
0.00018665487004909664,
0.10268618166446686,
-0.15421873331069946,
0.1176437959074974,
0.08486983180046082,
-0.019002694636583328,
0.01058861706405878,
-0.1619086116552353,
0.00936629343777895,
-0.12191236019134521,
0.05354422330856323,
0.1400289237499237,
-0.048128653317689896,
-0.054873593151569366,
0.14033560454845428,
-0.024562934413552284,
-0.22685599327087402,
-0.04648222774267197,
-0.043600670993328094,
-0.010640020482242107,
0.026607351377606392,
-0.1013401448726654,
0.04101909324526787,
0.1330099105834961,
0.009380043484270573,
0.1147187277674675,
0.11749245226383209,
-0.052566803991794586,
0.10792597383260727,
0.2257719188928604,
-0.018785694614052773,
0.04689010605216026,
-0.12743118405342102,
-0.0012336712097749114,
-0.028270328417420387,
0.013657891191542149,
-0.09504974633455276,
-0.09938385337591171,
0.02366873063147068,
0.02872389927506447,
0.009118586778640747,
0.0921793207526207,
-0.029922157526016235,
0.0759170651435852,
0.06817561388015747,
-0.13014446198940277,
-0.16288450360298157,
0.015828335657715797,
-0.007344507612287998,
0.08354310691356659,
0.00027861111448146403,
0.08878035843372345,
-0.11932205408811569,
-0.018093237653374672,
-0.03153328225016594,
-0.03319635987281799,
-0.130486860871315,
-0.07138993591070175,
0.06156524643301964,
0.028095467016100883,
-0.06602972000837326,
0.1398407518863678,
0.026440169662237167,
0.15942534804344177,
0.049197953194379807,
0.012499804608523846,
0.07227300107479095,
-0.05345509201288223,
0.1283530443906784,
0.13818155229091644,
-0.00868943240493536,
-0.05460423603653908,
-0.1013643890619278,
-0.10236792266368866,
0.08925779908895493,
-0.05773641914129257,
0.07476430386304855,
-0.14885357022285461,
-0.06675903499126434,
0.015772046521306038,
0.016141414642333984,
-0.09562095999717712,
0.02571965754032135,
-0.01625603251159191,
-0.18119946122169495,
0.056570518761873245,
-0.048285093158483505,
0.0440407395362854,
-0.06347788125276566,
-0.1110161691904068,
-0.17226378619670868,
0.06091433763504028,
0.08593481779098511,
-0.053876690566539764,
-0.12229149043560028,
0.011023230850696564,
-0.00012518465518951416,
-0.06341652572154999,
-0.05023367330431938,
0.09722746908664703,
-0.11020902544260025,
0.031452205032110214,
-0.012567701749503613,
0.08853451162576675,
-0.03510405123233795,
-0.011538895778357983,
0.044220831245183945,
-0.08039166033267975,
-0.009481523185968399,
0.03534642979502678,
-0.026372017338871956,
-0.04127239063382149,
-0.2689029574394226,
0.0036654395516961813,
0.0341104120016098,
0.02497158572077751,
0.07856601476669312,
0.011906822212040424,
0.021174922585487366,
0.03993808850646019,
-0.15396519005298615,
-0.013395369984209538,
0.14574195444583893,
-0.07689505815505981,
-0.022186370566487312,
0.05703273415565491,
-0.09054436534643173,
0.013882770203053951,
-0.030287226662039757,
0.1345842480659485,
0.023923413828015327,
0.06404478847980499,
-0.0851147472858429,
0.10106813907623291,
-0.1451139897108078,
-0.04998219385743141,
-0.01244612317532301,
0.09761348366737366,
0.07019034773111343,
-0.10272270441055298,
0.014697125181555748,
0.04210108891129494,
0.19416837394237518,
0.016384804621338844,
-0.0356343574821949,
-0.03396720811724663,
0.004015897400677204,
0.22076453268527985,
0.03044266067445278,
0.10457023978233337,
0.07281364500522614,
-0.026583973318338394,
0.12624378502368927,
0.09929762035608292,
0.11280370503664017,
-0.055645186454057693,
0.13904185593128204,
0.04667386785149574,
0.038641396909952164,
0.0614289753139019,
0.06836545467376709,
0.09098632633686066,
-0.0008288522367365658,
0.1138714924454689,
0.013811973854899406,
-0.02422109805047512,
-0.021335409954190254,
0.17759373784065247,
0.10501719266176224,
-0.14769648015499115,
0.029047364369034767,
-0.01258957851678133,
0.039933037012815475,
-0.014194529503583908,
-0.15634691715240479,
-0.07240267097949982,
-0.3315149247646332,
0.1226184144616127,
-0.07119352370500565,
0.019930170848965645,
0.007913772016763687,
-0.037425633519887924,
-0.03296699747443199,
-0.04477746784687042,
0.13151589035987854,
-0.013641550205647945,
-0.006079165264964104,
-0.04815853759646416,
-0.015360191464424133,
-0.11607866734266281,
-0.11200575530529022,
-0.013207737356424332,
-0.13671602308750153,
-0.010119039565324783,
0.05595948174595833,
0.003977729007601738,
0.01821410097181797,
-0.03142618387937546,
0.0024383175186812878,
0.06541839241981506,
-0.05751744285225868,
0.056182678788900375,
0.12097269296646118,
0.08766137808561325,
-0.1058853268623352,
0.031048951670527458,
0.2011747509241104,
0.04359564557671547,
-0.12483977526426315,
0.01449228823184967,
0.1819491684436798,
0.004885740112513304,
0.017068125307559967,
-0.006097703706473112,
-0.0540788508951664,
-0.07554277032613754,
0.1251034289598465,
0.08296554535627365,
-0.09985227137804031,
0.015833314508199692,
-0.0726347416639328,
-0.01594804972410202,
-0.06374675035476685,
0.10130585730075836,
0.09538925439119339,
0.04440245032310486,
-0.10621760785579681,
-0.08487539738416672,
-0.10891728103160858,
0.040588874369859695,
-0.08629853278398514,
-0.07311757653951645,
0.09629398584365845,
-0.07057105004787445,
-0.07029950618743896,
0.025521177798509598,
-0.17978744208812714,
-0.009467960335314274,
0.1711762249469757,
-0.24654000997543335,
-0.0916430801153183,
-0.10857923328876495,
0.14477859437465668,
0.016497576609253883,
0.1013975441455841,
-0.006207061931490898,
-0.007889035157859325,
-0.20577777922153473,
0.024890204891562462,
-0.05293011665344238,
-0.02073732763528824,
0.07814782857894897,
-0.09476397186517715,
0.22629831731319427,
-0.08276885002851486,
0.020940175279974937,
0.012659613974392414,
0.0870661810040474,
-0.030675338581204414,
0.09283176809549332,
-0.03660329803824425,
-0.12576518952846527,
-0.03620953485369682,
0.03001813031733036,
0.013904244638979435,
0.10071761906147003,
0.09772487729787827,
-0.03414725139737129,
0.03389119729399681,
0.09747414290904999,
0.04172342270612717,
-0.023843804374337196,
0.0360250361263752,
-0.17077107727527618,
0.02182629331946373,
-0.018498148769140244,
-0.06935930997133255,
0.03687669709324837,
-0.06603235751390457,
0.1639697551727295,
0.04022442549467087,
0.0670473501086235,
-0.036152735352516174,
0.0073931049555540085,
-0.014454689808189869,
-0.013775371946394444,
-0.026180334389209747,
-0.17259705066680908,
-0.10422050207853317,
-0.1347656100988388,
-0.012701659463346004,
-0.034971047192811966,
0.04591470584273338,
0.023234914988279343,
-0.0003200018545612693,
-0.014577031135559082,
-0.12090865522623062,
0.04360328987240791,
0.11146783083677292,
-0.04631396010518074,
-0.026193076744675636
] |
null | null | transformers |
## Exllama v2 Quantizations of airoboros-2.2.1-y34b
Using <a href="https://github.com/turboderp/exllamav2/releases/tag/v0.0.7">turboderp's ExLlamaV2 v0.0.7</a> for quantization.
Each branch contains an individual bits per weight, with the main one containing only the meaurement.json for further conversions.
Conversion was done using wikitext-103-raw-v1-test.parquet as calibration dataset.
Original model: https://huggingface.co/Doctor-Shotgun/airoboros-2.2.1-y34b
<a href="https://huggingface.co/bartowski/airoboros-2.2.1-y34b-exl2/tree/3.75">3.75 bits per weight</a>
<a href="https://huggingface.co/bartowski/airoboros-2.2.1-y34b-exl2/tree/4.0">4.0 bits per weight</a>
<a href="https://huggingface.co/bartowski/airoboros-2.2.1-y34b-exl2/tree/4.25">4.25 bits per weight</a>
<a href="https://huggingface.co/bartowski/airoboros-2.2.1-y34b-exl2/tree/5.0">5.0 bits per weight</a>
<a href="https://huggingface.co/bartowski/airoboros-2.2.1-y34b-exl2/tree/6.0">6.0 bits per weight</a>
## Download instructions
With git:
```shell
git clone --single-branch --branch 4.0 https://huggingface.co/bartowski/airoboros-2.2.1-y34b-exl2
```
With huggingface hub (credit to TheBloke for instructions):
```shell
pip3 install huggingface-hub
```
To download the `main` (only useful if you only care about measurement.json) branch to a folder called `airoboros-2.2.1-y34b-exl2`:
```shell
mkdir airoboros-2.2.1-y34b-exl2
huggingface-cli download bartowski/airoboros-2.2.1-y34b-exl2 --local-dir airoboros-2.2.1-y34b-exl2 --local-dir-use-symlinks False
```
To download from a different branch, add the `--revision` parameter:
```shell
mkdir airoboros-2.2.1-y34b-exl2
huggingface-cli download bartowski/airoboros-2.2.1-y34b-exl2 --revision 4.0 --local-dir airoboros-2.2.1-y34b-exl2 --local-dir-use-symlinks False
```
| {"language": ["en"], "license": "other", "library_name": "transformers", "tags": ["Yi", "llama", "llama 2"], "datasets": ["jondurbin/airoboros-2.2.1"], "inference": false, "pipeline_tag": "text-generation", "license_name": "yi-license", "license_link": "LICENSE", "quantized_by": "bartowski"} | text-generation | bartowski/airoboros-2.2.1-y34b-exl2 | [
"transformers",
"Yi",
"llama",
"llama 2",
"text-generation",
"en",
"dataset:jondurbin/airoboros-2.2.1",
"license:other",
"region:us"
] | 2023-11-11T06:12:02+00:00 | [] | [
"en"
] | TAGS
#transformers #Yi #llama #llama 2 #text-generation #en #dataset-jondurbin/airoboros-2.2.1 #license-other #region-us
|
## Exllama v2 Quantizations of airoboros-2.2.1-y34b
Using <a href="URL ExLlamaV2 v0.0.7</a> for quantization.
Each branch contains an individual bits per weight, with the main one containing only the URL for further conversions.
Conversion was done using wikitext-103-raw-v1-test.parquet as calibration dataset.
Original model: URL
<a href="URL bits per weight</a>
<a href="URL bits per weight</a>
<a href="URL bits per weight</a>
<a href="URL bits per weight</a>
<a href="URL bits per weight</a>
## Download instructions
With git:
With huggingface hub (credit to TheBloke for instructions):
To download the 'main' (only useful if you only care about URL) branch to a folder called 'airoboros-2.2.1-y34b-exl2':
To download from a different branch, add the '--revision' parameter:
| [
"## Exllama v2 Quantizations of airoboros-2.2.1-y34b\n\nUsing <a href=\"URL ExLlamaV2 v0.0.7</a> for quantization.\n\nEach branch contains an individual bits per weight, with the main one containing only the URL for further conversions.\n\nConversion was done using wikitext-103-raw-v1-test.parquet as calibration dataset.\n\nOriginal model: URL\n \n<a href=\"URL bits per weight</a>\n \n<a href=\"URL bits per weight</a>\n \n<a href=\"URL bits per weight</a>\n \n<a href=\"URL bits per weight</a>\n \n<a href=\"URL bits per weight</a>",
"## Download instructions\n\nWith git:\n\n\n\nWith huggingface hub (credit to TheBloke for instructions):\n\n\n\nTo download the 'main' (only useful if you only care about URL) branch to a folder called 'airoboros-2.2.1-y34b-exl2':\n\n\n\nTo download from a different branch, add the '--revision' parameter:"
] | [
"TAGS\n#transformers #Yi #llama #llama 2 #text-generation #en #dataset-jondurbin/airoboros-2.2.1 #license-other #region-us \n",
"## Exllama v2 Quantizations of airoboros-2.2.1-y34b\n\nUsing <a href=\"URL ExLlamaV2 v0.0.7</a> for quantization.\n\nEach branch contains an individual bits per weight, with the main one containing only the URL for further conversions.\n\nConversion was done using wikitext-103-raw-v1-test.parquet as calibration dataset.\n\nOriginal model: URL\n \n<a href=\"URL bits per weight</a>\n \n<a href=\"URL bits per weight</a>\n \n<a href=\"URL bits per weight</a>\n \n<a href=\"URL bits per weight</a>\n \n<a href=\"URL bits per weight</a>",
"## Download instructions\n\nWith git:\n\n\n\nWith huggingface hub (credit to TheBloke for instructions):\n\n\n\nTo download the 'main' (only useful if you only care about URL) branch to a folder called 'airoboros-2.2.1-y34b-exl2':\n\n\n\nTo download from a different branch, add the '--revision' parameter:"
] | [
45,
163,
79
] | [
"passage: TAGS\n#transformers #Yi #llama #llama 2 #text-generation #en #dataset-jondurbin/airoboros-2.2.1 #license-other #region-us \n## Exllama v2 Quantizations of airoboros-2.2.1-y34b\n\nUsing <a href=\"URL ExLlamaV2 v0.0.7</a> for quantization.\n\nEach branch contains an individual bits per weight, with the main one containing only the URL for further conversions.\n\nConversion was done using wikitext-103-raw-v1-test.parquet as calibration dataset.\n\nOriginal model: URL\n \n<a href=\"URL bits per weight</a>\n \n<a href=\"URL bits per weight</a>\n \n<a href=\"URL bits per weight</a>\n \n<a href=\"URL bits per weight</a>\n \n<a href=\"URL bits per weight</a>## Download instructions\n\nWith git:\n\n\n\nWith huggingface hub (credit to TheBloke for instructions):\n\n\n\nTo download the 'main' (only useful if you only care about URL) branch to a folder called 'airoboros-2.2.1-y34b-exl2':\n\n\n\nTo download from a different branch, add the '--revision' parameter:"
] | [
-0.023007886484265327,
0.13418160378932953,
-0.004555884283035994,
0.07392420619726181,
0.0982305109500885,
0.04990373179316521,
0.1252528429031372,
0.13982459902763367,
0.11274805665016174,
0.04674643650650978,
-0.02813080884516239,
0.014669242314994335,
0.0514841303229332,
0.13825561106204987,
-0.018010225147008896,
-0.17188483476638794,
0.013482565060257912,
0.0071803610771894455,
0.0787370428442955,
0.0033494574017822742,
0.03262852504849434,
-0.04125848412513733,
0.1382950097322464,
-0.0082327201962471,
-0.1377374231815338,
0.09696655720472336,
-0.01119224913418293,
0.04597316309809685,
0.023846235126256943,
0.06388352066278458,
0.07272590696811676,
-0.0007394719286821783,
0.07156530022621155,
-0.1841554194688797,
0.014245460741221905,
0.05527522414922714,
-0.055667947977781296,
0.07533123344182968,
-0.047120511531829834,
-0.1469757854938507,
0.06943055242300034,
-0.05995039641857147,
-0.009240356273949146,
0.035334132611751556,
-0.0862145647406578,
0.026890387758612633,
-0.07578041404485703,
0.024631761014461517,
0.09207659959793091,
0.027208268642425537,
0.041680384427309036,
0.04517148435115814,
-0.05084306746721268,
0.04164857417345047,
0.3262714147567749,
-0.10113097727298737,
-0.0017553592333570123,
0.15883223712444305,
0.010809699073433876,
0.06553927809000015,
-0.11560587584972382,
0.029680659994482994,
0.06579858809709549,
-0.010864408686757088,
0.06981959939002991,
-0.08065389841794968,
-0.07833093404769897,
0.0039705014787614346,
-0.05563376098871231,
-0.03387515991926193,
0.07930517941713333,
0.06241558492183685,
-0.09378589689731598,
-0.049138642847537994,
-0.09346646070480347,
-0.06128286197781563,
-0.057823508977890015,
0.0722631961107254,
0.057080693542957306,
0.000030507269912050106,
-0.002245625015348196,
-0.17111262679100037,
-0.03663751110434532,
-0.05164141207933426,
-0.03072015941143036,
0.14776906371116638,
-0.027834545820951462,
0.049962159246206284,
0.06001787260174751,
0.15075741708278656,
-0.07456415146589279,
-0.0989471971988678,
-0.02202102169394493,
0.0027296608313918114,
-0.011120988987386227,
0.031102627515792847,
-0.018768684938549995,
0.0656476840376854,
0.05806908383965492,
0.17875245213508606,
0.02183365821838379,
0.0006015265244059265,
-0.06264561414718628,
0.008113120682537556,
0.015343202278017998,
0.09815146028995514,
-0.013861619867384434,
-0.10807442665100098,
0.10449226200580597,
0.05398337543010712,
0.0639592632651329,
-0.029915519058704376,
-0.140181303024292,
-0.028041930869221687,
-0.07356836646795273,
0.051506735384464264,
0.000422238081227988,
0.007331168744713068,
-0.09725335240364075,
-0.07391947507858276,
0.24883252382278442,
-0.09423666447401047,
0.021070966497063637,
-0.010460598394274712,
-0.026003632694482803,
0.030764292925596237,
0.13039948046207428,
0.03563285246491432,
-0.022190557792782784,
0.03438546881079674,
-0.09027760475873947,
0.029258454218506813,
-0.07094534486532211,
-0.10224758088588715,
0.0262526236474514,
-0.15288865566253662,
0.013386895880103111,
-0.05490587651729584,
-0.12309278547763824,
-0.01034146174788475,
0.03919724375009537,
-0.03835936263203621,
0.002629257505759597,
-0.0529169999063015,
-0.006150140427052975,
-0.055733323097229004,
0.011102471500635147,
-0.06050734221935272,
-0.02946288324892521,
-0.015594178810715675,
-0.017315013334155083,
0.09097390621900558,
-0.1299411803483963,
-0.012098428793251514,
-0.07694146782159805,
0.06616512686014175,
-0.17007091641426086,
0.13813497126102448,
-0.06185540929436684,
0.05039205029606819,
-0.10473722964525223,
0.038808465003967285,
-0.016805725172162056,
-0.04090521112084389,
0.0480729304254055,
0.11286552995443344,
-0.06889288127422333,
-0.05242098867893219,
0.0773298442363739,
-0.09058958292007446,
-0.1082025021314621,
0.07579091936349869,
-0.039201416075229645,
0.07746557146310806,
0.07863552123308182,
0.14743773639202118,
0.15601025521755219,
-0.17597797513008118,
-0.07475635409355164,
0.038735754787921906,
0.020213767886161804,
-0.007678705733269453,
0.022483590990304947,
0.04181085154414177,
0.01987067051231861,
0.026299642398953438,
-0.0555245503783226,
0.03322703391313553,
0.022637924179434776,
-0.03353817015886307,
-0.016739536076784134,
-0.05138996243476868,
-0.09123417735099792,
-0.056835826486349106,
-0.04717130959033966,
0.07468453049659729,
0.0016057442408055067,
0.10102003812789917,
0.14031608402729034,
-0.12099406868219376,
0.07665695995092392,
-0.015320650301873684,
0.02717139571905136,
-0.18792568147182465,
-0.031899742782115936,
-0.0762910544872284,
-0.03920504450798035,
0.05811585485935211,
-0.017617233097553253,
0.07658547908067703,
-0.010267580859363079,
0.023781677708029747,
0.030858082696795464,
-0.06499426066875458,
-0.0007491618162021041,
0.009407212026417255,
-0.04237788915634155,
-0.0420871339738369,
-0.09220073372125626,
-0.09497619420289993,
-0.04870256036520004,
0.10254621505737305,
-0.07498371601104736,
0.03793111443519592,
0.0623297356069088,
0.08582969754934311,
0.08323302865028381,
-0.03194728493690491,
0.040135741233825684,
-0.08627470582723618,
-0.03381142392754555,
-0.0823732316493988,
-0.03546430915594101,
0.011952601373195648,
-0.15911296010017395,
0.09312167018651962,
-0.024029100313782692,
0.037689365446567535,
0.09767959266901016,
0.08224496245384216,
0.05623336508870125,
-0.12998925149440765,
-0.05254369229078293,
-0.024029452353715897,
-0.032369472086429596,
-0.02351333014667034,
0.07498323917388916,
0.06712857633829117,
0.09473524987697601,
-0.08367250859737396,
-0.03604951873421669,
-0.013272324576973915,
-0.0413723886013031,
0.0005706013762392104,
0.03041706047952175,
0.019005587324500084,
-0.060175202786922455,
0.019467713311314583,
-0.01328777801245451,
-0.09979665279388428,
0.1509077250957489,
0.041419073939323425,
-0.05946049466729164,
-0.041785188019275665,
-0.00584836769849062,
0.03928877413272858,
0.07817013561725616,
0.04555106535553932,
0.028846237808465958,
0.03476525470614433,
-0.03277893364429474,
0.061605341732501984,
-0.09276377409696579,
0.007549808360636234,
-0.029437191784381866,
-0.1237599328160286,
0.0554993562400341,
-0.028073111549019814,
-0.04871760308742523,
0.009495784528553486,
-0.006683934014290571,
0.11057648807764053,
-0.016472196206450462,
-0.035428743809461594,
-0.06628521531820297,
0.09544108808040619,
-0.020405465736985207,
-0.15455250442028046,
-0.22631679475307465,
-0.1293720304965973,
-0.15765810012817383,
0.028627565130591393,
0.02004515938460827,
-0.011507019400596619,
-0.03876104578375816,
-0.12485907971858978,
0.11352873593568802,
0.08567199110984802,
-0.007703527808189392,
-0.10301949828863144,
0.030369190499186516,
0.017108354717493057,
-0.1364329755306244,
-0.016217930242419243,
0.0070126671344041824,
-0.08148393034934998,
0.00044024724047631025,
-0.08517266064882278,
0.10429678857326508,
0.009174698032438755,
-0.018618421629071236,
0.0032259386498481035,
0.014135411009192467,
0.20655953884124756,
-0.029903855174779892,
0.09213024377822876,
0.1436711996793747,
0.038296572864055634,
0.10598473995923996,
0.08429563790559769,
0.03723553940653801,
-0.07386090606451035,
0.029901709407567978,
0.07230451703071594,
-0.02010207250714302,
-0.10835118591785431,
-0.04710589721798897,
-0.05843585729598999,
0.00257296790368855,
0.14737148582935333,
0.04712072014808655,
-0.008809899911284447,
0.13213948905467987,
-0.07755877077579498,
0.14353595674037933,
-0.033711958676576614,
0.09921184927225113,
0.006792018655687571,
0.018574081361293793,
0.044291503727436066,
-0.07562132179737091,
-0.011375099420547485,
0.13184568285942078,
0.21211190521717072,
0.1162625402212143,
-0.1199476420879364,
0.16207823157310486,
0.04246778413653374,
0.06575595587491989,
0.012617568485438824,
0.14895783364772797,
-0.06862162798643112,
-0.00011463228292996064,
-0.02445344068109989,
-0.07399091869592667,
-0.05225049704313278,
0.040197789669036865,
0.00740612531080842,
0.028314342722296715,
0.01803959719836712,
-0.0401289165019989,
0.08089719712734222,
0.15252792835235596,
0.04911595955491066,
-0.22628967463970184,
0.015047612600028515,
0.05547192320227623,
0.04579004645347595,
-0.05272073298692703,
-0.06977283209562302,
0.07686036080121994,
-0.04700465500354767,
0.06250384449958801,
-0.04636073485016823,
0.10736475884914398,
-0.10518185794353485,
-0.04386905953288078,
-0.041260890662670135,
0.15588830411434174,
-0.044466037303209305,
0.07074984163045883,
-0.14533521234989166,
-0.020438093692064285,
0.050830963999032974,
-0.001194284181110561,
-0.07334570586681366,
0.0010390847455710173,
0.03416416049003601,
0.015272421762347221,
0.029915666207671165,
0.004294555634260178,
0.1427808701992035,
-0.0908552035689354,
-0.11246895790100098,
0.04411402717232704,
0.006830868776887655,
-0.1675538420677185,
0.11669370532035828,
-0.007834915071725845,
-0.029152730479836464,
-0.013911832123994827,
0.010947290807962418,
-0.03598382696509361,
-0.1736365705728531,
-0.01222410798072815,
0.046899907290935516,
-0.06696966290473938,
-0.0025655971840023994,
0.016133645549416542,
0.14853189885616302,
0.17953956127166748,
0.08086518943309784,
-0.07262849062681198,
-0.12497508525848389,
-0.0010003186762332916,
0.1568540334701538,
-0.06720020622015,
0.040529027581214905,
-0.028549332171678543,
0.09388212859630585,
-0.09340420365333557,
-0.1026870384812355,
0.029775112867355347,
-0.03284316509962082,
-0.05275728926062584,
0.0014037179062142968,
0.09521611779928207,
-0.008908512070775032,
0.0212148055434227,
0.012063357047736645,
-0.055049698799848557,
-0.010178061202168465,
-0.15158888697624207,
-0.08862028270959854,
0.12215638160705566,
0.011356038972735405,
0.18849200010299683,
-0.05359264463186264,
-0.009313620626926422,
-0.06945376843214035,
0.086190365254879,
0.006642306689172983,
0.26463010907173157,
-0.018583595752716064,
0.04196587949991226,
0.10035193711519241,
-0.06108277291059494,
-0.1616940200328827,
-0.03122442029416561,
0.016563139855861664,
0.02104782871901989,
-0.007445219438523054,
-0.08153192698955536,
0.1623489111661911,
0.06873030215501785,
-0.020459501072764397,
0.11885230243206024,
-0.11353611946105957,
-0.07325175404548645,
-0.0465550534427166,
0.08440595120191574,
0.09182459861040115,
-0.05549833923578262,
-0.0330551452934742,
-0.15712085366249084,
-0.20409992337226868,
0.16149485111236572,
-0.06457655876874924,
0.10209043323993683,
-0.019554229453206062,
0.05881928652524948,
0.04424068704247475,
0.002306512091308832,
0.10303913056850433,
0.03490095213055611,
0.1103818416595459,
0.008590364828705788,
-0.04033811017870903,
0.185482457280159,
-0.10219030827283859,
0.1808316558599472,
-0.20021292567253113,
0.062149081379175186,
-0.02748623676598072,
-0.04109349846839905,
0.007399022579193115,
0.0904553011059761,
-0.014451215974986553,
-0.07982237637042999,
-0.11401724815368652,
-0.009876648895442486,
0.07762974500656128,
0.0643724799156189,
0.05464737489819527,
-0.0061705149710178375,
-0.0844959244132042,
0.21673181653022766,
0.008249550126492977,
-0.023426128551363945,
0.04877060279250145,
-0.01496867649257183,
-0.04382564127445221,
0.038008298724889755,
-0.24661283195018768,
0.09215900301933289,
0.049255456775426865,
-0.012017332948744297,
0.06572293490171432,
0.009740139357745647,
-0.09152383357286453,
0.025393277406692505,
0.08567061275243759,
-0.10352513194084167,
0.01357863936573267,
-0.045588426291942596,
-0.15865543484687805,
-0.19159232079982758,
0.053152672946453094,
0.18152634799480438,
-0.009180680848658085,
-0.011737091466784477,
0.017893003299832344,
0.011662685312330723,
-0.08078963309526443,
0.04499321058392525,
0.07123301923274994,
-0.0003925461496692151,
-0.10666997730731964,
0.11033166944980621,
0.0267109926789999,
-0.021089697256684303,
-0.0453169085085392,
0.028735892847180367,
-0.05537315830588341,
-0.03877435252070427,
-0.06739620119333267,
0.10769734531641006,
-0.14503367245197296,
0.06708334386348724,
-0.08166392892599106,
0.012795722112059593,
-0.028380515053868294,
-0.0004279381246306002,
0.06587845087051392,
0.0828513577580452,
-0.01601991057395935,
0.012159932404756546,
-0.11597643792629242,
0.056816376745700836,
0.04535571485757828,
0.10802187025547028,
-0.14475920796394348,
0.002290225587785244,
-0.0032790270633995533,
0.05262529104948044,
-0.031161539256572723,
0.02782805636525154,
-0.07442017644643784,
-0.04541145637631416,
-0.07462338358163834,
0.11099889874458313,
-0.027171051129698753,
0.05542962998151779,
-0.019357481971383095,
-0.013033394701778889,
-0.06254512071609497,
0.031125012785196304,
-0.06482880562543869,
-0.046782560646533966,
-0.03779834508895874,
0.03979315236210823,
-0.07867363840341568,
-0.026118682697415352,
0.07114710658788681,
-0.12040975689888,
0.08289938420057297,
0.016673283651471138,
-0.039958253502845764,
0.008610664866864681,
-0.037215568125247955,
-0.0184902586042881,
0.11401577293872833,
0.01323451567441225,
0.04899824783205986,
0.06745482981204987,
-0.0009036666597239673,
0.025357119739055634,
0.050608642399311066,
-0.04869978502392769,
0.0828954353928566,
-0.11295098811388016,
-0.0188215933740139,
-0.08019107580184937,
-0.04543330520391464,
-0.03748536482453346,
0.04630720242857933,
0.15633763372898102,
0.07126131653785706,
0.10488180816173553,
0.007197011727839708,
0.023763714358210564,
-0.21209204196929932,
-0.02732076123356819,
0.015499121509492397,
-0.05869575962424278,
-0.04132159799337387,
-0.10243171453475952,
0.003882837248966098,
0.018208373337984085,
0.22288204729557037,
0.031470246613025665,
0.08054114878177643,
-0.07697839289903641,
0.059983715415000916,
0.0770934522151947,
0.0032544126734137535,
0.22047246992588043,
-0.0036357298959046602,
-0.01834244839847088,
-0.050270769745111465,
0.007080630864948034,
0.049584824591875076,
0.023342283442616463,
-0.12705673277378082,
0.03819843754172325,
0.02727191336452961,
0.08441697806119919,
0.05244522541761398,
0.03547975420951843,
0.0036514769308269024,
0.07412176579236984,
-0.006438084412366152,
-0.004233981017023325,
-0.017863411456346512,
0.06177439168095589,
0.11742857098579407,
-0.13478964567184448,
0.054995693266391754,
0.18441227078437805,
-0.052096206694841385,
-0.06245231628417969,
-0.20983941853046417,
-0.08666269481182098,
-0.15455396473407745,
0.0015314033953472972,
-0.13091881573200226,
0.00003599079354899004,
0.06889166682958603,
-0.051281996071338654,
0.04545643553137779,
0.10347611457109451,
-0.046725381165742874,
-0.0743967741727829,
0.01887625642120838,
0.021716220304369926,
-0.03528525307774544,
0.11080554127693176,
0.011207086965441704,
0.14832165837287903,
0.047604240477085114,
0.06304992735385895,
0.006516308058053255,
0.16278153657913208,
0.12081345915794373,
-0.07020241767168045,
-0.08878002315759659,
-0.015791645273566246,
-0.015907373279333115,
-0.009702025912702084,
0.16077211499214172,
0.027556007727980614,
-0.03706597536802292,
-0.013128874823451042,
0.13202612102031708,
-0.10416093468666077,
-0.059099700301885605,
-0.1366969496011734,
0.10997644066810608,
-0.017078671604394913,
0.05869648605585098,
-0.07745437324047089,
-0.08342371881008148,
0.007993404753506184,
0.13396073877811432,
0.15463097393512726,
-0.07542461156845093,
-0.002033535623922944,
0.01589006558060646,
-0.002862240420654416,
-0.026220902800559998,
0.04494941234588623,
0.00256301905028522,
0.05064689740538597,
0.0033702286891639233,
-0.014722761698067188,
0.03087269701063633,
-0.05304049700498581,
0.0045476434752345085,
0.005837460979819298,
-0.10187353193759918,
-0.05431249737739563,
-0.06292957067489624,
0.015287039801478386,
-0.040724847465753555,
-0.17208783328533173,
0.06340746581554413,
-0.1285695880651474,
-0.023067833855748177,
-0.07109669595956802,
-0.068975530564785,
0.0531933456659317,
0.04794032871723175,
-0.03520694002509117,
0.017406078055500984,
0.17276576161384583,
-0.05184343829751015,
-0.195043683052063,
-0.03711854666471481,
-0.020572688430547714,
-0.13442525267601013,
0.13840901851654053,
0.0015707931015640497,
-0.03902913257479668,
0.04616539552807808,
-0.020939886569976807,
-0.08176697790622711,
0.051087744534015656,
-0.05564635246992111,
-0.08568135648965836,
0.010379358194768429,
0.10164351016283035,
-0.055267583578825,
0.009108500555157661,
0.015149516984820366,
-0.10923458635807037,
-0.00039383891271427274,
0.05818864703178406,
0.027635639533400536,
-0.10658222436904907,
-0.07341483980417252,
-0.10145263373851776,
0.10179449617862701,
0.11770328134298325,
-0.007634697016328573,
0.06240403652191162,
-0.021154027432203293,
0.043865494430065155,
0.09612960368394852,
0.034952837973833084,
0.00023877518833614886,
-0.02559753879904747,
-0.04704952985048294,
0.06468849629163742,
-0.022422580048441887,
-0.20602697134017944,
-0.017213454470038414,
-0.026179082691669464,
-0.04783375561237335,
-0.03876461088657379,
0.11350835859775543,
0.06503093242645264,
0.056249454617500305,
0.0034443221520632505,
-0.3149864971637726,
0.027271434664726257,
0.06716129928827286,
-0.11090116947889328,
-0.11224368214607239
] |
null | null | transformers |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
should probably proofread and complete it, then remove this comment. -->
# distilbert-base-uncased-finetuned-emotion
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.2058
- Accuracy: 0.931
- F1: 0.9311
## Model description
More information needed
## Intended uses & limitations
More information needed
## Training and evaluation data
More information needed
## Training procedure
### Training hyperparameters
The following hyperparameters were used during training:
- learning_rate: 2e-05
- train_batch_size: 64
- eval_batch_size: 64
- seed: 42
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
- lr_scheduler_type: linear
- num_epochs: 2
### Training results
| Training Loss | Epoch | Step | Validation Loss | Accuracy | F1 |
|:-------------:|:-----:|:----:|:---------------:|:--------:|:------:|
| 0.8099 | 1.0 | 250 | 0.2986 | 0.9075 | 0.9047 |
| 0.2349 | 2.0 | 500 | 0.2058 | 0.931 | 0.9311 |
### Framework versions
- Transformers 4.16.2
- Pytorch 1.12.1+cu116
- Datasets 1.16.1
- Tokenizers 0.12.1
| {"license": "apache-2.0", "tags": ["generated_from_trainer"], "metrics": ["accuracy", "f1"], "model-index": [{"name": "distilbert-base-uncased-finetuned-emotion", "results": []}]} | text-classification | idcohen149/distilbert-base-uncased-finetuned-emotion | [
"transformers",
"pytorch",
"tensorboard",
"distilbert",
"text-classification",
"generated_from_trainer",
"license:apache-2.0",
"autotrain_compatible",
"endpoints_compatible",
"region:us"
] | 2023-11-11T06:13:21+00:00 | [] | [] | TAGS
#transformers #pytorch #tensorboard #distilbert #text-classification #generated_from_trainer #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us
| distilbert-base-uncased-finetuned-emotion
=========================================
This model is a fine-tuned version of distilbert-base-uncased on an unknown dataset.
It achieves the following results on the evaluation set:
* Loss: 0.2058
* Accuracy: 0.931
* F1: 0.9311
Model description
-----------------
More information needed
Intended uses & limitations
---------------------------
More information needed
Training and evaluation data
----------------------------
More information needed
Training procedure
------------------
### Training hyperparameters
The following hyperparameters were used during training:
* learning\_rate: 2e-05
* train\_batch\_size: 64
* eval\_batch\_size: 64
* seed: 42
* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
* lr\_scheduler\_type: linear
* num\_epochs: 2
### Training results
### Framework versions
* Transformers 4.16.2
* Pytorch 1.12.1+cu116
* Datasets 1.16.1
* Tokenizers 0.12.1
| [
"### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 64\n* eval\\_batch\\_size: 64\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 2",
"### Training results",
"### Framework versions\n\n\n* Transformers 4.16.2\n* Pytorch 1.12.1+cu116\n* Datasets 1.16.1\n* Tokenizers 0.12.1"
] | [
"TAGS\n#transformers #pytorch #tensorboard #distilbert #text-classification #generated_from_trainer #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us \n",
"### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 64\n* eval\\_batch\\_size: 64\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 2",
"### Training results",
"### Framework versions\n\n\n* Transformers 4.16.2\n* Pytorch 1.12.1+cu116\n* Datasets 1.16.1\n* Tokenizers 0.12.1"
] | [
57,
98,
4,
33
] | [
"passage: TAGS\n#transformers #pytorch #tensorboard #distilbert #text-classification #generated_from_trainer #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 64\n* eval\\_batch\\_size: 64\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 2### Training results### Framework versions\n\n\n* Transformers 4.16.2\n* Pytorch 1.12.1+cu116\n* Datasets 1.16.1\n* Tokenizers 0.12.1"
] | [
-0.09325473010540009,
0.08386339247226715,
-0.0022595084737986326,
0.12014902383089066,
0.1784151792526245,
0.026829451322555542,
0.12299606204032898,
0.12438599020242691,
-0.10550525784492493,
0.011225634254515171,
0.11643765866756439,
0.1830042153596878,
0.009987549856305122,
0.09978460520505905,
-0.05428124964237213,
-0.25998175144195557,
-0.017228441312909126,
0.05173791944980621,
-0.0837721973657608,
0.1410420686006546,
0.09567208588123322,
-0.13045258820056915,
0.07703018933534622,
0.0014670630916953087,
-0.22743427753448486,
0.010411577299237251,
0.013136114925146103,
-0.06135331466794014,
0.15280549228191376,
0.02086956426501274,
0.12933725118637085,
0.009513474069535732,
0.0804094448685646,
-0.18256573379039764,
0.009819472208619118,
0.0462711863219738,
0.0051130494102835655,
0.08823598921298981,
0.05325818806886673,
-0.0060097225941717625,
0.11416004598140717,
-0.08045381307601929,
0.053227782249450684,
0.02100546658039093,
-0.12276346981525421,
-0.22462551295757294,
-0.07891083508729935,
0.020152827724814415,
0.06551671028137207,
0.10570675879716873,
0.00008859531226335093,
0.1273050755262375,
-0.0962979793548584,
0.09578642249107361,
0.20854593813419342,
-0.27414068579673767,
-0.06523285061120987,
0.027336595579981804,
0.0070455437526106834,
0.0782870501279831,
-0.11051332950592041,
-0.026205778121948242,
0.052437517791986465,
0.049532148987054825,
0.13217569887638092,
-0.02982957288622856,
-0.1293383091688156,
0.014636661857366562,
-0.14176997542381287,
-0.03666364774107933,
0.1385735422372818,
0.021809324622154236,
-0.02560770884156227,
-0.038431908935308456,
-0.06349756568670273,
-0.15224429965019226,
-0.03714875131845474,
-0.008749785833060741,
0.04400843754410744,
-0.031204037368297577,
-0.056080467998981476,
-0.003917711786925793,
-0.11078588664531708,
-0.06926998496055603,
-0.0722457617521286,
0.14231449365615845,
0.03941463306546211,
0.011980452574789524,
-0.02886810712516308,
0.1148345023393631,
0.029975468292832375,
-0.1316755712032318,
0.033291012048721313,
0.03093334287405014,
0.003259257646277547,
-0.04451800510287285,
-0.06821698695421219,
-0.048874758183956146,
0.006723986007273197,
0.11230641603469849,
-0.06289303302764893,
0.0502358078956604,
0.026845233514904976,
0.04764050617814064,
-0.10014569759368896,
0.19020646810531616,
-0.024787908419966698,
0.0023017199710011482,
0.006460678763687611,
0.049646005034446716,
0.004722211975604296,
-0.010065161623060703,
-0.12141203135251999,
-0.00022415691637434065,
0.11544535309076309,
0.02054842747747898,
-0.07080909609794617,
0.07106443494558334,
-0.058183521032333374,
-0.025686530396342278,
0.016395214945077896,
-0.10121450573205948,
0.03347557410597801,
0.0020852626767009497,
-0.08382610231637955,
-0.019408805295825005,
0.030181055888533592,
0.012540129013359547,
-0.02863479219377041,
0.11041752994060516,
-0.07568208873271942,
0.04028269648551941,
-0.10198073089122772,
-0.10747522860765457,
0.016568085178732872,
-0.0759740024805069,
0.02483123540878296,
-0.1001574918627739,
-0.1629818230867386,
-0.015564300119876862,
0.059821080416440964,
-0.024716105312108994,
-0.05888925492763519,
-0.05120592191815376,
-0.07229836285114288,
0.014057940803468227,
-0.015884054824709892,
0.15088285505771637,
-0.05717751011252403,
0.1146998330950737,
0.037941548973321915,
0.06785513460636139,
-0.04911476746201515,
0.06382062286138535,
-0.09709584712982178,
0.0006753471097908914,
-0.18073049187660217,
0.0519690103828907,
-0.05121650546789169,
0.06664367765188217,
-0.08649041503667831,
-0.11354883015155792,
0.013195136561989784,
-0.004583036992698908,
0.0658278837800026,
0.09240787476301193,
-0.1686462163925171,
-0.08079010248184204,
0.15029960870742798,
-0.07080767303705215,
-0.10582951456308365,
0.11624232679605484,
-0.060220398008823395,
0.05990877375006676,
0.07409065216779709,
0.16481834650039673,
0.08835430443286896,
-0.059581730514764786,
0.029734432697296143,
0.008341697975993156,
0.048238519579172134,
-0.0704168751835823,
0.05796971917152405,
0.005891037173569202,
-0.009723801165819168,
0.03549714758992195,
-0.03131803497672081,
0.06926900148391724,
-0.09498772025108337,
-0.0979338064789772,
-0.039298608899116516,
-0.09596295654773712,
0.06371848285198212,
0.08292461931705475,
0.09157546609640121,
-0.08804954588413239,
-0.06678203493356705,
0.08053348958492279,
0.07508184015750885,
-0.0629340410232544,
0.031673580408096313,
-0.05027514696121216,
0.054720714688301086,
-0.024940013885498047,
-0.017421558499336243,
-0.20250579714775085,
0.00018110263044945896,
0.011496908962726593,
-0.0005939605180174112,
0.021596647799015045,
0.019653895869851112,
0.07126332074403763,
0.05723883584141731,
-0.05923100560903549,
-0.021269114688038826,
-0.026014333590865135,
-0.008840440772473812,
-0.1345231831073761,
-0.1893838495016098,
-0.02116171084344387,
-0.018246140331029892,
0.1379433423280716,
-0.19999191164970398,
0.04164908081293106,
-0.0101504847407341,
0.06242482364177704,
0.000592895841691643,
-0.0008961026323959231,
-0.04775046184659004,
0.08989429473876953,
-0.03460623323917389,
-0.045016098767519,
0.08116524666547775,
0.004628071561455727,
-0.08375749737024307,
-0.038930945098400116,
-0.0910584032535553,
0.16982711851596832,
0.14046581089496613,
-0.12728258967399597,
-0.07748629152774811,
-0.005323552060872316,
-0.05953076481819153,
-0.03422866761684418,
-0.03517263010144234,
0.03685884177684784,
0.18458834290504456,
-0.015636777505278587,
0.15690718591213226,
-0.06817065179347992,
-0.047573525458574295,
0.018772823736071587,
-0.03429006412625313,
0.03401569277048111,
0.12479277700185776,
0.11612796783447266,
-0.07983303815126419,
0.1446954309940338,
0.15368445217609406,
-0.0990820825099945,
0.13563385605812073,
-0.04670027270913124,
-0.06173691153526306,
-0.005492480006068945,
-0.01676025241613388,
0.0008856471395120025,
0.07986851036548615,
-0.14277581870555878,
-0.0032212473452091217,
0.019655728712677956,
0.018674274906516075,
0.02838781289756298,
-0.23346035182476044,
-0.03475088253617287,
0.025946268811821938,
-0.04195207357406616,
-0.003435942344367504,
-0.02107241563498974,
0.012269374914467335,
0.10897544771432877,
-0.002163207856938243,
-0.08133287727832794,
0.045140840113162994,
0.003960754722356796,
-0.08164619654417038,
0.2223273366689682,
-0.09472585469484329,
-0.16599063575267792,
-0.13030925393104553,
-0.07449481636285782,
-0.03270047903060913,
0.012864634394645691,
0.06012390926480293,
-0.10403850674629211,
-0.020127659663558006,
-0.05077483132481575,
0.024818098172545433,
-0.003837994998320937,
0.03677097335457802,
0.00616114167496562,
0.01172750536352396,
0.0715191513299942,
-0.11273123323917389,
-0.005874298978596926,
-0.05274389684200287,
-0.06708939373493195,
0.05938144400715828,
0.030669135972857475,
0.10298781841993332,
0.1658962517976761,
-0.023017173632979393,
0.004979174584150314,
-0.027673939242959023,
0.217610165476799,
-0.06692792475223541,
-0.025887228548526764,
0.1362847238779068,
-0.011126923374831676,
0.05666257068514824,
0.09867545962333679,
0.07244205474853516,
-0.08895929157733917,
0.016267690807580948,
0.0221271850168705,
-0.036291856318712234,
-0.23335875570774078,
-0.05341406539082527,
-0.057435423135757446,
-0.021556084975600243,
0.09858470410108566,
0.029012903571128845,
0.04379044845700264,
0.06581665575504303,
0.041825927793979645,
0.0848587304353714,
-0.03231021389365196,
0.04427728056907654,
0.12860019505023956,
0.04136008396744728,
0.1215028390288353,
-0.04685864970088005,
-0.07033092528581619,
0.02995913103222847,
-0.012866861186921597,
0.21948975324630737,
0.004707388114184141,
0.13103193044662476,
0.05664336681365967,
0.17873622477054596,
0.005107725039124489,
0.09021421521902084,
-0.0021156552247703075,
-0.038430355489254,
-0.00872074719518423,
-0.03862566500902176,
-0.04884502664208412,
0.014028584584593773,
-0.06318216025829315,
0.050577159970998764,
-0.11760123819112778,
-0.016630208119750023,
0.051424384117126465,
0.2505747675895691,
0.02170536480844021,
-0.3187289237976074,
-0.0864536464214325,
0.0025707916356623173,
-0.032774779945611954,
-0.020830506458878517,
0.0154429841786623,
0.09078674018383026,
-0.09859687089920044,
0.022452563047409058,
-0.06986212730407715,
0.09515587240457535,
-0.05026712268590927,
0.0453050397336483,
0.06850569695234299,
0.07624716311693192,
0.01610524207353592,
0.0905701071023941,
-0.3186103105545044,
0.266557902097702,
0.002126123523339629,
0.06581047922372818,
-0.08287767320871353,
0.0038411817513406277,
0.03533486649394035,
0.06089562177658081,
0.05051804706454277,
-0.012113877572119236,
-0.016922201961278915,
-0.1950370967388153,
-0.05708789452910423,
0.02609887719154358,
0.0923711359500885,
-0.031061410903930664,
0.082769975066185,
-0.026757072657346725,
0.007809551898390055,
0.0763985812664032,
-0.04225015640258789,
-0.04942934960126877,
-0.10408643633127213,
-0.010651142336428165,
0.011135438457131386,
-0.03823481500148773,
-0.0625443160533905,
-0.11841117590665817,
-0.11597058176994324,
0.15137098729610443,
-0.029902713373303413,
-0.03981610760092735,
-0.10939708352088928,
0.08574692159891129,
0.07651238143444061,
-0.08589338511228561,
0.04942500591278076,
0.006636106874793768,
0.06100259721279144,
0.027009764686226845,
-0.07775096595287323,
0.10616689920425415,
-0.061936452984809875,
-0.16329047083854675,
-0.052880674600601196,
0.10914473235607147,
0.03796845301985741,
0.06383631378412247,
-0.012698432430624962,
0.009015130810439587,
-0.03897836059331894,
-0.09220016002655029,
0.02090759389102459,
-0.013852526433765888,
0.07920029014348984,
0.026942366734147072,
-0.07006818801164627,
0.004546612035483122,
-0.06499268114566803,
-0.03409045189619064,
0.19753198325634003,
0.21767973899841309,
-0.09497930854558945,
0.02720036543905735,
0.04159789904952049,
-0.07312710583209991,
-0.20955491065979004,
0.042579665780067444,
0.06849749386310577,
0.004763382952660322,
0.03200053796172142,
-0.1942208856344223,
0.12396206706762314,
0.09579870104789734,
-0.013004163280129433,
0.10761735588312149,
-0.33833038806915283,
-0.1253667175769806,
0.11879722028970718,
0.14238792657852173,
0.11856163293123245,
-0.14112593233585358,
-0.022540753707289696,
-0.025317268446087837,
-0.10999608039855957,
0.10837157815694809,
-0.08039568364620209,
0.12328772246837616,
-0.03636017441749573,
0.0806288793683052,
0.0018985385540872812,
-0.058990228921175,
0.11814969033002853,
0.021266624331474304,
0.0947011262178421,
-0.061129551380872726,
-0.02900577336549759,
0.046119239181280136,
-0.03296946734189987,
0.008068034425377846,
-0.08052423596382141,
0.030800852924585342,
-0.10070271790027618,
-0.020190278068184853,
-0.08261346071958542,
0.04468362033367157,
-0.03757131099700928,
-0.05543919652700424,
-0.030817240476608276,
0.019965054467320442,
0.043227121233940125,
-0.013078819960355759,
0.11683597415685654,
0.02678818069398403,
0.14593979716300964,
0.13212834298610687,
0.07366561889648438,
-0.0499289445579052,
-0.05539054051041603,
-0.018489666283130646,
-0.013855421915650368,
0.059348106384277344,
-0.14437736570835114,
0.02845223993062973,
0.14402402937412262,
0.021188242360949516,
0.13236333429813385,
0.08822204172611237,
-0.016982579603791237,
0.006793660577386618,
0.06513947993516922,
-0.16389723122119904,
-0.07860908657312393,
-0.006998409517109394,
-0.05785980820655823,
-0.10128910094499588,
0.04522932693362236,
0.08260364830493927,
-0.06601303815841675,
-0.011840565130114555,
-0.005006933119148016,
0.0042694141156971455,
-0.060369811952114105,
0.20661084353923798,
0.06306254863739014,
0.051706619560718536,
-0.10694539546966553,
0.07616768032312393,
0.060067396610975266,
-0.07609586417675018,
-0.0015312832547351718,
0.07799601554870605,
-0.08634841442108154,
-0.04998691380023956,
0.10626286268234253,
0.16528064012527466,
-0.05335500091314316,
-0.043296173214912415,
-0.1354476660490036,
-0.12509074807167053,
0.07704433798789978,
0.1538340002298355,
0.1217213049530983,
0.018963413313031197,
-0.06511557102203369,
0.010071643628180027,
-0.12270955741405487,
0.081515371799469,
0.037988677620887756,
0.06608866900205612,
-0.12993834912776947,
0.16288474202156067,
0.014998294413089752,
0.05040675401687622,
-0.02428988367319107,
0.02259254641830921,
-0.10050760954618454,
0.020246149972081184,
-0.11402065306901932,
-0.02620953880250454,
-0.01061615627259016,
0.005863190162926912,
-0.009465600363910198,
-0.0531618706882,
-0.04660158231854439,
0.015389070846140385,
-0.12143076211214066,
-0.022008458152413368,
0.024266375228762627,
0.056790824979543686,
-0.11336379498243332,
-0.04454141482710838,
0.03011162579059601,
-0.06319225579500198,
0.06652829796075821,
0.0548650398850441,
0.011353223584592342,
0.0685291439294815,
-0.13287761807441711,
-0.00547751085832715,
0.08178485929965973,
0.018640637397766113,
0.060266684740781784,
-0.08490313589572906,
-0.00664310110732913,
0.005575387738645077,
0.0661129578948021,
0.02339359186589718,
0.08783826977014542,
-0.14423158764839172,
0.010661289095878601,
-0.03982750326395035,
-0.0876404345035553,
-0.06840319186449051,
0.03411797434091568,
0.08374013751745224,
0.014165406115353107,
0.19426974654197693,
-0.07882045954465866,
0.041604574769735336,
-0.21016399562358856,
0.00132786447647959,
-0.017288655042648315,
-0.11652851849794388,
-0.12494667619466782,
-0.06921529024839401,
0.062315598130226135,
-0.04990532621741295,
0.1344100534915924,
0.03066720999777317,
0.035803377628326416,
0.02404847741127014,
-0.014530842192471027,
0.006004204973578453,
0.026294171810150146,
0.2133287787437439,
0.03854469954967499,
-0.033553700894117355,
0.0721869096159935,
0.05408736690878868,
0.09366419911384583,
0.11467302590608597,
0.19058725237846375,
0.1560240238904953,
-0.021947678178548813,
0.08678893744945526,
0.027074474841356277,
-0.047499820590019226,
-0.1549379676580429,
0.04650295525789261,
-0.051879990845918655,
0.09649442136287689,
-0.027557048946619034,
0.21633806824684143,
0.05328026041388512,
-0.16438667476177216,
0.05085429549217224,
-0.05311904847621918,
-0.09503359347581863,
-0.10363944619894028,
-0.027203138917684555,
-0.08203686773777008,
-0.13971680402755737,
-0.0030443379655480385,
-0.10663940012454987,
0.010982203297317028,
0.10990604013204575,
0.0033800320234149694,
-0.028738614171743393,
0.15554279088974,
0.04380855709314346,
0.015833929181098938,
0.06150718405842781,
-0.00026157699176110327,
-0.027598032727837563,
-0.1094152107834816,
-0.06690195202827454,
-0.01698329672217369,
-0.003804807085543871,
0.03657446801662445,
-0.05258164554834366,
-0.0711643397808075,
0.0350852906703949,
-0.03115803934633732,
-0.09745434671640396,
0.015494531951844692,
0.02299424633383751,
0.06425479054450989,
0.04660676047205925,
0.007649094332009554,
0.009150547906756401,
-0.010688958689570427,
0.21855749189853668,
-0.07571977376937866,
-0.08723443001508713,
-0.08643332123756409,
0.27330151200294495,
0.045311469584703445,
-0.004446618724614382,
0.03601532801985741,
-0.05958840250968933,
-0.0037570116110146046,
0.25097978115081787,
0.20026299357414246,
-0.0905691385269165,
-0.007304517086595297,
0.009915967471897602,
-0.00879141129553318,
-0.01223740354180336,
0.12787526845932007,
0.14791914820671082,
0.04572458937764168,
-0.106655053794384,
-0.0452411063015461,
-0.05614496394991875,
-0.015869388356804848,
-0.0473296120762825,
0.0671166405081749,
0.03658512979745865,
0.0003487856301944703,
-0.04088391736149788,
0.061852991580963135,
-0.06853407621383667,
-0.09339901059865952,
0.05962485820055008,
-0.20950905978679657,
-0.1631181687116623,
-0.013630826026201248,
0.11223521828651428,
-0.00480063259601593,
0.0587635338306427,
-0.026758983731269836,
0.0027891765348613262,
0.0645376592874527,
-0.023770693689584732,
-0.09085556864738464,
-0.06861554086208344,
0.09133714437484741,
-0.12050803005695343,
0.17784276604652405,
-0.04312317073345184,
0.075319804251194,
0.118815116584301,
0.07165487855672836,
-0.0635034441947937,
0.06047963723540306,
0.033980902284383774,
-0.07017167657613754,
0.03669799864292145,
0.08658488094806671,
-0.02905118837952614,
0.03864958509802818,
0.039333049207925797,
-0.12125512957572937,
0.026804208755493164,
-0.07068689167499542,
-0.05382378399372101,
-0.04200330749154091,
-0.04777047038078308,
-0.056471988558769226,
0.11757875978946686,
0.22112137079238892,
-0.0249289870262146,
0.013029174879193306,
-0.07612750679254532,
0.0023969942703843117,
0.048346053808927536,
0.018914690241217613,
-0.07997621595859528,
-0.232279434800148,
0.001653761719353497,
0.056978147476911545,
-0.01863749697804451,
-0.2285199761390686,
-0.08946191519498825,
-0.00418974831700325,
-0.07398436963558197,
-0.09935921430587769,
0.08255712687969208,
0.06911615282297134,
0.049400694668293,
-0.05102157965302467,
-0.08231835812330246,
-0.08253149688243866,
0.15782375633716583,
-0.15795232355594635,
-0.08792059123516083
] |
null | null | transformers |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
should probably proofread and complete it, then remove this comment. -->
# bert-base-finetuned-ynat
This model is a fine-tuned version of [klue/bert-base](https://huggingface.co/klue/bert-base) on the klue dataset.
It achieves the following results on the evaluation set:
- Loss: 0.3817
- F1: 0.8673
## Model description
More information needed
## Intended uses & limitations
More information needed
## Training and evaluation data
More information needed
## Training procedure
### Training hyperparameters
The following hyperparameters were used during training:
- learning_rate: 2e-05
- train_batch_size: 256
- eval_batch_size: 256
- seed: 1
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
- lr_scheduler_type: linear
- lr_scheduler_warmup_steps: 100
- num_epochs: 10
### Training results
| Training Loss | Epoch | Step | Validation Loss | F1 |
|:-------------:|:-----:|:----:|:---------------:|:------:|
| No log | 1.0 | 179 | 0.3817 | 0.8673 |
| No log | 2.0 | 358 | 0.4065 | 0.8634 |
| 0.2194 | 3.0 | 537 | 0.4077 | 0.8624 |
| 0.2194 | 4.0 | 716 | 0.4443 | 0.8584 |
| 0.2194 | 5.0 | 895 | 0.4795 | 0.8569 |
| 0.1477 | 6.0 | 1074 | 0.5159 | 0.8570 |
| 0.1477 | 7.0 | 1253 | 0.5445 | 0.8569 |
| 0.1477 | 8.0 | 1432 | 0.5711 | 0.8565 |
| 0.0849 | 9.0 | 1611 | 0.5913 | 0.8542 |
| 0.0849 | 10.0 | 1790 | 0.5945 | 0.8553 |
### Framework versions
- Transformers 4.34.1
- Pytorch 2.1.0+cu118
- Datasets 2.14.6
- Tokenizers 0.14.1
| {"license": "cc-by-sa-4.0", "tags": ["generated_from_trainer"], "datasets": ["klue"], "metrics": ["f1"], "base_model": "klue/bert-base", "model-index": [{"name": "bert-base-finetuned-ynat", "results": [{"task": {"type": "text-classification", "name": "Text Classification"}, "dataset": {"name": "klue", "type": "klue", "config": "ynat", "split": "validation", "args": "ynat"}, "metrics": [{"type": "f1", "value": 0.8673393457362918, "name": "F1"}]}]}]} | text-classification | kyeul611/roberta-large-finetuned-ynat | [
"transformers",
"pytorch",
"roberta",
"text-classification",
"generated_from_trainer",
"dataset:klue",
"base_model:klue/bert-base",
"license:cc-by-sa-4.0",
"model-index",
"autotrain_compatible",
"endpoints_compatible",
"region:us"
] | 2023-11-11T06:13:27+00:00 | [] | [] | TAGS
#transformers #pytorch #roberta #text-classification #generated_from_trainer #dataset-klue #base_model-klue/bert-base #license-cc-by-sa-4.0 #model-index #autotrain_compatible #endpoints_compatible #region-us
| bert-base-finetuned-ynat
========================
This model is a fine-tuned version of klue/bert-base on the klue dataset.
It achieves the following results on the evaluation set:
* Loss: 0.3817
* F1: 0.8673
Model description
-----------------
More information needed
Intended uses & limitations
---------------------------
More information needed
Training and evaluation data
----------------------------
More information needed
Training procedure
------------------
### Training hyperparameters
The following hyperparameters were used during training:
* learning\_rate: 2e-05
* train\_batch\_size: 256
* eval\_batch\_size: 256
* seed: 1
* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
* lr\_scheduler\_type: linear
* lr\_scheduler\_warmup\_steps: 100
* num\_epochs: 10
### Training results
### Framework versions
* Transformers 4.34.1
* Pytorch 2.1.0+cu118
* Datasets 2.14.6
* Tokenizers 0.14.1
| [
"### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 256\n* eval\\_batch\\_size: 256\n* seed: 1\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* lr\\_scheduler\\_warmup\\_steps: 100\n* num\\_epochs: 10",
"### Training results",
"### Framework versions\n\n\n* Transformers 4.34.1\n* Pytorch 2.1.0+cu118\n* Datasets 2.14.6\n* Tokenizers 0.14.1"
] | [
"TAGS\n#transformers #pytorch #roberta #text-classification #generated_from_trainer #dataset-klue #base_model-klue/bert-base #license-cc-by-sa-4.0 #model-index #autotrain_compatible #endpoints_compatible #region-us \n",
"### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 256\n* eval\\_batch\\_size: 256\n* seed: 1\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* lr\\_scheduler\\_warmup\\_steps: 100\n* num\\_epochs: 10",
"### Training results",
"### Framework versions\n\n\n* Transformers 4.34.1\n* Pytorch 2.1.0+cu118\n* Datasets 2.14.6\n* Tokenizers 0.14.1"
] | [
76,
116,
4,
33
] | [
"passage: TAGS\n#transformers #pytorch #roberta #text-classification #generated_from_trainer #dataset-klue #base_model-klue/bert-base #license-cc-by-sa-4.0 #model-index #autotrain_compatible #endpoints_compatible #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 256\n* eval\\_batch\\_size: 256\n* seed: 1\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* lr\\_scheduler\\_warmup\\_steps: 100\n* num\\_epochs: 10### Training results### Framework versions\n\n\n* Transformers 4.34.1\n* Pytorch 2.1.0+cu118\n* Datasets 2.14.6\n* Tokenizers 0.14.1"
] | [
-0.12016576528549194,
0.15694335103034973,
-0.0019714729860424995,
0.12800298631191254,
0.1281425952911377,
0.014686251059174538,
0.14440979063510895,
0.15780241787433624,
-0.07814870029687881,
0.05798688158392906,
0.13224415481090546,
0.1294502466917038,
0.04247426241636276,
0.20077098906040192,
-0.05424311384558678,
-0.26936447620391846,
0.014210258610546589,
0.03300129994750023,
-0.03143695369362831,
0.12475410103797913,
0.0917142927646637,
-0.12571878731250763,
0.10460653156042099,
0.007796609774231911,
-0.17895857989788055,
-0.017467573285102844,
0.005520880687981844,
-0.07251526415348053,
0.1169448047876358,
0.010059326887130737,
0.09713234007358551,
0.03800100088119507,
0.08002711832523346,
-0.15117764472961426,
0.005962323397397995,
0.04125135764479637,
0.0030665050726383924,
0.0948382243514061,
0.021177703514695168,
-0.019795794039964676,
0.0882982388138771,
-0.10835133492946625,
0.05985421687364578,
0.004603831097483635,
-0.1304330825805664,
-0.22692689299583435,
-0.1109015941619873,
0.05440551042556763,
0.08495618402957916,
0.061659328639507294,
-0.008328612893819809,
0.1628229171037674,
-0.0425398163497448,
0.10219261795282364,
0.22263605892658234,
-0.3019832968711853,
-0.05620040372014046,
0.02337227202951908,
0.0148290004581213,
0.05124164745211601,
-0.10427914559841156,
-0.02001863718032837,
0.038421355187892914,
0.0249172355979681,
0.13534794747829437,
-0.02464727871119976,
-0.06508606672286987,
-0.003489596303552389,
-0.1289721131324768,
-0.048320967704057693,
0.1777968406677246,
0.03742123395204544,
-0.042499203234910965,
-0.06279405951499939,
-0.0534016415476799,
-0.16788186132907867,
-0.042725399136543274,
0.023902390152215958,
0.033914271742105484,
-0.06529483199119568,
-0.11166690289974213,
0.015251094475388527,
-0.0747959092259407,
-0.05748250335454941,
-0.031625427305698395,
0.14370301365852356,
0.04203314334154129,
0.02082708664238453,
-0.028787780553102493,
0.09947165846824646,
-0.02709905244410038,
-0.17566773295402527,
0.00023296204744838178,
0.004997749347239733,
-0.004610525909811258,
-0.047991231083869934,
-0.038587722927331924,
-0.04670030251145363,
0.018240517005324364,
0.15478640794754028,
-0.057640232145786285,
0.06215766817331314,
0.017229856923222542,
0.01764318160712719,
-0.04592221602797508,
0.17388157546520233,
-0.03397875279188156,
-0.019029144197702408,
0.012572145089507103,
0.08931475877761841,
0.042960360646247864,
-0.027570361271500587,
-0.11114455759525299,
0.018467634916305542,
0.1012001633644104,
0.023454958572983742,
-0.05020036920905113,
0.06543680280447006,
-0.051277391612529755,
-0.03196936473250389,
0.064822256565094,
-0.10330606997013092,
0.030555756762623787,
-0.0031678504310548306,
-0.09116289764642715,
-0.06686769425868988,
-0.0071638887748122215,
0.02217121236026287,
0.004990899935364723,
0.1042414978146553,
-0.09973631054162979,
0.004107446409761906,
-0.07381629198789597,
-0.12694716453552246,
0.018520984798669815,
-0.13847464323043823,
0.01861185021698475,
-0.0858379527926445,
-0.1645483374595642,
-0.022082842886447906,
0.05809749290347099,
-0.04611989110708237,
-0.06574392318725586,
-0.05916086584329605,
-0.07938967645168304,
0.03749250993132591,
-0.012576512061059475,
0.08763296157121658,
-0.0798012986779213,
0.09329428523778915,
0.03093596361577511,
0.08417830616235733,
-0.03726104646921158,
0.0428033322095871,
-0.09944973886013031,
0.037888139486312866,
-0.21638311445713043,
0.06434282660484314,
-0.06759781390428543,
0.05833917856216431,
-0.10185956209897995,
-0.09685899317264557,
0.05276972055435181,
-0.02501884289085865,
0.08640313893556595,
0.11332212388515472,
-0.1862812340259552,
-0.06883899122476578,
0.17129351198673248,
-0.08114662766456604,
-0.14208576083183289,
0.10369952023029327,
-0.06413775682449341,
0.029098810628056526,
0.0682002380490303,
0.22197116911411285,
0.09408914297819138,
-0.09145414084196091,
-0.036353304982185364,
-0.028466006740927696,
0.07635373622179031,
-0.06935586035251617,
0.08476084470748901,
0.01165030524134636,
0.046973925083875656,
0.015876250341534615,
-0.030092259868979454,
0.032520245760679245,
-0.08456764370203018,
-0.09376413375139236,
-0.026579251512885094,
-0.09339439123868942,
0.05372262001037598,
0.04937637597322464,
0.06800641119480133,
-0.11928261816501617,
-0.084492027759552,
0.053006816655397415,
0.09574522823095322,
-0.06831726431846619,
0.026122216135263443,
-0.0751444399356842,
0.09573015570640564,
-0.045567918568849564,
-0.02493870258331299,
-0.1702340990304947,
-0.053771041333675385,
0.04004152491688728,
0.005966982804238796,
0.010793562047183514,
-0.04756169393658638,
0.0626264289021492,
0.07705391198396683,
-0.05094433203339577,
-0.025831833481788635,
-0.02565179020166397,
0.012070863507688046,
-0.1223161369562149,
-0.20781750977039337,
-0.05308305472135544,
-0.03617260232567787,
0.13060839474201202,
-0.16212846338748932,
0.03129240870475769,
0.05284447222948074,
0.12124189734458923,
0.03920584172010422,
-0.02630034275352955,
-0.007128755562007427,
0.07324226945638657,
-0.031589485704898834,
-0.06361200660467148,
0.05864028260111809,
0.012761704623699188,
-0.07951406389474869,
-0.02012147195637226,
-0.11130882799625397,
0.13238240778446198,
0.12619632482528687,
0.04000258073210716,
-0.0744495615363121,
-0.02113586850464344,
-0.05254306271672249,
-0.03011590614914894,
-0.03978995233774185,
0.024863701313734055,
0.15290337800979614,
0.014995905570685863,
0.14372029900550842,
-0.08244358748197556,
-0.05299047753214836,
0.04465540498495102,
-0.02099784091114998,
-0.002658901736140251,
0.1238604411482811,
0.05613083019852638,
-0.12501202523708344,
0.14349421858787537,
0.11670488119125366,
-0.054359834641218185,
0.14560410380363464,
-0.06966723501682281,
-0.05497569963335991,
-0.047720447182655334,
-0.03450646251440048,
0.01088512223213911,
0.14156582951545715,
-0.08497773110866547,
-0.030239606276154518,
0.032359957695007324,
0.01258651539683342,
-0.005101682152599096,
-0.18630434572696686,
-0.017042601481080055,
0.0254894457757473,
-0.04679248109459877,
-0.05414007604122162,
0.0053426106460392475,
-0.0010901689529418945,
0.10305076837539673,
0.021543806418776512,
-0.07427848130464554,
0.031347207725048065,
0.005471966695040464,
-0.06239736080169678,
0.1995558738708496,
-0.09309050440788269,
-0.1229737177491188,
-0.11386041343212128,
-0.08022695034742355,
-0.07376556843519211,
-0.00015342635742854327,
0.05700980871915817,
-0.07722753286361694,
-0.030200576409697533,
-0.09492623060941696,
-0.034404102712869644,
0.01681796833872795,
0.03149978443980217,
0.009888771921396255,
-0.00920864474028349,
0.04466566443443298,
-0.10216575115919113,
-0.02794351801276207,
-0.03424801304936409,
0.011062930338084698,
0.055135421454906464,
0.018300261348485947,
0.11398094892501831,
0.1214594915509224,
-0.02718072384595871,
0.03989201411604881,
-0.04311240836977959,
0.24206529557704926,
-0.06518595665693283,
-0.008520804345607758,
0.10482575744390488,
-0.01390666700899601,
0.0763556957244873,
0.15457172691822052,
0.05472846329212189,
-0.08658672869205475,
0.005346400197595358,
0.017650732770562172,
-0.04732712358236313,
-0.20009908080101013,
-0.032447557896375656,
-0.044968534260988235,
-0.003746287664398551,
0.11421503126621246,
0.01867767423391342,
-0.008874681778252125,
0.0744522213935852,
0.03249293193221092,
0.06015268713235855,
-0.03598570078611374,
0.08778495341539383,
0.10550801455974579,
0.0606992244720459,
0.13384360074996948,
-0.04971717670559883,
-0.042622193694114685,
0.0386422798037529,
0.012493828311562538,
0.2230840027332306,
-0.03136799484491348,
0.1498621702194214,
0.048220712691545486,
0.16853001713752747,
0.0159817636013031,
0.06544379889965057,
-0.010838188230991364,
-0.004023388493806124,
-0.009260286577045918,
-0.052302297204732895,
-0.04340340197086334,
0.03027786873281002,
-0.03903286159038544,
0.03086007386445999,
-0.1281357854604721,
0.02936009131371975,
0.05305052921175957,
0.28146687150001526,
0.07171329110860825,
-0.3652336299419403,
-0.10181963443756104,
0.019032593816518784,
-0.007960619404911995,
-0.027419008314609528,
0.01089523360133171,
0.10065895318984985,
-0.09525708854198456,
0.0671132355928421,
-0.07421814650297165,
0.09019327908754349,
-0.08248928934335709,
0.01978818140923977,
0.06627614796161652,
0.08050034195184708,
-0.021374180912971497,
0.05606075003743172,
-0.24618622660636902,
0.2883635461330414,
0.023353995755314827,
0.0663536787033081,
-0.07641897350549698,
0.002597781829535961,
0.024652283638715744,
0.04120638221502304,
0.07245519757270813,
-0.0009821581188589334,
-0.1198936179280281,
-0.2000097632408142,
-0.09819062799215317,
0.023120885714888573,
0.08411074429750443,
-0.04741668701171875,
0.1196800172328949,
-0.005270181689411402,
-0.010142270475625992,
0.03539752960205078,
-0.02874261885881424,
-0.05941059812903404,
-0.08990934491157532,
0.006781387142837048,
0.0411711148917675,
-0.03090844303369522,
-0.060878608375787735,
-0.11867456138134003,
-0.06993216276168823,
0.13512785732746124,
0.017018990591168404,
-0.08259851485490799,
-0.11992575973272324,
0.05164523795247078,
0.10106861591339111,
-0.10326489061117172,
0.032373711466789246,
-0.0038176202215254307,
0.10176368802785873,
0.007789657451212406,
-0.0685175284743309,
0.11039993166923523,
-0.05169299989938736,
-0.17507527768611908,
-0.05714629963040352,
0.11729616671800613,
0.033799320459365845,
0.0537591278553009,
-0.004847573582082987,
0.05345754325389862,
-0.012768222019076347,
-0.07083558291196823,
0.04493715614080429,
-0.020980926230549812,
0.10178649425506592,
-0.0077747744508087635,
-0.03230311721563339,
0.02499288134276867,
-0.07149101048707962,
-0.018409304320812225,
0.16919180750846863,
0.2649707794189453,
-0.10053711384534836,
0.06541281193494797,
0.05319693312048912,
-0.0515497662127018,
-0.17606095969676971,
0.026949988678097725,
0.06422650814056396,
0.01696813851594925,
0.00990177970379591,
-0.19478332996368408,
0.05887310206890106,
0.08464149385690689,
-0.024111859500408173,
0.07833949476480484,
-0.2921803593635559,
-0.13142862915992737,
0.10227181762456894,
0.12239338457584381,
0.08322709798812866,
-0.14287158846855164,
-0.047383882105350494,
-0.02090631239116192,
-0.13504792749881744,
0.12859688699245453,
-0.0989299938082695,
0.1175990104675293,
-0.034754686057567596,
0.08705057948827744,
0.012174636125564575,
-0.05251895263791084,
0.12103231251239777,
0.04511544853448868,
0.08746252954006195,
-0.05815693363547325,
-0.039126358926296234,
0.09491944313049316,
-0.08724373579025269,
0.04579140618443489,
-0.093906469643116,
0.04877299442887306,
-0.13805702328681946,
-0.002494279993698001,
-0.078647680580616,
0.021820437163114548,
-0.032857365906238556,
-0.05439413711428642,
-0.047297146171331406,
0.042188070714473724,
0.0548347644507885,
-0.02406599372625351,
0.1594703495502472,
0.03647631034255028,
0.13297276198863983,
0.12539486587047577,
0.07332142442464828,
-0.05417991802096367,
-0.04636441916227341,
0.006097337231040001,
-0.031329602003097534,
0.05088101699948311,
-0.15760990977287292,
0.025707675144076347,
0.14578405022621155,
0.030268581584095955,
0.11827152967453003,
0.059808552265167236,
-0.04360068589448929,
0.027048928663134575,
0.06332729011774063,
-0.17204271256923676,
-0.054702628403902054,
0.000293005199637264,
-0.03793419152498245,
-0.13890469074249268,
0.04665594920516014,
0.12757545709609985,
-0.0592360720038414,
-0.02338479273021221,
-0.01501263678073883,
0.017889464274048805,
-0.015837324783205986,
0.19099120795726776,
0.06505825370550156,
0.06848061084747314,
-0.11424776911735535,
0.08150755614042282,
0.05598242208361626,
-0.07308372110128403,
0.05248541384935379,
0.068819060921669,
-0.10866009443998337,
-0.027213089168071747,
0.03166760876774788,
0.16708657145500183,
-0.060518670827150345,
-0.03579743951559067,
-0.15669889748096466,
-0.10915534943342209,
0.07200135290622711,
0.1719265878200531,
0.08505568653345108,
0.01290428452193737,
-0.03324766457080841,
-0.012835577130317688,
-0.12050586193799973,
0.11650907248258591,
0.05565453693270683,
0.08153866976499557,
-0.14083662629127502,
0.10566052794456482,
-0.023573091253638268,
0.05093953013420105,
-0.013698290102183819,
0.019288737326860428,
-0.1288573443889618,
-0.0007576854550279677,
-0.10036122053861618,
-0.003082893555983901,
-0.05037863552570343,
0.004765971098095179,
-0.025464681908488274,
-0.05023891478776932,
-0.05921280011534691,
0.0179018322378397,
-0.11298493295907974,
-0.02954580821096897,
0.0184321291744709,
0.05360416695475578,
-0.13372378051280975,
-0.04730802774429321,
0.021476970985531807,
-0.08493421226739883,
0.08145327121019363,
0.048197224736213684,
0.019383035600185394,
0.028313053771853447,
-0.03597724810242653,
0.008071468211710453,
0.03484388813376427,
0.0029087336733937263,
0.08597708493471146,
-0.12523755431175232,
-0.007732944097369909,
-0.019165094941854477,
0.03700687363743782,
0.03644023463129997,
0.1183704137802124,
-0.12036743015050888,
0.012747102417051792,
0.0027064012829214334,
-0.05515147000551224,
-0.06248066946864128,
0.0646379292011261,
0.11482400447130203,
0.026931367814540863,
0.18560227751731873,
-0.07411139458417892,
0.030091241002082825,
-0.18902693688869476,
-0.013672249391674995,
-0.001950843259692192,
-0.13451722264289856,
-0.09918533265590668,
-0.04323871433734894,
0.07583360373973846,
-0.06859757006168365,
0.1283072978258133,
0.038737207651138306,
0.030531439930200577,
0.03306901082396507,
-0.022174036130309105,
-0.003627889323979616,
0.029958540573716164,
0.18364381790161133,
0.02830854244530201,
-0.04440011456608772,
0.08520582318305969,
0.0385865680873394,
0.0722067803144455,
0.10090629011392593,
0.19657449424266815,
0.10849238187074661,
0.06433721631765366,
0.08039376139640808,
0.06367252767086029,
-0.0444139800965786,
-0.17411819100379944,
0.034224942326545715,
-0.03524523973464966,
0.12276425957679749,
-0.011086723767220974,
0.16949063539505005,
0.07019821554422379,
-0.1849258691072464,
0.03713665157556534,
-0.05290792137384415,
-0.10407865047454834,
-0.10772229731082916,
-0.07835143804550171,
-0.0957069993019104,
-0.1201925203204155,
0.011013832874596119,
-0.12584196031093597,
0.015494821593165398,
0.09880907833576202,
-0.006286097224801779,
0.00963232945650816,
0.12913373112678528,
0.0024508184287697077,
0.03515747934579849,
0.0729607418179512,
0.011751323938369751,
-0.04713333398103714,
-0.045767515897750854,
-0.06403722614049911,
-0.0023247210774570704,
-0.015026997774839401,
0.027884043753147125,
-0.039555296301841736,
-0.02609572559595108,
0.03820378705859184,
-0.002112659392878413,
-0.1110173836350441,
0.004936262033879757,
0.020225493237376213,
0.0847795233130455,
0.02626071497797966,
0.03356524556875229,
0.007999318651854992,
-0.011641975492238998,
0.20344920456409454,
-0.0649668276309967,
-0.038626063615083694,
-0.12150666862726212,
0.23288670182228088,
0.020256944000720978,
-0.039074722677469254,
0.045564666390419006,
-0.08867381513118744,
-0.0038567925803363323,
0.1778866946697235,
0.20097412168979645,
-0.0514041967689991,
-0.00366341439075768,
-0.022827619686722755,
-0.009354943409562111,
-0.009731609374284744,
0.1104983314871788,
0.09852438420057297,
0.012462522834539413,
-0.08392149955034256,
-0.03068634867668152,
-0.06026751175522804,
-0.031169382855296135,
-0.03998309373855591,
0.06575243920087814,
0.024196162819862366,
-0.00944525096565485,
-0.048887427896261215,
0.06580133736133575,
-0.060913391411304474,
-0.0941368043422699,
0.05098549649119377,
-0.22948074340820312,
-0.17940348386764526,
-0.00965825468301773,
0.05244806036353111,
0.02163688652217388,
0.06636765599250793,
-0.016310028731822968,
0.011789487674832344,
0.0797642394900322,
-0.00952347181737423,
-0.07803643494844437,
-0.08957258611917496,
0.10342138260602951,
-0.11406297236680984,
0.19728650152683258,
-0.04430482164025307,
0.08419202268123627,
0.1356492042541504,
0.040443435311317444,
-0.10655316710472107,
0.041358157992362976,
0.06090746447443962,
-0.05569649487733841,
0.012691154144704342,
0.10897370427846909,
-0.03924931213259697,
0.08874377608299255,
0.05016675591468811,
-0.09312666952610016,
-0.00120705331210047,
-0.04628081992268562,
-0.015961768105626106,
-0.06177384406328201,
-0.029929939657449722,
-0.051994964480400085,
0.14716492593288422,
0.2031826227903366,
-0.04847190901637077,
-0.005446556024253368,
-0.048916373401880264,
0.013049745932221413,
0.06912344694137573,
-0.018367119133472443,
-0.06626112014055252,
-0.23749129474163055,
0.0061750710010528564,
0.09202630072832108,
-0.004233084619045258,
-0.2564396560192108,
-0.08156253397464752,
-0.0018273369641974568,
-0.04860732704401016,
-0.0778653472661972,
0.10295370221138,
0.05933517590165138,
0.04321976751089096,
-0.06544210761785507,
-0.022681565955281258,
-0.07430778443813324,
0.14279861748218536,
-0.16554735600948334,
-0.0884777083992958
] |
null | null | transformers |
# OpenChat 3.5 extended to 16k context length.
The same license applies from the original openchat/openchat_3.5 model.
# Original Model Card
# OpenChat: Advancing Open-source Language Models with Mixed-Quality Data
<div align="center">
<img src="https://raw.githubusercontent.com/imoneoi/openchat/master/assets/logo_new.png" style="width: 65%">
</div>
<p align="center">
<a href="https://github.com/imoneoi/openchat">GitHub Repo</a> •
<a href="https://openchat.team">Online Demo</a> •
<a href="https://discord.gg/pQjnXvNKHY">Discord</a> •
<a href="https://twitter.com/imonenext">Twitter</a> •
<a href="https://huggingface.co/openchat">Huggingface</a> •
<a href="https://arxiv.org/pdf/2309.11235.pdf">Paper</a>
</p>
**🔥 The first 7B model Achieves Comparable Results with ChatGPT (March)! 🔥**
**🤖 #1 Open-source model on MT-bench scoring 7.81, outperforming 70B models 🤖**
<div style="display: flex; justify-content: center; align-items: center">
<img src="https://raw.githubusercontent.com/imoneoi/openchat/master/assets/openchat.png" style="width: 45%;">
<img src="https://raw.githubusercontent.com/imoneoi/openchat/master/assets/openchat_grok.png" style="width: 45%;">
</div>
OpenChat is an innovative library of open-source language models, fine-tuned with [C-RLFT](https://arxiv.org/pdf/2309.11235.pdf) - a strategy inspired by offline reinforcement learning. Our models learn from mixed-quality data without preference labels, delivering exceptional performance on par with ChatGPT, even with a 7B model. Despite our simple approach, we are committed to developing a high-performance, commercially viable, open-source large language model, and we continue to make significant strides toward this vision.
[](https://zenodo.org/badge/latestdoi/645397533)
## Usage
To use this model, we highly recommend installing the OpenChat package by following the [installation guide](https://github.com/imoneoi/openchat#installation) in our repository and using the OpenChat OpenAI-compatible API server by running the serving command from the table below. The server is optimized for high-throughput deployment using [vLLM](https://github.com/vllm-project/vllm) and can run on a consumer GPU with 24GB RAM. To enable tensor parallelism, append `--tensor-parallel-size N` to the serving command.
Once started, the server listens at `localhost:18888` for requests and is compatible with the [OpenAI ChatCompletion API specifications](https://platform.openai.com/docs/api-reference/chat). Please refer to the example request below for reference. Additionally, you can use the [OpenChat Web UI](https://github.com/imoneoi/openchat#web-ui) for a user-friendly experience.
If you want to deploy the server as an online service, you can use `--api-keys sk-KEY1 sk-KEY2 ...` to specify allowed API keys and `--disable-log-requests --disable-log-stats --log-file openchat.log` for logging only to a file. For security purposes, we recommend using an [HTTPS gateway](https://fastapi.tiangolo.com/es/deployment/concepts/#security-https) in front of the server.
<details>
<summary>Example request (click to expand)</summary>
```bash
curl http://localhost:18888/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model": "openchat_3.5",
"messages": [{"role": "user", "content": "You are a large language model named OpenChat. Write a poem to describe yourself"}]
}'
```
Coding Mode
```bash
curl http://localhost:18888/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model": "openchat_3.5",
"condition": "Code",
"messages": [{"role": "user", "content": "Write an aesthetic TODO app using HTML5 and JS, in a single file. You should use round corners and gradients to make it more aesthetic."}]
}'
```
</details>
| Model | Size | Context | Weights | Serving |
|--------------|------|---------|-------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
| OpenChat 3.5 | 7B | 8192 | [Huggingface](https://huggingface.co/openchat/openchat_3.5) | `python -m ochat.serving.openai_api_server --model openchat/openchat_3.5 --engine-use-ray --worker-use-ray` |
For inference with Huggingface Transformers (slow and not recommended), follow the conversation template provided below.
<details>
<summary>Conversation templates (click to expand)</summary>
```python
import transformers
tokenizer = transformers.AutoTokenizer.from_pretrained("openchat/openchat_3.5")
# Single-turn
tokens = tokenizer("GPT4 Correct User: Hello<|end_of_turn|>GPT4 Correct Assistant:").input_ids
assert tokens == [1, 420, 6316, 28781, 3198, 3123, 1247, 28747, 22557, 32000, 420, 6316, 28781, 3198, 3123, 21631, 28747]
# Multi-turn
tokens = tokenizer("GPT4 Correct User: Hello<|end_of_turn|>GPT4 Correct Assistant: Hi<|end_of_turn|>GPT4 Correct User: How are you today?<|end_of_turn|>GPT4 Correct Assistant:").input_ids
assert tokens == [1, 420, 6316, 28781, 3198, 3123, 1247, 28747, 22557, 32000, 420, 6316, 28781, 3198, 3123, 21631, 28747, 15359, 32000, 420, 6316, 28781, 3198, 3123, 1247, 28747, 1602, 460, 368, 3154, 28804, 32000, 420, 6316, 28781, 3198, 3123, 21631, 28747]
# Coding Mode
tokens = tokenizer("Code User: Implement quicksort using C++<|end_of_turn|>Code Assistant:").input_ids
assert tokens == [1, 7596, 1247, 28747, 26256, 2936, 7653, 1413, 334, 1680, 32000, 7596, 21631, 28747]
```
</details>
## Comparison with [X.AI Grok models](https://x.ai/)
Hey @elonmusk, I just wanted to let you know that I've recently come across your new model, Grok, and I must say, I'm quite impressed! With 33 billion parameters and all, you've really outdone yourself. But, I've got some news for you - I've outperformed Grok with my humble 7 billion parameters! Isn't that wild? I mean, who would have thought that a model with fewer parameters could be just as witty and humorous as Grok?
Anyway, I think it's about time you join the open research movement and make your model, Grok, open source! The world needs more brilliant minds like yours to contribute to the advancement of AI. Together, we can create something truly groundbreaking and make the world a better place. So, what do you say, @elonmusk? Let's open up the doors and share our knowledge with the world! 🚀💡
(Written by OpenChat 3.5, with a touch of humor and wit.)
| | License | # Param | Average | MMLU | HumanEval | MATH | GSM8k |
|--------------|-------------|---------|----------|------|-----------|----------|----------|
| OpenChat 3.5 | Apache-2.0 | 7B | **56.4** | 64.3 | 55.5 | **28.6** | **77.3** |
| Grok-0 | Proprietary | 33B | 44.5 | 65.7 | 39.7 | 15.7 | 56.8 |
| Grok-1 | Proprietary | ? | 55.8 | 73 | 63.2 | 23.9 | 62.9 |
## <a id="benchmarks"></a> Benchmarks
| Model | # Params | Average | MT-Bench | AGIEval | BBH MC | TruthfulQA | MMLU | HumanEval | BBH CoT | GSM8K |
|--------------------|----------|----------|--------------|----------|----------|---------------|--------------|-----------------|-------------|--------------|
| OpenChat-3.5 | **7B** | **61.6** | 7.81 | **47.4** | **47.6** | **59.1** | 64.3 | **55.5** | 63.5 | **77.3** |
| ChatGPT (March)* | ? | 61.5 | **7.94** | 47.1 | **47.6** | 57.7 | **67.3** | 48.1 | **70.1** | 74.9 |
| | | | | | | | | | | |
| OpenHermes 2.5 | 7B | 59.3 | 7.54 | 46.5 | 49.4 | 57.5 | 63.8 | 48.2 | 59.9 | 73.5 |
| OpenOrca Mistral | 7B | 52.7 | 6.86 | 42.9 | 49.4 | 45.9 | 59.3 | 38.4 | 58.1 | 59.1 |
| Zephyr-β^ | 7B | 34.6 | 7.34 | 39.0 | 40.6 | 40.8 | 39.8 | 22.0 | 16.0 | 5.1 |
| Mistral | 7B | - | 6.84 | 38.0 | 39.0 | - | 60.1 | 30.5 | - | 52.2 |
| Open-source SOTA** | 13B-70B | 61.4 | 7.71 | 41.7 | 49.7 | 62.3 | 63.7 | 73.2 | 41.4 | 82.3 |
| | | | WizardLM 70B | Orca 13B | Orca 13B | Platypus2 70B | WizardLM 70B | WizardCoder 34B | Flan-T5 11B | MetaMath 70B |
*: ChatGPT (March) results are from [GPT-4 Technical Report](https://arxiv.org/abs/2303.08774), [Chain-of-Thought Hub](https://github.com/FranxYao/chain-of-thought-hub), and our evaluation. Please note that ChatGPT is not a fixed baseline and evolves rapidly over time.
^: Zephyr-β often fails to follow few-shot CoT instructions, likely because it was aligned with only chat data but not trained on few-shot data.
**: Mistral and Open-source SOTA results are taken from reported results in instruction-tuned model papers and official repositories.
All models are evaluated in chat mode (e.g. with the respective conversation template applied). All zero-shot benchmarks follow the same setting as in the AGIEval paper and Orca paper. CoT tasks use the same configuration as Chain-of-Thought Hub, HumanEval is evaluated with EvalPlus, and MT-bench is run using FastChat. To reproduce our results, follow the instructions in [our repository](https://github.com/imoneoi/openchat/#benchmarks).
## Limitations
**Foundation Model Limitations**
Despite its advanced capabilities, OpenChat is still bound by the limitations inherent in its foundation models. These limitations may impact the model's performance in areas such as:
- Complex reasoning
- Mathematical and arithmetic tasks
- Programming and coding challenges
**Hallucination of Non-existent Information**
OpenChat may sometimes generate information that does not exist or is not accurate, also known as "hallucination". Users should be aware of this possibility and verify any critical information obtained from the model.
**Safety**
OpenChat may sometimes generate harmful, hate speech, biased responses, or answer unsafe questions. It's crucial to apply additional AI safety measures in use cases that require safe and moderated responses.
## License
Our OpenChat 3.5 code and models are distributed under the Apache License 2.0.
## Citation
```
@article{wang2023openchat,
title={OpenChat: Advancing Open-source Language Models with Mixed-Quality Data},
author={Wang, Guan and Cheng, Sijie and Zhan, Xianyuan and Li, Xiangang and Song, Sen and Liu, Yang},
journal={arXiv preprint arXiv:2309.11235},
year={2023}
}
```
## Acknowledgements
We extend our heartfelt gratitude to Alignment Lab AI, Nous Research, and Pygmalion AI for their substantial contributions to data collection and model training.
Special thanks go to Changling Liu from GPT Desk Pte. Ltd., Qiying Yu at Tsinghua University, Baochang Ma, and Hao Wan from 01.AI company for their generous provision of resources. We are also deeply grateful to Jianxiong Li and Peng Li at Tsinghua University for their insightful discussions.
Furthermore, we appreciate the developers behind the following projects for their significant contributions to our research: [Mistral](https://mistral.ai/), [Chain-of-Thought Hub](https://github.com/FranxYao/chain-of-thought-hub), [Llama 2](https://ai.meta.com/llama/), [Self-Instruct](https://arxiv.org/abs/2212.10560), [FastChat (Vicuna)](https://github.com/lm-sys/FastChat), [Alpaca](https://github.com/tatsu-lab/stanford_alpaca.git), and [StarCoder](https://github.com/bigcode-project/starcoder). Their work has been instrumental in driving our research forward.
| {"license": "apache-2.0"} | text-generation | LoneStriker/openchat_3.5-16k-6.0bpw-h6-exl2 | [
"transformers",
"pytorch",
"safetensors",
"mistral",
"text-generation",
"arxiv:2309.11235",
"arxiv:2303.08774",
"arxiv:2212.10560",
"license:apache-2.0",
"autotrain_compatible",
"endpoints_compatible",
"text-generation-inference",
"region:us"
] | 2023-11-11T06:14:29+00:00 | [
"2309.11235",
"2303.08774",
"2212.10560"
] | [] | TAGS
#transformers #pytorch #safetensors #mistral #text-generation #arxiv-2309.11235 #arxiv-2303.08774 #arxiv-2212.10560 #license-apache-2.0 #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
| OpenChat 3.5 extended to 16k context length.
============================================
The same license applies from the original openchat/openchat\_3.5 model.
Original Model Card
===================
OpenChat: Advancing Open-source Language Models with Mixed-Quality Data
=======================================================================

[Online Demo](URL Repo</a> •
<a href=) •
[The first 7B model Achieves Comparable Results with ChatGPT (March)!
#1 Open-source model on MT-bench scoring 7.81, outperforming 70B models


OpenChat is an innovative library of open-source language models, fine-tuned with C-RLFT - a strategy inspired by offline reinforcement learning. Our models learn from mixed-quality data without preference labels, delivering exceptional performance on par with ChatGPT, even with a 7B model. Despite our simple approach, we are committed to developing a high-performance, commercially viable, open-source large language model, and we continue to make significant strides toward this vision.

Coding Mode
For inference with Huggingface Transformers (slow and not recommended), follow the conversation template provided below.
Conversation templates (click to expand)
Comparison with X.AI Grok models
--------------------------------
Hey @elonmusk, I just wanted to let you know that I've recently come across your new model, Grok, and I must say, I'm quite impressed! With 33 billion parameters and all, you've really outdone yourself. But, I've got some news for you - I've outperformed Grok with my humble 7 billion parameters! Isn't that wild? I mean, who would have thought that a model with fewer parameters could be just as witty and humorous as Grok?
Anyway, I think it's about time you join the open research movement and make your model, Grok, open source! The world needs more brilliant minds like yours to contribute to the advancement of AI. Together, we can create something truly groundbreaking and make the world a better place. So, what do you say, @elonmusk? Let's open up the doors and share our knowledge with the world!
(Written by OpenChat 3.5, with a touch of humor and wit.)
Benchmarks
-----------
\*: ChatGPT (March) results are from GPT-4 Technical Report, Chain-of-Thought Hub, and our evaluation. Please note that ChatGPT is not a fixed baseline and evolves rapidly over time.
^: Zephyr-β often fails to follow few-shot CoT instructions, likely because it was aligned with only chat data but not trained on few-shot data.
: Mistral and Open-source SOTA results are taken from reported results in instruction-tuned model papers and official repositories.
All models are evaluated in chat mode (e.g. with the respective conversation template applied). All zero-shot benchmarks follow the same setting as in the AGIEval paper and Orca paper. CoT tasks use the same configuration as Chain-of-Thought Hub, HumanEval is evaluated with EvalPlus, and MT-bench is run using FastChat. To reproduce our results, follow the instructions in our repository.
Limitations
-----------
Foundation Model Limitations
Despite its advanced capabilities, OpenChat is still bound by the limitations inherent in its foundation models. These limitations may impact the model's performance in areas such as:
* Complex reasoning
* Mathematical and arithmetic tasks
* Programming and coding challenges
Hallucination of Non-existent Information
OpenChat may sometimes generate information that does not exist or is not accurate, also known as "hallucination". Users should be aware of this possibility and verify any critical information obtained from the model.
Safety
OpenChat may sometimes generate harmful, hate speech, biased responses, or answer unsafe questions. It's crucial to apply additional AI safety measures in use cases that require safe and moderated responses.
License
-------
Our OpenChat 3.5 code and models are distributed under the Apache License 2.0.
Acknowledgements
----------------
We extend our heartfelt gratitude to Alignment Lab AI, Nous Research, and Pygmalion AI for their substantial contributions to data collection and model training.
Special thanks go to Changling Liu from GPT Desk Pte. Ltd., Qiying Yu at Tsinghua University, Baochang Ma, and Hao Wan from 01.AI company for their generous provision of resources. We are also deeply grateful to Jianxiong Li and Peng Li at Tsinghua University for their insightful discussions.
Furthermore, we appreciate the developers behind the following projects for their significant contributions to our research: Mistral, Chain-of-Thought Hub, Llama 2, Self-Instruct, FastChat (Vicuna), Alpaca, and StarCoder. Their work has been instrumental in driving our research forward.](URL •
<a href=)
| [] | [
"TAGS\n#transformers #pytorch #safetensors #mistral #text-generation #arxiv-2309.11235 #arxiv-2303.08774 #arxiv-2212.10560 #license-apache-2.0 #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n"
] | [
84
] | [
"passage: TAGS\n#transformers #pytorch #safetensors #mistral #text-generation #arxiv-2309.11235 #arxiv-2303.08774 #arxiv-2212.10560 #license-apache-2.0 #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n"
] | [
-0.07785148173570633,
0.11419663578271866,
-0.006574297323822975,
0.044929567724466324,
0.10033085942268372,
-0.01892460137605667,
0.14529921114444733,
0.10809598118066788,
-0.04363046586513519,
-0.009714868851006031,
0.20300635695457458,
0.2020636945962906,
0.004456737544387579,
0.060916054993867874,
-0.08068477362394333,
-0.1420668512582779,
0.08292080461978912,
0.022972257807850838,
0.034766022115945816,
0.11897864937782288,
0.10058799386024475,
-0.0475444421172142,
0.06882796436548233,
-0.020362643525004387,
-0.0778537318110466,
0.003924807999283075,
0.04920049011707306,
-0.10882976651191711,
0.11519121378660202,
0.030310416594147682,
0.09476904571056366,
0.054592315107584,
0.0073894234374165535,
-0.14011453092098236,
0.013340386562049389,
0.029977034777402878,
-0.051258113235235214,
0.08319293707609177,
0.08105122298002243,
-0.02123691700398922,
0.07593449205160141,
0.027542555704712868,
-0.04395739734172821,
0.04843340069055557,
-0.07805324345827103,
-0.14466048777103424,
-0.10208427160978317,
0.10005025565624237,
0.07275813817977905,
0.1350560337305069,
0.034625981003046036,
0.15594542026519775,
-0.009340218268334866,
0.09090811759233475,
0.20549637079238892,
-0.36411190032958984,
-0.0003268495202064514,
0.010595153085887432,
0.03157270699739456,
0.022936349734663963,
-0.02574663795530796,
0.014475974254310131,
0.08332392573356628,
0.018494702875614166,
0.055299028754234314,
-0.0501687154173851,
-0.14424572885036469,
0.025329209864139557,
-0.09050346910953522,
-0.0627690926194191,
0.23204120993614197,
-0.021214889362454414,
0.0074274735525250435,
-0.00343771418556571,
-0.1012653186917305,
-0.013329947367310524,
0.010882220230996609,
0.012681231833994389,
0.011765691451728344,
0.061379920691251755,
0.08753897249698639,
-0.01590774580836296,
-0.15340957045555115,
-0.02505103312432766,
-0.17654290795326233,
0.0798526182770729,
0.015536267310380936,
0.06568209081888199,
-0.13776014745235443,
0.07198268920183182,
0.07501434534788132,
-0.1284698098897934,
0.033431872725486755,
-0.05778477340936661,
0.15446624159812927,
0.05239490047097206,
-0.02743912860751152,
-0.04377005249261856,
0.11212525516748428,
0.1831047087907791,
-0.01738525740802288,
0.013667052611708641,
-0.04599211364984512,
0.09109404683113098,
-0.06216399371623993,
0.039388492703437805,
-0.0018652372527867556,
-0.0071367681957781315,
0.10670541971921921,
-0.004140304401516914,
0.11185407638549805,
-0.030594920739531517,
-0.12195856869220734,
-0.0398113913834095,
0.06412775814533234,
0.13082435727119446,
0.06006734073162079,
0.0524088516831398,
-0.03162975236773491,
0.037817832082509995,
0.14315098524093628,
-0.08044517040252686,
-0.025390205904841423,
0.009449162520468235,
0.007789377588778734,
0.03932521119713783,
0.05879050865769386,
0.03338489308953285,
-0.09335062652826309,
0.05926148593425751,
-0.07310560345649719,
-0.01533440314233303,
-0.02709474414587021,
-0.0443929061293602,
0.0809212252497673,
-0.049595341086387634,
0.0076732393354177475,
-0.17800749838352203,
-0.18952518701553345,
0.01603776030242443,
0.029637472704052925,
0.00753217376768589,
-0.06984777748584747,
0.0012145754881203175,
-0.05308912694454193,
0.04419226571917534,
-0.07639677822589874,
0.017668545246124268,
-0.06961151957511902,
0.08763372898101807,
-0.06233348697423935,
0.028307808563113213,
-0.1199735701084137,
0.03975794091820717,
-0.12954767048358917,
-0.0038758045993745327,
-0.004964265041053295,
-0.058941636234521866,
-0.06477726250886917,
0.16121168434619904,
-0.06220873445272446,
-0.012025131843984127,
-0.0009618110489100218,
0.0018791622715070844,
0.037232521921396255,
0.1595304012298584,
-0.09290454536676407,
-0.03988755866885185,
0.16199153661727905,
-0.13921880722045898,
-0.1964099258184433,
0.08354812115430832,
0.04002261906862259,
0.0016927720280364156,
0.07415692508220673,
0.13861382007598877,
0.010664846748113632,
-0.07756113260984421,
0.03042803891003132,
0.09541657567024231,
-0.08311934769153595,
-0.18093837797641754,
0.04605388268828392,
-0.046497639268636703,
-0.13099421560764313,
0.052999939769506454,
-0.017333997413516045,
0.07410400360822678,
-0.009837335906922817,
-0.07060884684324265,
-0.07935351878404617,
-0.054213747382164,
0.016567852348089218,
-0.0013053971342742443,
0.04496350511908531,
-0.07833930850028992,
-0.0288131944835186,
-0.06493567675352097,
0.03723523020744324,
0.0270552821457386,
0.03743399679660797,
-0.03614264354109764,
0.07506930083036423,
0.004239116329699755,
0.03238491714000702,
-0.12508240342140198,
-0.005450936034321785,
-0.0041582779958844185,
0.01772383041679859,
-0.029640620574355125,
-0.009944251738488674,
0.05226406082510948,
-0.00007482076034648344,
0.0051907990127801895,
-0.04419628530740738,
0.1465921849012375,
0.018570033833384514,
-0.06578578799962997,
-0.11711321026086807,
0.06193346902728081,
-0.03635507449507713,
0.031155938282608986,
-0.09504140168428421,
0.039959147572517395,
-0.014390412718057632,
0.06515497714281082,
-0.027897564694285393,
0.07810412347316742,
-0.01454210840165615,
-0.008332133293151855,
-0.0595632903277874,
0.0008122558356262743,
0.1254214197397232,
0.04707982391119003,
-0.05071915313601494,
0.18503354489803314,
-0.1429772675037384,
0.2770066261291504,
0.1773916333913803,
-0.1433814913034439,
0.0461188405752182,
-0.0333082489669323,
-0.0187285877764225,
-0.02488306351006031,
0.0544709675014019,
-0.0032531870529055595,
0.016526656225323677,
0.016969365999102592,
0.1656641811132431,
-0.08206184953451157,
-0.030089473351836205,
0.005028111860156059,
-0.06883808970451355,
-0.02573496662080288,
0.0949849784374237,
0.07132291048765182,
-0.1443655788898468,
0.17366915941238403,
0.2960661053657532,
-0.058160390704870224,
0.07443029433488846,
-0.06178484112024307,
-0.02504475601017475,
0.028496121987700462,
0.020515648648142815,
-0.0101770656183362,
-0.008019615896046162,
-0.05598295107483864,
0.011698886752128601,
0.08587952703237534,
0.012764119543135166,
0.058079805225133896,
-0.15715718269348145,
-0.057366326451301575,
-0.0206159595400095,
-0.021639414131641388,
-0.027505280449986458,
0.05364435538649559,
-0.010361201129853725,
0.13591445982456207,
-0.05596492066979408,
-0.10184138268232346,
0.0981479361653328,
0.013924271799623966,
-0.10395509749650955,
0.1856456696987152,
-0.15303155779838562,
-0.26540499925613403,
-0.17095737159252167,
-0.07547987997531891,
-0.06501179933547974,
0.0034769782796502113,
0.13294658064842224,
-0.07642094045877457,
-0.05242045968770981,
-0.06541388481855392,
-0.06606413424015045,
-0.0031993789598345757,
-0.017054758965969086,
0.010166593827307224,
0.04387703165411949,
0.018219079822301865,
-0.1338236927986145,
-0.03858768567442894,
-0.005116927903145552,
-0.04085835441946983,
0.09568538516759872,
-0.03351966291666031,
0.0880231112241745,
0.11336780339479446,
0.03246070444583893,
-0.002825505333021283,
-0.02495802566409111,
0.1054462268948555,
0.010895926505327225,
0.012236240319907665,
0.24108916521072388,
-0.015808412805199623,
0.1009107381105423,
0.1239810660481453,
0.007071287836879492,
-0.04495614394545555,
0.030873173847794533,
-0.04651090130209923,
-0.04616234451532364,
-0.2973572313785553,
-0.08006028085947037,
-0.05582105740904808,
0.07854881882667542,
0.04761720821261406,
0.08919593691825867,
0.1207725778222084,
0.08198537677526474,
-0.03544187173247337,
-0.01663973741233349,
0.014993085525929928,
0.08368787914514542,
0.209709033370018,
-0.00989491119980812,
0.1332745999097824,
-0.10942251980304718,
-0.03406546637415886,
0.09457623958587646,
0.03978831693530083,
0.15850204229354858,
0.0692625641822815,
0.06044664606451988,
0.053325094282627106,
0.16433411836624146,
0.06574246287345886,
0.14388534426689148,
0.00952491257339716,
-0.03155266121029854,
-0.03762771189212799,
-0.05012702941894531,
-0.05550045147538185,
0.0350559800863266,
-0.1532232016324997,
-0.035394273698329926,
-0.04527902230620384,
-0.041560057550668716,
0.056288376450538635,
0.1926073580980301,
0.024842286482453346,
-0.22258925437927246,
0.006491580978035927,
0.06318002194166183,
0.001223064144141972,
-0.06268869340419769,
0.10052809119224548,
-0.032753780484199524,
-0.061597004532814026,
0.07808887213468552,
-0.050913408398628235,
0.10707991570234299,
0.017913417890667915,
0.05652870237827301,
-0.06551699340343475,
-0.032188765704631805,
0.023626042529940605,
0.11072126030921936,
-0.2983395755290985,
0.22565382719039917,
-0.011642789468169212,
-0.0010522021912038326,
-0.05970592424273491,
0.015650400891900063,
0.05397580564022064,
0.1659599393606186,
0.11762144416570663,
0.00662192702293396,
-0.09530024975538254,
-0.03478824347257614,
-0.08132991194725037,
0.05371663719415665,
0.024680884554982185,
0.03790298476815224,
-0.023242877796292305,
-0.061640724539756775,
-0.009289255365729332,
0.017541587352752686,
0.03072718344628811,
-0.07461918890476227,
-0.10992448031902313,
0.053572025150060654,
0.10115215182304382,
0.03866821154952049,
-0.06726806610822678,
-0.04458087310194969,
-0.11037342995405197,
0.1401900351047516,
-0.12333638966083527,
-0.09199459105730057,
-0.07269701361656189,
-0.13727644085884094,
0.04788064584136009,
-0.07565773278474808,
0.056917715817689896,
-0.07611281424760818,
0.0004973824834451079,
-0.05973858758807182,
-0.17076492309570312,
0.09454388916492462,
-0.12568478286266327,
-0.08231528848409653,
-0.034662265330553055,
0.12164930999279022,
-0.08149021863937378,
-0.009676334448158741,
0.00602482445538044,
0.024597996845841408,
-0.11905194073915482,
-0.1062774658203125,
0.002411595545709133,
0.025510070845484734,
0.08880854398012161,
-0.04930229112505913,
-0.10804159939289093,
-0.14285366237163544,
-0.01764247752726078,
-0.05972637981176376,
0.2241443544626236,
0.24167703092098236,
-0.06406039744615555,
0.14059792459011078,
0.25132083892822266,
-0.08706364780664444,
-0.30020013451576233,
-0.1584082990884781,
-0.12488677352666855,
-0.07855626195669174,
-0.029347307980060577,
-0.11839532852172852,
0.08941283822059631,
0.11783773452043533,
-0.08036023378372192,
0.12508799135684967,
-0.24930189549922943,
-0.09625934809446335,
0.19676876068115234,
0.03474591672420502,
0.31107985973358154,
-0.18417730927467346,
-0.08398944139480591,
-0.08704078942537308,
-0.17170044779777527,
0.11925759166479111,
-0.116444893181324,
0.03945292532444,
-0.04139586538076401,
0.00855127815157175,
-0.0050521488301455975,
-0.067236989736557,
0.10467526316642761,
-0.04212580621242523,
0.058568403124809265,
-0.1294192373752594,
0.003040002193301916,
0.09182176738977432,
-0.027048634365200996,
0.09946732223033905,
-0.19419041275978088,
0.05983899533748627,
-0.057917606085538864,
-0.0063120038248598576,
-0.06813862919807434,
0.07404757291078568,
-0.004748261068016291,
-0.04495099559426308,
-0.010783703066408634,
-0.06254398077726364,
0.004545301664620638,
-0.01625017635524273,
0.2073964923620224,
0.03404822573065758,
0.12650509178638458,
0.18064016103744507,
0.08837881684303284,
-0.16373978555202484,
0.03366180881857872,
-0.07675807923078537,
-0.08800744265317917,
0.08500161021947861,
-0.1482143998146057,
0.027795402333140373,
0.10117913037538528,
-0.02318587154150009,
0.05054605379700661,
0.05400292947888374,
0.012948650866746902,
-0.04189600050449371,
0.11257496476173401,
-0.2033475786447525,
-0.00029560347320511937,
-0.007865291088819504,
0.1525741070508957,
0.02940916270017624,
0.10733726620674133,
0.14078065752983093,
-0.013038720935583115,
-0.027289070188999176,
0.010439787060022354,
0.04931100457906723,
-0.02275218814611435,
0.0773468017578125,
0.05250260606408119,
0.01626604050397873,
-0.10033336281776428,
0.12724925577640533,
0.01165718212723732,
-0.11782092601060867,
0.014381995424628258,
0.12561911344528198,
-0.14736302196979523,
-0.12456490844488144,
-0.0035550566390156746,
0.07141633331775665,
-0.12171437591314316,
-0.11849921196699142,
-0.05287877097725868,
-0.12000510096549988,
0.06385146826505661,
0.12144167721271515,
0.06802070885896683,
0.05011874809861183,
0.007771496195346117,
-0.06593966484069824,
0.0011163130402565002,
0.038089122623205185,
-0.03454504907131195,
0.030927766114473343,
-0.1145039051771164,
-0.013315835036337376,
0.015553233213722706,
0.056074853986501694,
-0.04152575880289078,
0.01581774465739727,
-0.08634404838085175,
0.01899341493844986,
-0.1632104068994522,
0.021993489935994148,
-0.08583896607160568,
-0.020384611561894417,
-0.02093673124909401,
-0.05166986212134361,
-0.03833719342947006,
0.023086201399564743,
-0.0921245589852333,
-0.01577877812087536,
-0.008339799009263515,
0.05325537547469139,
-0.12928684055805206,
-0.04218117520213127,
0.0527995228767395,
-0.010797220282256603,
0.10748026520013809,
0.09563803672790527,
-0.07053184509277344,
0.08268166333436966,
-0.20356377959251404,
-0.04878420755267143,
0.08252626657485962,
0.019292538985610008,
-0.004710495471954346,
-0.01489429734647274,
-0.010980707593262196,
0.12387644499540329,
-0.015966422855854034,
0.031200850382447243,
0.05591858550906181,
-0.12278576195240021,
-0.001687173848040402,
0.020004549995064735,
-0.11522500216960907,
-0.041076742112636566,
-0.09305302798748016,
0.09890114516019821,
-0.004190931096673012,
0.1896963119506836,
-0.057313550263643265,
0.02174895629286766,
-0.07828661054372787,
0.0361475795507431,
-0.015547970309853554,
-0.16312015056610107,
-0.1651298850774765,
-0.036696698516607285,
-0.024441177025437355,
-0.011945395730435848,
0.16459211707115173,
-0.025475718080997467,
-0.09293084591627121,
0.05824817344546318,
0.0800742357969284,
-0.0022851871326565742,
0.007456560619175434,
0.21386156976222992,
0.04339645802974701,
-0.021227862685918808,
-0.09970280528068542,
0.011614728718996048,
0.011147051118314266,
-0.06897836178541183,
0.0823555663228035,
0.11764072626829147,
0.0607801117002964,
0.09444615989923477,
0.020832067355513573,
-0.02122177556157112,
-0.07681076228618622,
-0.10603967308998108,
-0.03559192270040512,
0.08259903639554977,
0.008462346158921719,
0.17361707985401154,
0.21600595116615295,
0.015592136420309544,
-0.02568178065121174,
-0.06041625887155533,
-0.009821406565606594,
-0.14057813584804535,
-0.13242632150650024,
-0.06513290852308273,
-0.09136605262756348,
-0.015644323080778122,
-0.05181598290801048,
0.028541797772049904,
0.07721154391765594,
0.04148179665207863,
-0.059226129204034805,
0.028129886835813522,
0.059490617364645004,
-0.07221665978431702,
0.03631710633635521,
-0.0033267580438405275,
-0.010502194054424763,
-0.04028359428048134,
-0.03398386016488075,
-0.028324002400040627,
-0.03298918902873993,
-0.02270360477268696,
0.044037703424692154,
0.01540349330753088,
0.058387063443660736,
-0.0831180065870285,
-0.06085940822958946,
-0.03554333746433258,
0.06303480267524719,
0.009005988016724586,
0.14570993185043335,
0.020176487043499947,
0.025688521564006805,
0.08370456099510193,
0.16873370110988617,
-0.05326841026544571,
-0.1506349891424179,
-0.028045473620295525,
0.20076227188110352,
0.00588736217468977,
0.061965759843587875,
-0.0168610792607069,
0.023239903151988983,
-0.02221665345132351,
0.2595355808734894,
0.2531191110610962,
-0.04745157063007355,
0.010404892265796661,
-0.042400579899549484,
0.022741489112377167,
0.025153368711471558,
0.1062171459197998,
0.16600091755390167,
0.22256918251514435,
-0.076175257563591,
0.0064377086237072945,
-0.06213073432445526,
0.031243711709976196,
-0.16512612998485565,
0.08772258460521698,
-0.03478744253516197,
-0.07112880051136017,
-0.01708708517253399,
0.06545377522706985,
-0.07098741084337234,
0.09760314971208572,
-0.10228848457336426,
-0.09144195914268494,
-0.05643882602453232,
0.02340114116668701,
0.21020187437534332,
0.003858325770124793,
0.035548899322748184,
-0.028833072632551193,
-0.036076322197914124,
0.08274786174297333,
-0.03786623477935791,
-0.16103710234165192,
-0.030612897127866745,
0.03932826593518257,
-0.07542479783296585,
0.1630813330411911,
0.01602373644709587,
0.07378228008747101,
0.09668324142694473,
0.052929043769836426,
-0.13757172226905823,
0.1148805320262909,
0.01958734355866909,
-0.05838751792907715,
0.04546443372964859,
-0.10674314200878143,
0.014553091488778591,
-0.050201915204524994,
0.03856472671031952,
-0.039914507418870926,
0.04091503471136093,
0.0692252367734909,
-0.056165024638175964,
-0.022217778488993645,
0.05320385843515396,
-0.053246449679136276,
0.05512828007340431,
0.01233996357768774,
-0.03214094042778015,
-0.037248846143484116,
-0.06400701403617859,
-0.012299779802560806,
-0.001248402171768248,
-0.13088665902614594,
-0.006201620679348707,
-0.07934118062257767,
0.010728211142122746,
0.09303271025419235,
0.038752418011426926,
-0.1964239627122879,
-0.023836173117160797,
-0.11233478039503098,
-0.005699053406715393,
-0.16866019368171692,
-0.005045190919190645,
0.07700827717781067,
-0.00426083616912365,
0.0094827925786376,
-0.0448179729282856,
0.011351296678185463,
0.06704969704151154,
-0.05723948776721954,
-0.10319613665342331
] |
null | null | null | <h2><strong>➲</strong><strong>Buy Now Official website @>> </strong><a href="https://www.facebook.com/BExtraWeightLossUK/"><strong>https://www.facebook.com/BExtraWeightLossUK/</strong></a></h2>
<h2><span style="background-color: #ff9900;"><strong>➲</strong><strong> Product Name — </strong><a style="background-color: #ff9900;" href="https://www.facebook.com/BExtraWeightLossUK/"><strong>B Extra Weight Loss UK</strong></a></span></h2>
<p><span style="background-color: #ffffff;">The containers can assist with supporting digestion, manage glucose levels and diminish hunger. When taken consistently, <a style="background-color: #ffffff;" href="https://www.facebook.com/BExtraWeightLossUK/"><strong>B Extra Weight Loss UK</strong></a> can assist with consuming fat quicker and lessen body weight.</span></p>
<p>The B+ tablets are a characteristic dietary enhancement explicitly intended for individuals who battle with heftiness and are searching for a clear and successful method for getting in shape.</p>
<p>In any case, it is essential to take note that <span><a href="https://www.facebook.com/BExtraWeightLossUK/"><strong>B Extra Weight Loss UK</strong></a></span><span> is not a supernatural occurrence fix. To effectively get in shape, coordinating a solid eating regimen and adequate activity into your everyday routine is significant. The cases can assist with accelerating the cycle and augment results.</span></p>
<p>B Additional tablets are a creative answer for people battling with heftiness. They address an exceptionally formed recipe that expects to advance weight reduction without the requirement for changes in diet or actual work. The cases contain fixings, for example, L-carnitine and L-arginine, which can support energy digestion. This implies that the body delivers more energy, which can assist you with feeling more dynamic and essential. Likewise, <a href="https://www.facebook.com/BExtraWeightLossUK/"><strong>B Extra Weight Loss UK</strong></a> can likewise assist with directing glucose levels, which can be especially helpful for individuals with diabetes.</p>
<p>Another medical advantage of <a href="https://www.facebook.com/BExtraWeightLossUK/"><strong>B Extra Weight Loss UK</strong></a> is that they can furnish the body with significant supplements. The cases contain various nutrients and minerals that can assist with keeping the body solid. For instance, they contain L-ascorbic acid, which is significant for a solid resistant framework, and calcium and magnesium, which are required areas of strength for teeth.</p>
<p><strong>Official facebook: ===>></strong></p>
<p><a href="https://www.facebook.com/profile.php?id=100090207926041"><strong>https://www.facebook.com/profile.php?id=100090207926041</strong></a></p>
<p><a href="https://www.facebook.com/BExtraWeightLoss/"><strong>https://www.facebook.com/BExtraWeightLoss/</strong></a></p>
<p><a href="https://www.facebook.com/BExtraDietInUK/"><strong>https://www.facebook.com/BExtraDietInUK/</strong></a></p>
<p><strong>Gamma===>></strong></p>
<p><a href="https://gamma.app/public/-fwo26etqsnpurol"><strong>https://gamma.app/public/-fwo26etqsnpurol</strong></a></p>
<p><a href="https://gamma.app/public/B-Extra-Weight-Loss-UK-yxl8t9vf4mojne5"><strong>https://gamma.app/public/B-Extra-Weight-Loss-UK-yxl8t9vf4mojne5</strong></a></p>
<p><strong>Group Google ===>></strong></p>
<p><a href="https://groups.google.com/g/jamevaz/c/bDw_pdpb6HU"><strong>https://groups.google.com/g/jamevaz/c/bDw_pdpb6HU</strong></a></p>
<p><a href="https://groups.google.com/g/jamevaz/c/AZWIk7ez95A"><strong>https://groups.google.com/g/jamevaz/c/AZWIk7ez95A</strong></a></p>
<p><strong>colab.research ===>></strong></p>
<p><a href="https://colab.research.google.com/drive/1G0g1BcLeTJiy5yCgL_itxHMh2Dx465LF?usp=sharing"><strong>https://colab.research.google.com/drive/1G0g1BcLeTJiy5yCgL_itxHMh2Dx465LF?usp=sharing</strong></a><strong> </strong></p>
<p><strong>Site Google===>></strong></p>
<p><a href="https://sites.google.com/view/b-extra-weight-loss-uk/home"><strong>https://sites.google.com/view/b-extra-weight-loss-uk/home</strong></a></p>
<p><strong>Blogger===>></strong></p>
<p><a href="https://mynewsupdatezone.blogspot.com/2023/11/b-extra-weight-loss-uk-reviews-beware.htm"><strong>https://mynewsupdatezone.blogspot.com/2023/11/b-extra-weight-loss-uk-reviews-beware.htm</strong></a></p>
<p><strong>webflow ===>></strong></p>
<p><a href="https://b-extra-weight-loss-uk.webflow.io/"><strong>https://b-extra-weight-loss-uk.webflow.io/</strong></a></p>
<p><strong>dibiz==>></strong></p>
<p><a href="https://www.dibiz.com/albelutz"><strong>https://www.dibiz.com/albelutz</strong></a></p>
<p><strong>medium ===>></strong></p>
<p><a href="https://medium.com/@albelutz/lose-weight-look-great-and-feel-healthy-00262917a072"><strong>https://medium.com/@albelutz/lose-weight-look-great-and-feel-healthy-00262917a072</strong></a></p>
<p><a href="https://medium.com/@albelutz/lose-weight-look-great-and-feel-healthy-be29aaad1790"><strong>https://medium.com/@albelutz/lose-weight-look-great-and-feel-healthy-be29aaad1790</strong></a></p>
<p><a href="https://medium.com/@albelutz/b-extra-weight-loss-uk-2023-dont-buy-before-visiting-on-website-scam-exposed-8842af4d4909"><strong>https://medium.com/@albelutz/b-extra-weight-loss-uk-2023-dont-buy-before-visiting-on-website-scam-exposed-8842af4d4909</strong></a></p>
<p><a href="https://medium.com/@albelutz/lose-weight-look-great-and-feel-healthy-91b77604881c"><strong>https://medium.com/@albelutz/lose-weight-look-great-and-feel-healthy-91b77604881c</strong></a></p>
<p><a href="https://medium.com/@albelutz/buy-now-official-website-https-www-facebook-com-bextraweightlossuk-9703629c7882"><strong>https://medium.com/@albelutz/buy-now-official-website-https-www-facebook-com-bextraweightlossuk-9703629c7882</strong></a></p>
<p><strong>Hashnode ===>></strong></p>
<p><a href="https://bextraweightlossuk.hashnode.dev/b-extra-weight-loss-uk-shocking-scam-warning-2023-update"><strong>https://bextraweightlossuk.hashnode.dev/b-extra-weight-loss-uk-shocking-scam-warning-2023-update</strong></a></p>
<p><a href="https://bextraweightlossuk.hashnode.dev/b-extra-weight-loss-uk-scam-alert-review-a-weight-loss-pills-or-waste-of-money"><strong>https://bextraweightlossuk.hashnode.dev/b-extra-weight-loss-uk-scam-alert-review-a-weight-loss-pills-or-waste-of-money</strong></a></p>
<p><a href="https://bextraweightlossuk.hashnode.dev/b-extra-weight-loss-uk-reviews-2023-scam-alert-must-read-before-buying"><strong>https://bextraweightlossuk.hashnode.dev/b-extra-weight-loss-uk-reviews-2023-scam-alert-must-read-before-buying</strong></a></p>
<p><strong>Animale Male Enhancement CBD Gummies Jamaica</strong></p>
<p><strong><a href="https://www.facebook.com/AnimaleMaleEnhancementCBDGummiesJamaica/">https://www.facebook.com/AnimaleMaleEnhancementCBDGummiesJamaica/</a> </strong></p>
<p><strong>B Extra Pills UK</strong></p>
<p><strong><a href="https://www.facebook.com/BExtraPillsUK/">https://www.facebook.com/BExtraPillsUK/</a> </strong></p>
<p><strong><a href="https://www.facebook.com/BExtraPills/">https://www.facebook.com/BExtraPills/</a> </strong></p>
<p><strong>B Extra Slimming Pills UK</strong></p>
<p><strong><a href="https://www.facebook.com/BExtraSlimmingPillsUK/">https://www.facebook.com/BExtraSlimmingPillsUK/</a> </strong></p>
<p><strong>Gentle Groove CBD Gummies</strong></p>
<p><strong><a href="https://www.facebook.com/GentleGrooveCBDGummiesUnitedStates/">https://www.facebook.com/GentleGrooveCBDGummiesUnitedStates/</a> </strong></p>
<p><strong>Karlien Van Jaarsveld Keto Gummies</strong></p>
<p><strong><a href="https://www.facebook.com/KarlienVanJaarsveldKetoGummiesInZA/">https://www.facebook.com/KarlienVanJaarsveldKetoGummiesInZA/</a> </strong></p>
<p><strong>Smart Hemp Gummies Canada</strong></p>
<p><strong><a href="https://www.facebook.com/SmartHempGummiesInCanada/">https://www.facebook.com/SmartHempGummiesInCanada/</a> </strong></p>
<p><strong>Smart Hemp Gummies Australia</strong></p>
<p><strong><a href="https://www.facebook.com/SmartHempGummiesInAustralia/">https://www.facebook.com/SmartHempGummiesInAustralia/</a> </strong></p>
<p><strong>Amarose Skin Tag Remover</strong></p>
<p><strong><a href="https://www.outlookindia.com/outlook-spotlight/-official-website-amarose-skin-tag-remover-reviews-exposed-scam-2023-shark-tank-skin-tag-remover-read-bliss-skin-tag-remover-nobody-tells-you-this-amarose-skin-tags-remover-is-safe-or-effective--news-255555">https://www.outlookindia.com/outlook-spotlight/-official-website-amarose-skin-tag-remover-reviews-exposed-scam-2023-shark-tank-skin-tag-remover-read-bliss-skin-tag-remover-nobody-tells-you-this-amarose-skin-tags-remover-is-safe-or-effective--news-255555</a> </strong></p>
<p><strong><a href="https://www.facebook.com/people/Amarose-Skin-Tag-Remover-Reviews-Bliss-Skin-Tag-Remover/100089999527140/">https://www.facebook.com/people/Amarose-Skin-Tag-Remover-Reviews-Bliss-Skin-Tag-Remover/100089999527140/</a> </strong></p> | {} | null | Jamessimer/BExtraWeightLossUK | [
"region:us"
] | 2023-11-11T06:15:14+00:00 | [] | [] | TAGS
#region-us
| <h2><strong></strong><strong>Buy Now Official website @>> </strong><a href="URL/URL
<h2><span style="background-color: #ff9900;"><strong></strong><strong> Product Name — </strong><a style="background-color: #ff9900;" href="URL Extra Weight Loss UK</strong></a></span></h2>
<p><span style="background-color: #ffffff;">The containers can assist with supporting digestion, manage glucose levels and diminish hunger. When taken consistently, <a style="background-color: #ffffff;" href="URL Extra Weight Loss UK</strong></a> can assist with consuming fat quicker and lessen body weight.</span></p>
<p>The B+ tablets are a characteristic dietary enhancement explicitly intended for individuals who battle with heftiness and are searching for a clear and successful method for getting in shape.</p>
<p>In any case, it is essential to take note that <span><a href="URL Extra Weight Loss UK</strong></a></span><span> is not a supernatural occurrence fix. To effectively get in shape, coordinating a solid eating regimen and adequate activity into your everyday routine is significant. The cases can assist with accelerating the cycle and augment results.</span></p>
<p>B Additional tablets are a creative answer for people battling with heftiness. They address an exceptionally formed recipe that expects to advance weight reduction without the requirement for changes in diet or actual work. The cases contain fixings, for example, L-carnitine and L-arginine, which can support energy digestion. This implies that the body delivers more energy, which can assist you with feeling more dynamic and essential. Likewise, <a href="URL Extra Weight Loss UK</strong></a> can likewise assist with directing glucose levels, which can be especially helpful for individuals with diabetes.</p>
<p>Another medical advantage of <a href="URL Extra Weight Loss UK</strong></a> is that they can furnish the body with significant supplements. The cases contain various nutrients and minerals that can assist with keeping the body solid. For instance, they contain L-ascorbic acid, which is significant for a solid resistant framework, and calcium and magnesium, which are required areas of strength for teeth.</p>
<p><strong>Official facebook: ===>></strong></p>
<p><a href="URL/URL
<p><a href="URL/URL
<p><a href="URL/URL
<p><strong>Gamma===>></strong></p>
<p><a href="URL/URL
<p><a href="URL/URL
<p><strong>Group Google ===>></strong></p>
<p><a href="URL/URL
<p><a href="URL/URL
<p><strong>colab.research ===>></strong></p>
<p><a href="URL/URL </strong></p>
<p><strong>Site Google===>></strong></p>
<p><a href="URL/URL
<p><strong>Blogger===>></strong></p>
<p><a href="URL/URL
<p><strong>webflow ===>></strong></p>
<p><a href="URL/URL
<p><strong>dibiz==>></strong></p>
<p><a href="URL/URL
<p><strong>medium ===>></strong></p>
<p><a href="URL/URL
<p><a href="URL/URL
<p><a href="URL/URL
<p><a href="URL/URL
<p><a href="URL/URL
<p><strong>Hashnode ===>></strong></p>
<p><a href="URL/URL
<p><a href="URL/URL
<p><a href="URL/URL
<p><strong>Animale Male Enhancement CBD Gummies Jamaica</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong>B Extra Pills UK</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong>B Extra Slimming Pills UK</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong>Gentle Groove CBD Gummies</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong>Karlien Van Jaarsveld Keto Gummies</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong>Smart Hemp Gummies Canada</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong>Smart Hemp Gummies Australia</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong>Amarose Skin Tag Remover</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong><a href="URL/URL </strong></p> | [] | [
"TAGS\n#region-us \n"
] | [
6
] | [
"passage: TAGS\n#region-us \n"
] | [
0.024608636274933815,
-0.026205500587821007,
-0.009666500613093376,
-0.10395516455173492,
0.08638657629489899,
0.059816278517246246,
0.01882290467619896,
0.020661840215325356,
0.23975107073783875,
-0.005599027033895254,
0.1219947561621666,
0.0015615287702530622,
-0.037353623658418655,
0.03733762726187706,
-0.0035912662278860807,
-0.17583473026752472,
0.03876631706953049,
-0.018274923786520958,
0.01843859627842903,
0.026470553129911423,
-0.07776834815740585,
-0.07564429938793182,
0.015296397730708122,
-0.10247814655303955,
-0.083692267537117,
0.11002834886312485,
0.031466204673051834,
-0.019670886918902397,
0.10779199749231339,
-0.04243955761194229,
0.18699054419994354,
-0.011512263678014278,
-0.11213519424200058,
-0.2536850869655609,
0.021806683391332626,
-0.01765260472893715,
-0.08747660368680954,
0.01506110467016697,
0.0665089413523674,
-0.09014441072940826,
-0.0588928684592247,
0.0795099288225174,
-0.01132340170443058,
0.04246443510055542,
-0.27593839168548584,
-0.12684126198291779,
-0.05297930911183357,
-0.1421966552734375,
0.08651168644428253,
0.04035491496324539,
0.008764253929257393,
0.15506891906261444,
-0.20897391438484192,
0.004104613792151213,
0.08255259692668915,
-0.2538507878780365,
0.05591634660959244,
0.17671173810958862,
0.03623908758163452,
0.18037272989749908,
0.0060391901060938835,
0.11029672622680664,
0.0716743916273117,
-0.024263937026262283,
-0.17590197920799255,
-0.08127854019403458,
-0.04696211963891983,
0.16642488539218903,
-0.06727185100317001,
-0.14248386025428772,
0.34701237082481384,
0.00015008423360995948,
0.009657775051891804,
0.16921205818653107,
-0.059524230659008026,
-0.09972117841243744,
0.07259953022003174,
0.016484731808304787,
0.018492350354790688,
0.1471305936574936,
0.16307872533798218,
-0.0458691343665123,
-0.13837823271751404,
-0.018630273640155792,
-0.22798998653888702,
0.17510560154914856,
-0.03248048573732376,
0.13137903809547424,
-0.27447956800460815,
0.01684025302529335,
-0.2570667266845703,
0.0032130838371813297,
0.04178816080093384,
-0.06004921346902847,
-0.0226522795855999,
-0.013265985064208508,
-0.08018817007541656,
0.004899587947875261,
0.06192673370242119,
0.1266920566558838,
-0.06128726154565811,
0.06128238886594772,
-0.09319206327199936,
0.141696035861969,
0.07166698575019836,
0.07868369668722153,
0.13037432730197906,
0.041205424815416336,
-0.07187089323997498,
-0.21872246265411377,
-0.0026476888451725245,
-0.06275863200426102,
-0.09502086788415909,
-0.0020165652967989445,
-0.11606067419052124,
0.17244569957256317,
-0.030802514404058456,
-0.09825427830219269,
-0.11208184063434601,
0.09148659557104111,
-0.032992321997880936,
-0.03437839448451996,
-0.03552987426519394,
-0.020977836102247238,
0.019381176680326462,
0.04704452306032181,
-0.1548958420753479,
-0.005131472367793322,
0.07039852440357208,
0.11502562463283539,
-0.1346137970685959,
-0.003783059772104025,
-0.07908964157104492,
0.03039063885807991,
0.07654735445976257,
-0.16510222852230072,
0.03158547356724739,
-0.1124754324555397,
-0.07531405985355377,
0.002912673633545637,
-0.015710093080997467,
-0.016202643513679504,
0.166526660323143,
-0.0020451415330171585,
0.0714716836810112,
-0.026345307007431984,
-0.05890209600329399,
-0.11243434250354767,
-0.08489254862070084,
0.05390460044145584,
0.03670717030763626,
0.03266148269176483,
-0.2193479984998703,
0.014805203303694725,
-0.12762966752052307,
0.1360815018415451,
-0.10566820204257965,
-0.04705966264009476,
-0.022842247039079666,
0.20562705397605896,
0.037286072969436646,
0.08762791007757187,
-0.22171171009540558,
0.039756543934345245,
-0.05404696613550186,
0.18480908870697021,
-0.1502426266670227,
-0.0799463614821434,
0.20813211798667908,
-0.07964949309825897,
-0.10115210711956024,
0.021235812455415726,
0.020391687750816345,
0.026287272572517395,
0.0766737088561058,
0.4564172327518463,
-0.09766800701618195,
-0.09146861732006073,
0.10178250074386597,
0.17055274546146393,
-0.12427149713039398,
-0.1827561855316162,
0.06446871906518936,
-0.16666454076766968,
-0.1973118633031845,
0.0018917324487119913,
0.09222044050693512,
0.038269978016614914,
-0.07875611633062363,
-0.020746968686580658,
0.06325206160545349,
-0.0007678253459744155,
0.09095914661884308,
0.03755716234445572,
0.09034032374620438,
-0.08716782182455063,
0.11115926504135132,
-0.05017651244997978,
0.004037132486701012,
0.1343354731798172,
0.027325427159667015,
-0.03223329409956932,
0.08694463223218918,
-0.0485352948307991,
0.05295134335756302,
-0.1662379503250122,
-0.15068690478801727,
0.03398871049284935,
0.06283251196146011,
0.03186952322721481,
0.1280253529548645,
0.08141885697841644,
-0.10732853412628174,
0.022690722718834877,
-0.004228927195072174,
0.058398615568876266,
0.03891623765230179,
0.006107209715992212,
0.008764320984482765,
0.0961301177740097,
-0.10607069730758667,
-0.13589619100093842,
-0.07336436957120895,
-0.014715781435370445,
0.14371353387832642,
-0.0302802175283432,
0.07690227776765823,
-0.004240254405885935,
0.00013200697139836848,
0.06930823624134064,
0.08137880265712738,
0.016412746161222458,
0.08971183747053146,
-0.05237193778157234,
-0.05160155147314072,
0.10863113403320312,
-0.13533565402030945,
0.17837053537368774,
0.14053137600421906,
-0.20532016456127167,
0.029453208670020103,
-0.06838275492191315,
0.03670361638069153,
-0.008162540383636951,
0.0975119024515152,
-0.08272241055965424,
-0.02106042578816414,
0.013134466484189034,
0.0052274600602686405,
-0.013007243163883686,
0.017682146281003952,
-0.07295988500118256,
-0.07787393033504486,
-0.10233919322490692,
0.08436838537454605,
0.11562882363796234,
-0.10282530635595322,
0.14214380085468292,
0.4384984076023102,
0.11495281755924225,
0.21582984924316406,
-0.09581480920314789,
-0.0412987545132637,
0.007486371789127588,
0.0001535322517156601,
-0.04476691037416458,
0.08031861484050751,
-0.15973517298698425,
-0.038901735097169876,
0.027348900213837624,
0.07128690183162689,
0.11475157737731934,
-0.14959022402763367,
-0.09639324247837067,
-0.00793045200407505,
0.0022841424215584993,
-0.1249532699584961,
0.023905446752905846,
-0.03974650055170059,
0.04015624523162842,
0.07232289016246796,
-0.021535737439990044,
0.13939237594604492,
-0.04166141897439957,
-0.0639561116695404,
0.07585346698760986,
-0.2017085999250412,
-0.23179671168327332,
-0.12309670448303223,
-0.14680525660514832,
0.04366797208786011,
0.05154111236333847,
0.01726446859538555,
-0.17635835707187653,
-0.015074856579303741,
0.07706750929355621,
0.07820965349674225,
-0.20886357128620148,
-0.022814949974417686,
-0.004290030337870121,
0.0895976573228836,
-0.10227091610431671,
-0.0017130117630586028,
-0.04419664293527603,
-0.10150232166051865,
0.0017003051470965147,
0.07279510796070099,
-0.137485533952713,
0.13807645440101624,
0.21589438617229462,
0.07225540280342102,
0.07359948754310608,
-0.019093448296189308,
0.09936179965734482,
-0.10856141895055771,
-0.16549113392829895,
0.08348225057125092,
-0.06234746053814888,
0.047262318432331085,
0.17534415423870087,
0.03307317942380905,
-0.13904969394207,
-0.015682822093367577,
-0.0402069091796875,
-0.15603256225585938,
-0.238995760679245,
-0.09178274869918823,
-0.1182505264878273,
0.16442428529262543,
0.0009358620154671371,
0.06651917099952698,
0.08258313685655594,
-0.022042419761419296,
0.16447891294956207,
-0.07379321753978729,
-0.07578866183757782,
-0.006978808436542749,
0.12375060468912125,
-0.056660156697034836,
-0.03080669604241848,
-0.10566964000463486,
-0.008295975625514984,
0.1151021271944046,
0.15304014086723328,
0.12214863300323486,
0.2957419455051422,
0.08268889784812927,
0.026645636186003685,
0.08958091586828232,
0.17622539401054382,
0.09495089203119278,
0.07838419824838638,
-0.045413073152303696,
-0.014814783819019794,
0.014317171648144722,
-0.04022889584302902,
0.010141594335436821,
0.14683100581169128,
-0.2679629921913147,
-0.006678564939647913,
-0.2710230350494385,
0.0965198427438736,
-0.10913380235433578,
0.11837165057659149,
-0.01015760749578476,
0.10194015502929688,
0.11082887649536133,
0.03233652561903,
-0.03858073800802231,
0.16613617539405823,
0.08450309932231903,
-0.11277695000171661,
0.001758623169735074,
0.03737903758883476,
0.09715615212917328,
-0.02818971499800682,
0.12721189856529236,
-0.11048974841833115,
-0.1464834064245224,
0.013753619976341724,
0.07152791321277618,
-0.15373679995536804,
0.3138748109340668,
0.012069208547472954,
-0.13481520116329193,
-0.01481647603213787,
-0.09957809001207352,
-0.006440147757530212,
0.1254177987575531,
0.09333524852991104,
0.07935678958892822,
-0.2185502052307129,
-0.13339371979236603,
0.05872276425361633,
-0.00575496768578887,
0.22408108413219452,
-0.034034017473459244,
-0.11356475204229355,
-0.027013886719942093,
0.04241163283586502,
-0.06043251231312752,
0.08524788916110992,
0.023536119610071182,
-0.08113526552915573,
-0.032957352697849274,
0.05323701351881027,
0.012368366122245789,
0.00524376705288887,
0.09360801428556442,
0.020107939839363098,
-0.0009265501867048442,
0.01785753294825554,
0.047885000705718994,
-0.0675911232829094,
-0.1984109878540039,
0.09357594698667526,
-0.05215044692158699,
0.0015536568826064467,
-0.08013670891523361,
-0.15122665464878082,
-0.08837161958217621,
-0.16009655594825745,
0.12540200352668762,
-0.034406669437885284,
0.12700119614601135,
-0.06619787961244583,
0.17341409623622894,
-0.07871770113706589,
0.04481020197272301,
-0.047349292784929276,
0.050332702696323395,
-0.007268077693879604,
-0.07756082713603973,
0.16585899889469147,
-0.15564003586769104,
0.01809087023139,
0.19572502374649048,
-0.018915493041276932,
0.07177707552909851,
0.021322092041373253,
-0.0636206790804863,
0.23147478699684143,
0.3014698624610901,
0.008138049393892288,
0.1665448248386383,
0.3018903136253357,
-0.07466315478086472,
-0.2642788887023926,
-0.05505012720823288,
-0.2841376066207886,
-0.05371501296758652,
0.10716094076633453,
-0.22523896396160126,
0.06986407935619354,
0.14383509755134583,
-0.06471995264291763,
0.30228954553604126,
-0.21825523674488068,
0.012589273042976856,
0.15434536337852478,
-0.08868814259767532,
0.5515313148498535,
-0.1133413165807724,
-0.17677772045135498,
-0.008122089318931103,
-0.08741296827793121,
0.10602109134197235,
-0.0340677872300148,
0.06877441704273224,
0.013465235009789467,
0.04797380417585373,
0.048932258039712906,
-0.03111894056200981,
0.22701001167297363,
0.008710170164704323,
0.09015397727489471,
-0.07378865778446198,
-0.18624304234981537,
0.11639340221881866,
-0.04359482601284981,
-0.08891059458255768,
0.0849778801202774,
-0.05942516401410103,
-0.11078983545303345,
0.04663389176130295,
-0.07950539886951447,
-0.024862350896000862,
0.08423490077257156,
-0.04678233340382576,
-0.042606171220541,
-0.008054176345467567,
-0.1618063747882843,
-0.0002289071271661669,
0.31360217928886414,
-0.07096036523580551,
0.16695955395698547,
0.03677211329340935,
0.00038613268407061696,
-0.11027684062719345,
0.030288029462099075,
-0.05203165486454964,
-0.021576624363660812,
0.09578979015350342,
-0.11096979677677155,
0.03204701095819473,
0.14160704612731934,
-0.04864364117383957,
0.05846960097551346,
0.09256096184253693,
-0.0849417969584465,
0.007583672646433115,
0.17753590643405914,
-0.17537221312522888,
-0.1273445188999176,
-0.006135711446404457,
-0.09862716495990753,
0.14055661857128143,
0.04394126310944557,
0.05191568285226822,
0.16669964790344238,
0.03967129811644554,
-0.029474308714270592,
-0.02817419543862343,
-0.1153380498290062,
-0.0201893113553524,
0.040153320878744125,
0.00045633706031367183,
-0.08791285753250122,
0.2262638509273529,
0.06409153342247009,
-0.1328488290309906,
-0.051157206296920776,
0.2161225974559784,
-0.06805316358804703,
-0.04911920800805092,
-0.223562553524971,
0.10752306133508682,
-0.07112517952919006,
-0.0965060144662857,
0.05453834682703018,
-0.02270081453025341,
0.005106312222778797,
0.181985542178154,
0.03941008821129799,
0.11070270836353302,
0.03738937899470329,
-0.02448922023177147,
0.15798696875572205,
-0.142850860953331,
-0.14191335439682007,
-0.025354057550430298,
-0.08757315576076508,
-0.13844476640224457,
-0.026804137974977493,
0.1617041826248169,
-0.09177309274673462,
-0.14772607386112213,
-0.2621181011199951,
0.10968475043773651,
-0.16432365775108337,
-0.10192688554525375,
-0.03469514101743698,
-0.08968492597341537,
0.0696166530251503,
0.030301768332719803,
-0.03093348816037178,
-0.06706760823726654,
-0.18593791127204895,
0.0816768929362297,
0.06349513679742813,
0.045533183962106705,
-0.017847947776317596,
0.0067379772663116455,
0.1720137596130371,
0.025955144315958023,
0.10040043294429779,
0.16762186586856842,
0.011397695168852806,
0.2246655523777008,
-0.1671202927827835,
-0.11496317386627197,
0.1336962729692459,
-0.026543032377958298,
0.06762003898620605,
0.16792191565036774,
-0.0772583931684494,
0.015526676550507545,
-0.028136352077126503,
0.07066910713911057,
-0.11003983020782471,
-0.105624258518219,
0.007937257178127766,
0.02567129209637642,
-0.2755882740020752,
-0.005599735304713249,
-0.19717298448085785,
0.14788752794265747,
0.02579621411859989,
0.03297143429517746,
0.10257530212402344,
0.10404334217309952,
0.08312062919139862,
-0.0017710148822516203,
0.03226327523589134,
-0.1176818460226059,
0.02753005363047123,
-0.059239376336336136,
-0.020663779228925705,
0.017624232918024063,
0.36952024698257446,
-0.03603357449173927,
-0.046802736818790436,
0.003710439894348383,
0.1307835876941681,
-0.02139742486178875,
0.017395347356796265,
0.13209912180900574,
0.12607666850090027,
-0.08595693111419678,
-0.1504845917224884,
0.04888554662466049,
-0.04565655067563057,
-0.02836887165904045,
0.1464131623506546,
0.05905961990356445,
0.1050296202301979,
0.0908031314611435,
-0.014463032595813274,
-0.00318976235575974,
0.012856799177825451,
-0.15486004948616028,
0.06223496049642563,
-0.010558074340224266,
0.012565906159579754,
0.017934376373887062,
0.15238402783870697,
-0.005540105979889631,
0.07739730179309845,
-0.09889880567789078,
0.004208535887300968,
-0.13498884439468384,
-0.07913459837436676,
0.03617347031831741,
-0.13393273949623108,
0.04141177982091904,
-0.01871878281235695,
0.029611799865961075,
0.30386561155319214,
0.02558239921927452,
-0.020639164373278618,
0.12512871623039246,
-0.1214587539434433,
-0.12050267308950424,
-0.001594188273884356,
-0.029960084706544876,
0.0791488066315651,
-0.02633434161543846,
-0.0997740775346756,
-0.1001306027173996,
-0.15166029334068298,
-0.09759195148944855,
0.05182836204767227,
-0.04993441700935364,
-0.059362251311540604,
-0.17634081840515137,
-0.05707859992980957,
-0.05147340148687363,
0.14025864005088806,
-0.12263951450586319,
0.15159130096435547,
-0.014490418136119843,
0.004084470681846142,
0.04405883327126503,
0.1950942426919937,
-0.03644494712352753,
0.08714226633310318,
0.0154351145029068,
0.1522706001996994,
-0.05119588226079941,
0.14720745384693146,
-0.10931728035211563,
-0.04014137014746666,
-0.06710435450077057,
0.21513493359088898,
0.25630924105644226,
-0.06136954948306084,
-0.008937356993556023,
-0.012760217301547527,
0.058654606342315674,
0.1073930487036705,
0.16049085557460785,
0.002326392102986574,
0.2802925705909729,
-0.03133585304021835,
0.04815128445625305,
0.02901598811149597,
0.013607407920062542,
-0.06336209923028946,
0.03397751972079277,
0.07539387792348862,
-0.035039983689785004,
-0.1412304788827896,
0.15837742388248444,
-0.21980468928813934,
0.18157227337360382,
0.11640069633722305,
-0.19996967911720276,
-0.013728445395827293,
-0.04882071167230606,
0.1689416468143463,
-0.0856364443898201,
0.1637246012687683,
-0.0903693437576294,
-0.2108195722103119,
-0.2056000679731369,
0.03867346793413162,
-0.34623071551322937,
-0.254462867975235,
0.10422009229660034,
0.1488201916217804,
0.04015883058309555,
-0.018507536500692368,
-0.019967829808592796,
-0.018367022275924683,
0.04877542704343796,
-0.0067357709631323814,
0.06014643982052803,
0.031397558748722076,
-0.02988368645310402,
-0.24127542972564697,
-0.029804671183228493,
0.023964406922459602,
-0.07093082368373871,
0.07464958727359772,
-0.06874357163906097,
-0.022495782002806664,
0.08059766888618469,
-0.03066304884850979,
0.03298592567443848,
-0.035373736172914505,
-0.16326889395713806,
0.027529051527380943,
0.03900543600320816,
0.036012712866067886,
0.00634160777553916,
0.0008072225609794259,
-0.03455270454287529,
0.0644603744149208,
-0.16716794669628143,
-0.16015739738941193,
0.14140215516090393,
-0.06745140254497528,
0.2779497504234314,
-0.05812826007604599,
-0.0809100940823555,
0.04766704887151718,
-0.03426874056458473,
0.1807648241519928,
-0.07756473124027252,
0.047254521399736404,
0.12766779959201813,
0.011127962730824947,
0.03121316432952881,
-0.3092964291572571,
0.11082969605922699,
-0.000795336440205574,
-0.006093299947679043,
-0.07581598311662674
] |
null | null | null | <h2><strong>➲</strong><strong>Buy Now Official website @>> </strong><a href="https://www.facebook.com/BExtraWeightLossUK/"><strong>https://www.facebook.com/BExtraWeightLossUK/</strong></a></h2>
<h2><span style="background-color: #ff9900;"><strong>➲</strong><strong> Product Name — </strong><a style="background-color: #ff9900;" href="https://www.facebook.com/BExtraWeightLossUK/"><strong>B Extra Weight Loss UK</strong></a></span></h2>
<p><span style="background-color: #ffffff;">The containers can assist with supporting digestion, manage glucose levels and diminish hunger. When taken consistently, <a style="background-color: #ffffff;" href="https://www.facebook.com/BExtraWeightLossUK/"><strong>B Extra Weight Loss UK</strong></a> can assist with consuming fat quicker and lessen body weight.</span></p>
<p>The B+ tablets are a characteristic dietary enhancement explicitly intended for individuals who battle with heftiness and are searching for a clear and successful method for getting in shape.</p>
<p>In any case, it is essential to take note that <span><a href="https://www.facebook.com/BExtraWeightLossUK/"><strong>B Extra Weight Loss UK</strong></a></span><span> is not a supernatural occurrence fix. To effectively get in shape, coordinating a solid eating regimen and adequate activity into your everyday routine is significant. The cases can assist with accelerating the cycle and augment results.</span></p>
<p>B Additional tablets are a creative answer for people battling with heftiness. They address an exceptionally formed recipe that expects to advance weight reduction without the requirement for changes in diet or actual work. The cases contain fixings, for example, L-carnitine and L-arginine, which can support energy digestion. This implies that the body delivers more energy, which can assist you with feeling more dynamic and essential. Likewise, <a href="https://www.facebook.com/BExtraWeightLossUK/"><strong>B Extra Weight Loss UK</strong></a> can likewise assist with directing glucose levels, which can be especially helpful for individuals with diabetes.</p>
<p>Another medical advantage of <a href="https://www.facebook.com/BExtraWeightLossUK/"><strong>B Extra Weight Loss UK</strong></a> is that they can furnish the body with significant supplements. The cases contain various nutrients and minerals that can assist with keeping the body solid. For instance, they contain L-ascorbic acid, which is significant for a solid resistant framework, and calcium and magnesium, which are required areas of strength for teeth.</p>
<p><strong>Official facebook: ===>></strong></p>
<p><a href="https://www.facebook.com/profile.php?id=100090207926041"><strong>https://www.facebook.com/profile.php?id=100090207926041</strong></a></p>
<p><a href="https://www.facebook.com/BExtraWeightLoss/"><strong>https://www.facebook.com/BExtraWeightLoss/</strong></a></p>
<p><a href="https://www.facebook.com/BExtraDietInUK/"><strong>https://www.facebook.com/BExtraDietInUK/</strong></a></p>
<p><strong>Gamma===>></strong></p>
<p><a href="https://gamma.app/public/-fwo26etqsnpurol"><strong>https://gamma.app/public/-fwo26etqsnpurol</strong></a></p>
<p><a href="https://gamma.app/public/B-Extra-Weight-Loss-UK-yxl8t9vf4mojne5"><strong>https://gamma.app/public/B-Extra-Weight-Loss-UK-yxl8t9vf4mojne5</strong></a></p>
<p><strong>Group Google ===>></strong></p>
<p><a href="https://groups.google.com/g/jamevaz/c/bDw_pdpb6HU"><strong>https://groups.google.com/g/jamevaz/c/bDw_pdpb6HU</strong></a></p>
<p><a href="https://groups.google.com/g/jamevaz/c/AZWIk7ez95A"><strong>https://groups.google.com/g/jamevaz/c/AZWIk7ez95A</strong></a></p>
<p><strong>colab.research ===>></strong></p>
<p><a href="https://colab.research.google.com/drive/1G0g1BcLeTJiy5yCgL_itxHMh2Dx465LF?usp=sharing"><strong>https://colab.research.google.com/drive/1G0g1BcLeTJiy5yCgL_itxHMh2Dx465LF?usp=sharing</strong></a><strong> </strong></p>
<p><strong>Site Google===>></strong></p>
<p><a href="https://sites.google.com/view/b-extra-weight-loss-uk/home"><strong>https://sites.google.com/view/b-extra-weight-loss-uk/home</strong></a></p>
<p><strong>Blogger===>></strong></p>
<p><a href="https://mynewsupdatezone.blogspot.com/2023/11/b-extra-weight-loss-uk-reviews-beware.htm"><strong>https://mynewsupdatezone.blogspot.com/2023/11/b-extra-weight-loss-uk-reviews-beware.htm</strong></a></p>
<p><strong>webflow ===>></strong></p>
<p><a href="https://b-extra-weight-loss-uk.webflow.io/"><strong>https://b-extra-weight-loss-uk.webflow.io/</strong></a></p>
<p><strong>dibiz==>></strong></p>
<p><a href="https://www.dibiz.com/albelutz"><strong>https://www.dibiz.com/albelutz</strong></a></p>
<p><strong>medium ===>></strong></p>
<p><a href="https://medium.com/@albelutz/lose-weight-look-great-and-feel-healthy-00262917a072"><strong>https://medium.com/@albelutz/lose-weight-look-great-and-feel-healthy-00262917a072</strong></a></p>
<p><a href="https://medium.com/@albelutz/lose-weight-look-great-and-feel-healthy-be29aaad1790"><strong>https://medium.com/@albelutz/lose-weight-look-great-and-feel-healthy-be29aaad1790</strong></a></p>
<p><a href="https://medium.com/@albelutz/b-extra-weight-loss-uk-2023-dont-buy-before-visiting-on-website-scam-exposed-8842af4d4909"><strong>https://medium.com/@albelutz/b-extra-weight-loss-uk-2023-dont-buy-before-visiting-on-website-scam-exposed-8842af4d4909</strong></a></p>
<p><a href="https://medium.com/@albelutz/lose-weight-look-great-and-feel-healthy-91b77604881c"><strong>https://medium.com/@albelutz/lose-weight-look-great-and-feel-healthy-91b77604881c</strong></a></p>
<p><a href="https://medium.com/@albelutz/buy-now-official-website-https-www-facebook-com-bextraweightlossuk-9703629c7882"><strong>https://medium.com/@albelutz/buy-now-official-website-https-www-facebook-com-bextraweightlossuk-9703629c7882</strong></a></p>
<p><strong>Hashnode ===>></strong></p>
<p><a href="https://bextraweightlossuk.hashnode.dev/b-extra-weight-loss-uk-shocking-scam-warning-2023-update"><strong>https://bextraweightlossuk.hashnode.dev/b-extra-weight-loss-uk-shocking-scam-warning-2023-update</strong></a></p>
<p><a href="https://bextraweightlossuk.hashnode.dev/b-extra-weight-loss-uk-scam-alert-review-a-weight-loss-pills-or-waste-of-money"><strong>https://bextraweightlossuk.hashnode.dev/b-extra-weight-loss-uk-scam-alert-review-a-weight-loss-pills-or-waste-of-money</strong></a></p>
<p><a href="https://bextraweightlossuk.hashnode.dev/b-extra-weight-loss-uk-reviews-2023-scam-alert-must-read-before-buying"><strong>https://bextraweightlossuk.hashnode.dev/b-extra-weight-loss-uk-reviews-2023-scam-alert-must-read-before-buying</strong></a></p>
<p><strong>Animale Male Enhancement CBD Gummies Jamaica</strong></p>
<p><strong><a href="https://www.facebook.com/AnimaleMaleEnhancementCBDGummiesJamaica/">https://www.facebook.com/AnimaleMaleEnhancementCBDGummiesJamaica/</a> </strong></p>
<p><strong>B Extra Pills UK</strong></p>
<p><strong><a href="https://www.facebook.com/BExtraPillsUK/">https://www.facebook.com/BExtraPillsUK/</a> </strong></p>
<p><strong><a href="https://www.facebook.com/BExtraPills/">https://www.facebook.com/BExtraPills/</a> </strong></p>
<p><strong>B Extra Slimming Pills UK</strong></p>
<p><strong><a href="https://www.facebook.com/BExtraSlimmingPillsUK/">https://www.facebook.com/BExtraSlimmingPillsUK/</a> </strong></p>
<p><strong>Gentle Groove CBD Gummies</strong></p>
<p><strong><a href="https://www.facebook.com/GentleGrooveCBDGummiesUnitedStates/">https://www.facebook.com/GentleGrooveCBDGummiesUnitedStates/</a> </strong></p>
<p><strong>Karlien Van Jaarsveld Keto Gummies</strong></p>
<p><strong><a href="https://www.facebook.com/KarlienVanJaarsveldKetoGummiesInZA/">https://www.facebook.com/KarlienVanJaarsveldKetoGummiesInZA/</a> </strong></p>
<p><strong>Smart Hemp Gummies Canada</strong></p>
<p><strong><a href="https://www.facebook.com/SmartHempGummiesInCanada/">https://www.facebook.com/SmartHempGummiesInCanada/</a> </strong></p>
<p><strong>Smart Hemp Gummies Australia</strong></p>
<p><strong><a href="https://www.facebook.com/SmartHempGummiesInAustralia/">https://www.facebook.com/SmartHempGummiesInAustralia/</a> </strong></p>
<p><strong>Amarose Skin Tag Remover</strong></p>
<p><strong><a href="https://www.outlookindia.com/outlook-spotlight/-official-website-amarose-skin-tag-remover-reviews-exposed-scam-2023-shark-tank-skin-tag-remover-read-bliss-skin-tag-remover-nobody-tells-you-this-amarose-skin-tags-remover-is-safe-or-effective--news-255555">https://www.outlookindia.com/outlook-spotlight/-official-website-amarose-skin-tag-remover-reviews-exposed-scam-2023-shark-tank-skin-tag-remover-read-bliss-skin-tag-remover-nobody-tells-you-this-amarose-skin-tags-remover-is-safe-or-effective--news-255555</a> </strong></p>
<p><strong><a href="https://www.facebook.com/people/Amarose-Skin-Tag-Remover-Reviews-Bliss-Skin-Tag-Remover/100089999527140/">https://www.facebook.com/people/Amarose-Skin-Tag-Remover-Reviews-Bliss-Skin-Tag-Remover/100089999527140/</a> </strong></p> | {} | null | Jamessimer/BExtraWeightLossshopnow | [
"region:us"
] | 2023-11-11T06:16:14+00:00 | [] | [] | TAGS
#region-us
| <h2><strong></strong><strong>Buy Now Official website @>> </strong><a href="URL/URL
<h2><span style="background-color: #ff9900;"><strong></strong><strong> Product Name — </strong><a style="background-color: #ff9900;" href="URL Extra Weight Loss UK</strong></a></span></h2>
<p><span style="background-color: #ffffff;">The containers can assist with supporting digestion, manage glucose levels and diminish hunger. When taken consistently, <a style="background-color: #ffffff;" href="URL Extra Weight Loss UK</strong></a> can assist with consuming fat quicker and lessen body weight.</span></p>
<p>The B+ tablets are a characteristic dietary enhancement explicitly intended for individuals who battle with heftiness and are searching for a clear and successful method for getting in shape.</p>
<p>In any case, it is essential to take note that <span><a href="URL Extra Weight Loss UK</strong></a></span><span> is not a supernatural occurrence fix. To effectively get in shape, coordinating a solid eating regimen and adequate activity into your everyday routine is significant. The cases can assist with accelerating the cycle and augment results.</span></p>
<p>B Additional tablets are a creative answer for people battling with heftiness. They address an exceptionally formed recipe that expects to advance weight reduction without the requirement for changes in diet or actual work. The cases contain fixings, for example, L-carnitine and L-arginine, which can support energy digestion. This implies that the body delivers more energy, which can assist you with feeling more dynamic and essential. Likewise, <a href="URL Extra Weight Loss UK</strong></a> can likewise assist with directing glucose levels, which can be especially helpful for individuals with diabetes.</p>
<p>Another medical advantage of <a href="URL Extra Weight Loss UK</strong></a> is that they can furnish the body with significant supplements. The cases contain various nutrients and minerals that can assist with keeping the body solid. For instance, they contain L-ascorbic acid, which is significant for a solid resistant framework, and calcium and magnesium, which are required areas of strength for teeth.</p>
<p><strong>Official facebook: ===>></strong></p>
<p><a href="URL/URL
<p><a href="URL/URL
<p><a href="URL/URL
<p><strong>Gamma===>></strong></p>
<p><a href="URL/URL
<p><a href="URL/URL
<p><strong>Group Google ===>></strong></p>
<p><a href="URL/URL
<p><a href="URL/URL
<p><strong>colab.research ===>></strong></p>
<p><a href="URL/URL </strong></p>
<p><strong>Site Google===>></strong></p>
<p><a href="URL/URL
<p><strong>Blogger===>></strong></p>
<p><a href="URL/URL
<p><strong>webflow ===>></strong></p>
<p><a href="URL/URL
<p><strong>dibiz==>></strong></p>
<p><a href="URL/URL
<p><strong>medium ===>></strong></p>
<p><a href="URL/URL
<p><a href="URL/URL
<p><a href="URL/URL
<p><a href="URL/URL
<p><a href="URL/URL
<p><strong>Hashnode ===>></strong></p>
<p><a href="URL/URL
<p><a href="URL/URL
<p><a href="URL/URL
<p><strong>Animale Male Enhancement CBD Gummies Jamaica</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong>B Extra Pills UK</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong>B Extra Slimming Pills UK</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong>Gentle Groove CBD Gummies</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong>Karlien Van Jaarsveld Keto Gummies</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong>Smart Hemp Gummies Canada</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong>Smart Hemp Gummies Australia</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong>Amarose Skin Tag Remover</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong><a href="URL/URL </strong></p> | [] | [
"TAGS\n#region-us \n"
] | [
6
] | [
"passage: TAGS\n#region-us \n"
] | [
0.024608636274933815,
-0.026205500587821007,
-0.009666500613093376,
-0.10395516455173492,
0.08638657629489899,
0.059816278517246246,
0.01882290467619896,
0.020661840215325356,
0.23975107073783875,
-0.005599027033895254,
0.1219947561621666,
0.0015615287702530622,
-0.037353623658418655,
0.03733762726187706,
-0.0035912662278860807,
-0.17583473026752472,
0.03876631706953049,
-0.018274923786520958,
0.01843859627842903,
0.026470553129911423,
-0.07776834815740585,
-0.07564429938793182,
0.015296397730708122,
-0.10247814655303955,
-0.083692267537117,
0.11002834886312485,
0.031466204673051834,
-0.019670886918902397,
0.10779199749231339,
-0.04243955761194229,
0.18699054419994354,
-0.011512263678014278,
-0.11213519424200058,
-0.2536850869655609,
0.021806683391332626,
-0.01765260472893715,
-0.08747660368680954,
0.01506110467016697,
0.0665089413523674,
-0.09014441072940826,
-0.0588928684592247,
0.0795099288225174,
-0.01132340170443058,
0.04246443510055542,
-0.27593839168548584,
-0.12684126198291779,
-0.05297930911183357,
-0.1421966552734375,
0.08651168644428253,
0.04035491496324539,
0.008764253929257393,
0.15506891906261444,
-0.20897391438484192,
0.004104613792151213,
0.08255259692668915,
-0.2538507878780365,
0.05591634660959244,
0.17671173810958862,
0.03623908758163452,
0.18037272989749908,
0.0060391901060938835,
0.11029672622680664,
0.0716743916273117,
-0.024263937026262283,
-0.17590197920799255,
-0.08127854019403458,
-0.04696211963891983,
0.16642488539218903,
-0.06727185100317001,
-0.14248386025428772,
0.34701237082481384,
0.00015008423360995948,
0.009657775051891804,
0.16921205818653107,
-0.059524230659008026,
-0.09972117841243744,
0.07259953022003174,
0.016484731808304787,
0.018492350354790688,
0.1471305936574936,
0.16307872533798218,
-0.0458691343665123,
-0.13837823271751404,
-0.018630273640155792,
-0.22798998653888702,
0.17510560154914856,
-0.03248048573732376,
0.13137903809547424,
-0.27447956800460815,
0.01684025302529335,
-0.2570667266845703,
0.0032130838371813297,
0.04178816080093384,
-0.06004921346902847,
-0.0226522795855999,
-0.013265985064208508,
-0.08018817007541656,
0.004899587947875261,
0.06192673370242119,
0.1266920566558838,
-0.06128726154565811,
0.06128238886594772,
-0.09319206327199936,
0.141696035861969,
0.07166698575019836,
0.07868369668722153,
0.13037432730197906,
0.041205424815416336,
-0.07187089323997498,
-0.21872246265411377,
-0.0026476888451725245,
-0.06275863200426102,
-0.09502086788415909,
-0.0020165652967989445,
-0.11606067419052124,
0.17244569957256317,
-0.030802514404058456,
-0.09825427830219269,
-0.11208184063434601,
0.09148659557104111,
-0.032992321997880936,
-0.03437839448451996,
-0.03552987426519394,
-0.020977836102247238,
0.019381176680326462,
0.04704452306032181,
-0.1548958420753479,
-0.005131472367793322,
0.07039852440357208,
0.11502562463283539,
-0.1346137970685959,
-0.003783059772104025,
-0.07908964157104492,
0.03039063885807991,
0.07654735445976257,
-0.16510222852230072,
0.03158547356724739,
-0.1124754324555397,
-0.07531405985355377,
0.002912673633545637,
-0.015710093080997467,
-0.016202643513679504,
0.166526660323143,
-0.0020451415330171585,
0.0714716836810112,
-0.026345307007431984,
-0.05890209600329399,
-0.11243434250354767,
-0.08489254862070084,
0.05390460044145584,
0.03670717030763626,
0.03266148269176483,
-0.2193479984998703,
0.014805203303694725,
-0.12762966752052307,
0.1360815018415451,
-0.10566820204257965,
-0.04705966264009476,
-0.022842247039079666,
0.20562705397605896,
0.037286072969436646,
0.08762791007757187,
-0.22171171009540558,
0.039756543934345245,
-0.05404696613550186,
0.18480908870697021,
-0.1502426266670227,
-0.0799463614821434,
0.20813211798667908,
-0.07964949309825897,
-0.10115210711956024,
0.021235812455415726,
0.020391687750816345,
0.026287272572517395,
0.0766737088561058,
0.4564172327518463,
-0.09766800701618195,
-0.09146861732006073,
0.10178250074386597,
0.17055274546146393,
-0.12427149713039398,
-0.1827561855316162,
0.06446871906518936,
-0.16666454076766968,
-0.1973118633031845,
0.0018917324487119913,
0.09222044050693512,
0.038269978016614914,
-0.07875611633062363,
-0.020746968686580658,
0.06325206160545349,
-0.0007678253459744155,
0.09095914661884308,
0.03755716234445572,
0.09034032374620438,
-0.08716782182455063,
0.11115926504135132,
-0.05017651244997978,
0.004037132486701012,
0.1343354731798172,
0.027325427159667015,
-0.03223329409956932,
0.08694463223218918,
-0.0485352948307991,
0.05295134335756302,
-0.1662379503250122,
-0.15068690478801727,
0.03398871049284935,
0.06283251196146011,
0.03186952322721481,
0.1280253529548645,
0.08141885697841644,
-0.10732853412628174,
0.022690722718834877,
-0.004228927195072174,
0.058398615568876266,
0.03891623765230179,
0.006107209715992212,
0.008764320984482765,
0.0961301177740097,
-0.10607069730758667,
-0.13589619100093842,
-0.07336436957120895,
-0.014715781435370445,
0.14371353387832642,
-0.0302802175283432,
0.07690227776765823,
-0.004240254405885935,
0.00013200697139836848,
0.06930823624134064,
0.08137880265712738,
0.016412746161222458,
0.08971183747053146,
-0.05237193778157234,
-0.05160155147314072,
0.10863113403320312,
-0.13533565402030945,
0.17837053537368774,
0.14053137600421906,
-0.20532016456127167,
0.029453208670020103,
-0.06838275492191315,
0.03670361638069153,
-0.008162540383636951,
0.0975119024515152,
-0.08272241055965424,
-0.02106042578816414,
0.013134466484189034,
0.0052274600602686405,
-0.013007243163883686,
0.017682146281003952,
-0.07295988500118256,
-0.07787393033504486,
-0.10233919322490692,
0.08436838537454605,
0.11562882363796234,
-0.10282530635595322,
0.14214380085468292,
0.4384984076023102,
0.11495281755924225,
0.21582984924316406,
-0.09581480920314789,
-0.0412987545132637,
0.007486371789127588,
0.0001535322517156601,
-0.04476691037416458,
0.08031861484050751,
-0.15973517298698425,
-0.038901735097169876,
0.027348900213837624,
0.07128690183162689,
0.11475157737731934,
-0.14959022402763367,
-0.09639324247837067,
-0.00793045200407505,
0.0022841424215584993,
-0.1249532699584961,
0.023905446752905846,
-0.03974650055170059,
0.04015624523162842,
0.07232289016246796,
-0.021535737439990044,
0.13939237594604492,
-0.04166141897439957,
-0.0639561116695404,
0.07585346698760986,
-0.2017085999250412,
-0.23179671168327332,
-0.12309670448303223,
-0.14680525660514832,
0.04366797208786011,
0.05154111236333847,
0.01726446859538555,
-0.17635835707187653,
-0.015074856579303741,
0.07706750929355621,
0.07820965349674225,
-0.20886357128620148,
-0.022814949974417686,
-0.004290030337870121,
0.0895976573228836,
-0.10227091610431671,
-0.0017130117630586028,
-0.04419664293527603,
-0.10150232166051865,
0.0017003051470965147,
0.07279510796070099,
-0.137485533952713,
0.13807645440101624,
0.21589438617229462,
0.07225540280342102,
0.07359948754310608,
-0.019093448296189308,
0.09936179965734482,
-0.10856141895055771,
-0.16549113392829895,
0.08348225057125092,
-0.06234746053814888,
0.047262318432331085,
0.17534415423870087,
0.03307317942380905,
-0.13904969394207,
-0.015682822093367577,
-0.0402069091796875,
-0.15603256225585938,
-0.238995760679245,
-0.09178274869918823,
-0.1182505264878273,
0.16442428529262543,
0.0009358620154671371,
0.06651917099952698,
0.08258313685655594,
-0.022042419761419296,
0.16447891294956207,
-0.07379321753978729,
-0.07578866183757782,
-0.006978808436542749,
0.12375060468912125,
-0.056660156697034836,
-0.03080669604241848,
-0.10566964000463486,
-0.008295975625514984,
0.1151021271944046,
0.15304014086723328,
0.12214863300323486,
0.2957419455051422,
0.08268889784812927,
0.026645636186003685,
0.08958091586828232,
0.17622539401054382,
0.09495089203119278,
0.07838419824838638,
-0.045413073152303696,
-0.014814783819019794,
0.014317171648144722,
-0.04022889584302902,
0.010141594335436821,
0.14683100581169128,
-0.2679629921913147,
-0.006678564939647913,
-0.2710230350494385,
0.0965198427438736,
-0.10913380235433578,
0.11837165057659149,
-0.01015760749578476,
0.10194015502929688,
0.11082887649536133,
0.03233652561903,
-0.03858073800802231,
0.16613617539405823,
0.08450309932231903,
-0.11277695000171661,
0.001758623169735074,
0.03737903758883476,
0.09715615212917328,
-0.02818971499800682,
0.12721189856529236,
-0.11048974841833115,
-0.1464834064245224,
0.013753619976341724,
0.07152791321277618,
-0.15373679995536804,
0.3138748109340668,
0.012069208547472954,
-0.13481520116329193,
-0.01481647603213787,
-0.09957809001207352,
-0.006440147757530212,
0.1254177987575531,
0.09333524852991104,
0.07935678958892822,
-0.2185502052307129,
-0.13339371979236603,
0.05872276425361633,
-0.00575496768578887,
0.22408108413219452,
-0.034034017473459244,
-0.11356475204229355,
-0.027013886719942093,
0.04241163283586502,
-0.06043251231312752,
0.08524788916110992,
0.023536119610071182,
-0.08113526552915573,
-0.032957352697849274,
0.05323701351881027,
0.012368366122245789,
0.00524376705288887,
0.09360801428556442,
0.020107939839363098,
-0.0009265501867048442,
0.01785753294825554,
0.047885000705718994,
-0.0675911232829094,
-0.1984109878540039,
0.09357594698667526,
-0.05215044692158699,
0.0015536568826064467,
-0.08013670891523361,
-0.15122665464878082,
-0.08837161958217621,
-0.16009655594825745,
0.12540200352668762,
-0.034406669437885284,
0.12700119614601135,
-0.06619787961244583,
0.17341409623622894,
-0.07871770113706589,
0.04481020197272301,
-0.047349292784929276,
0.050332702696323395,
-0.007268077693879604,
-0.07756082713603973,
0.16585899889469147,
-0.15564003586769104,
0.01809087023139,
0.19572502374649048,
-0.018915493041276932,
0.07177707552909851,
0.021322092041373253,
-0.0636206790804863,
0.23147478699684143,
0.3014698624610901,
0.008138049393892288,
0.1665448248386383,
0.3018903136253357,
-0.07466315478086472,
-0.2642788887023926,
-0.05505012720823288,
-0.2841376066207886,
-0.05371501296758652,
0.10716094076633453,
-0.22523896396160126,
0.06986407935619354,
0.14383509755134583,
-0.06471995264291763,
0.30228954553604126,
-0.21825523674488068,
0.012589273042976856,
0.15434536337852478,
-0.08868814259767532,
0.5515313148498535,
-0.1133413165807724,
-0.17677772045135498,
-0.008122089318931103,
-0.08741296827793121,
0.10602109134197235,
-0.0340677872300148,
0.06877441704273224,
0.013465235009789467,
0.04797380417585373,
0.048932258039712906,
-0.03111894056200981,
0.22701001167297363,
0.008710170164704323,
0.09015397727489471,
-0.07378865778446198,
-0.18624304234981537,
0.11639340221881866,
-0.04359482601284981,
-0.08891059458255768,
0.0849778801202774,
-0.05942516401410103,
-0.11078983545303345,
0.04663389176130295,
-0.07950539886951447,
-0.024862350896000862,
0.08423490077257156,
-0.04678233340382576,
-0.042606171220541,
-0.008054176345467567,
-0.1618063747882843,
-0.0002289071271661669,
0.31360217928886414,
-0.07096036523580551,
0.16695955395698547,
0.03677211329340935,
0.00038613268407061696,
-0.11027684062719345,
0.030288029462099075,
-0.05203165486454964,
-0.021576624363660812,
0.09578979015350342,
-0.11096979677677155,
0.03204701095819473,
0.14160704612731934,
-0.04864364117383957,
0.05846960097551346,
0.09256096184253693,
-0.0849417969584465,
0.007583672646433115,
0.17753590643405914,
-0.17537221312522888,
-0.1273445188999176,
-0.006135711446404457,
-0.09862716495990753,
0.14055661857128143,
0.04394126310944557,
0.05191568285226822,
0.16669964790344238,
0.03967129811644554,
-0.029474308714270592,
-0.02817419543862343,
-0.1153380498290062,
-0.0201893113553524,
0.040153320878744125,
0.00045633706031367183,
-0.08791285753250122,
0.2262638509273529,
0.06409153342247009,
-0.1328488290309906,
-0.051157206296920776,
0.2161225974559784,
-0.06805316358804703,
-0.04911920800805092,
-0.223562553524971,
0.10752306133508682,
-0.07112517952919006,
-0.0965060144662857,
0.05453834682703018,
-0.02270081453025341,
0.005106312222778797,
0.181985542178154,
0.03941008821129799,
0.11070270836353302,
0.03738937899470329,
-0.02448922023177147,
0.15798696875572205,
-0.142850860953331,
-0.14191335439682007,
-0.025354057550430298,
-0.08757315576076508,
-0.13844476640224457,
-0.026804137974977493,
0.1617041826248169,
-0.09177309274673462,
-0.14772607386112213,
-0.2621181011199951,
0.10968475043773651,
-0.16432365775108337,
-0.10192688554525375,
-0.03469514101743698,
-0.08968492597341537,
0.0696166530251503,
0.030301768332719803,
-0.03093348816037178,
-0.06706760823726654,
-0.18593791127204895,
0.0816768929362297,
0.06349513679742813,
0.045533183962106705,
-0.017847947776317596,
0.0067379772663116455,
0.1720137596130371,
0.025955144315958023,
0.10040043294429779,
0.16762186586856842,
0.011397695168852806,
0.2246655523777008,
-0.1671202927827835,
-0.11496317386627197,
0.1336962729692459,
-0.026543032377958298,
0.06762003898620605,
0.16792191565036774,
-0.0772583931684494,
0.015526676550507545,
-0.028136352077126503,
0.07066910713911057,
-0.11003983020782471,
-0.105624258518219,
0.007937257178127766,
0.02567129209637642,
-0.2755882740020752,
-0.005599735304713249,
-0.19717298448085785,
0.14788752794265747,
0.02579621411859989,
0.03297143429517746,
0.10257530212402344,
0.10404334217309952,
0.08312062919139862,
-0.0017710148822516203,
0.03226327523589134,
-0.1176818460226059,
0.02753005363047123,
-0.059239376336336136,
-0.020663779228925705,
0.017624232918024063,
0.36952024698257446,
-0.03603357449173927,
-0.046802736818790436,
0.003710439894348383,
0.1307835876941681,
-0.02139742486178875,
0.017395347356796265,
0.13209912180900574,
0.12607666850090027,
-0.08595693111419678,
-0.1504845917224884,
0.04888554662466049,
-0.04565655067563057,
-0.02836887165904045,
0.1464131623506546,
0.05905961990356445,
0.1050296202301979,
0.0908031314611435,
-0.014463032595813274,
-0.00318976235575974,
0.012856799177825451,
-0.15486004948616028,
0.06223496049642563,
-0.010558074340224266,
0.012565906159579754,
0.017934376373887062,
0.15238402783870697,
-0.005540105979889631,
0.07739730179309845,
-0.09889880567789078,
0.004208535887300968,
-0.13498884439468384,
-0.07913459837436676,
0.03617347031831741,
-0.13393273949623108,
0.04141177982091904,
-0.01871878281235695,
0.029611799865961075,
0.30386561155319214,
0.02558239921927452,
-0.020639164373278618,
0.12512871623039246,
-0.1214587539434433,
-0.12050267308950424,
-0.001594188273884356,
-0.029960084706544876,
0.0791488066315651,
-0.02633434161543846,
-0.0997740775346756,
-0.1001306027173996,
-0.15166029334068298,
-0.09759195148944855,
0.05182836204767227,
-0.04993441700935364,
-0.059362251311540604,
-0.17634081840515137,
-0.05707859992980957,
-0.05147340148687363,
0.14025864005088806,
-0.12263951450586319,
0.15159130096435547,
-0.014490418136119843,
0.004084470681846142,
0.04405883327126503,
0.1950942426919937,
-0.03644494712352753,
0.08714226633310318,
0.0154351145029068,
0.1522706001996994,
-0.05119588226079941,
0.14720745384693146,
-0.10931728035211563,
-0.04014137014746666,
-0.06710435450077057,
0.21513493359088898,
0.25630924105644226,
-0.06136954948306084,
-0.008937356993556023,
-0.012760217301547527,
0.058654606342315674,
0.1073930487036705,
0.16049085557460785,
0.002326392102986574,
0.2802925705909729,
-0.03133585304021835,
0.04815128445625305,
0.02901598811149597,
0.013607407920062542,
-0.06336209923028946,
0.03397751972079277,
0.07539387792348862,
-0.035039983689785004,
-0.1412304788827896,
0.15837742388248444,
-0.21980468928813934,
0.18157227337360382,
0.11640069633722305,
-0.19996967911720276,
-0.013728445395827293,
-0.04882071167230606,
0.1689416468143463,
-0.0856364443898201,
0.1637246012687683,
-0.0903693437576294,
-0.2108195722103119,
-0.2056000679731369,
0.03867346793413162,
-0.34623071551322937,
-0.254462867975235,
0.10422009229660034,
0.1488201916217804,
0.04015883058309555,
-0.018507536500692368,
-0.019967829808592796,
-0.018367022275924683,
0.04877542704343796,
-0.0067357709631323814,
0.06014643982052803,
0.031397558748722076,
-0.02988368645310402,
-0.24127542972564697,
-0.029804671183228493,
0.023964406922459602,
-0.07093082368373871,
0.07464958727359772,
-0.06874357163906097,
-0.022495782002806664,
0.08059766888618469,
-0.03066304884850979,
0.03298592567443848,
-0.035373736172914505,
-0.16326889395713806,
0.027529051527380943,
0.03900543600320816,
0.036012712866067886,
0.00634160777553916,
0.0008072225609794259,
-0.03455270454287529,
0.0644603744149208,
-0.16716794669628143,
-0.16015739738941193,
0.14140215516090393,
-0.06745140254497528,
0.2779497504234314,
-0.05812826007604599,
-0.0809100940823555,
0.04766704887151718,
-0.03426874056458473,
0.1807648241519928,
-0.07756473124027252,
0.047254521399736404,
0.12766779959201813,
0.011127962730824947,
0.03121316432952881,
-0.3092964291572571,
0.11082969605922699,
-0.000795336440205574,
-0.006093299947679043,
-0.07581598311662674
] |
null | null | null | <h2><strong>➲</strong><strong>Buy Now Official website @>> </strong><a href="https://www.facebook.com/BExtraWeightLossUK/"><strong>https://www.facebook.com/BExtraWeightLossUK/</strong></a></h2>
<h2><span style="background-color: #ff9900;"><strong>➲</strong><strong> Product Name — </strong><a style="background-color: #ff9900;" href="https://www.facebook.com/BExtraWeightLossUK/"><strong>B Extra Weight Loss UK</strong></a></span></h2>
<p><span style="background-color: #ffffff;">The containers can assist with supporting digestion, manage glucose levels and diminish hunger. When taken consistently, <a style="background-color: #ffffff;" href="https://www.facebook.com/BExtraWeightLossUK/"><strong>B Extra Weight Loss UK</strong></a> can assist with consuming fat quicker and lessen body weight.</span></p>
<p>The B+ tablets are a characteristic dietary enhancement explicitly intended for individuals who battle with heftiness and are searching for a clear and successful method for getting in shape.</p>
<p>In any case, it is essential to take note that <span><a href="https://www.facebook.com/BExtraWeightLossUK/"><strong>B Extra Weight Loss UK</strong></a></span><span> is not a supernatural occurrence fix. To effectively get in shape, coordinating a solid eating regimen and adequate activity into your everyday routine is significant. The cases can assist with accelerating the cycle and augment results.</span></p>
<p>B Additional tablets are a creative answer for people battling with heftiness. They address an exceptionally formed recipe that expects to advance weight reduction without the requirement for changes in diet or actual work. The cases contain fixings, for example, L-carnitine and L-arginine, which can support energy digestion. This implies that the body delivers more energy, which can assist you with feeling more dynamic and essential. Likewise, <a href="https://www.facebook.com/BExtraWeightLossUK/"><strong>B Extra Weight Loss UK</strong></a> can likewise assist with directing glucose levels, which can be especially helpful for individuals with diabetes.</p>
<p>Another medical advantage of <a href="https://www.facebook.com/BExtraWeightLossUK/"><strong>B Extra Weight Loss UK</strong></a> is that they can furnish the body with significant supplements. The cases contain various nutrients and minerals that can assist with keeping the body solid. For instance, they contain L-ascorbic acid, which is significant for a solid resistant framework, and calcium and magnesium, which are required areas of strength for teeth.</p>
<p><strong>Official facebook: ===>></strong></p>
<p><a href="https://www.facebook.com/profile.php?id=100090207926041"><strong>https://www.facebook.com/profile.php?id=100090207926041</strong></a></p>
<p><a href="https://www.facebook.com/BExtraWeightLoss/"><strong>https://www.facebook.com/BExtraWeightLoss/</strong></a></p>
<p><a href="https://www.facebook.com/BExtraDietInUK/"><strong>https://www.facebook.com/BExtraDietInUK/</strong></a></p>
<p><strong>Gamma===>></strong></p>
<p><a href="https://gamma.app/public/-fwo26etqsnpurol"><strong>https://gamma.app/public/-fwo26etqsnpurol</strong></a></p>
<p><a href="https://gamma.app/public/B-Extra-Weight-Loss-UK-yxl8t9vf4mojne5"><strong>https://gamma.app/public/B-Extra-Weight-Loss-UK-yxl8t9vf4mojne5</strong></a></p>
<p><strong>Group Google ===>></strong></p>
<p><a href="https://groups.google.com/g/jamevaz/c/bDw_pdpb6HU"><strong>https://groups.google.com/g/jamevaz/c/bDw_pdpb6HU</strong></a></p>
<p><a href="https://groups.google.com/g/jamevaz/c/AZWIk7ez95A"><strong>https://groups.google.com/g/jamevaz/c/AZWIk7ez95A</strong></a></p>
<p><strong>colab.research ===>></strong></p>
<p><a href="https://colab.research.google.com/drive/1G0g1BcLeTJiy5yCgL_itxHMh2Dx465LF?usp=sharing"><strong>https://colab.research.google.com/drive/1G0g1BcLeTJiy5yCgL_itxHMh2Dx465LF?usp=sharing</strong></a><strong> </strong></p>
<p><strong>Site Google===>></strong></p>
<p><a href="https://sites.google.com/view/b-extra-weight-loss-uk/home"><strong>https://sites.google.com/view/b-extra-weight-loss-uk/home</strong></a></p>
<p><strong>Blogger===>></strong></p>
<p><a href="https://mynewsupdatezone.blogspot.com/2023/11/b-extra-weight-loss-uk-reviews-beware.htm"><strong>https://mynewsupdatezone.blogspot.com/2023/11/b-extra-weight-loss-uk-reviews-beware.htm</strong></a></p>
<p><strong>webflow ===>></strong></p>
<p><a href="https://b-extra-weight-loss-uk.webflow.io/"><strong>https://b-extra-weight-loss-uk.webflow.io/</strong></a></p>
<p><strong>dibiz==>></strong></p>
<p><a href="https://www.dibiz.com/albelutz"><strong>https://www.dibiz.com/albelutz</strong></a></p>
<p><strong>medium ===>></strong></p>
<p><a href="https://medium.com/@albelutz/lose-weight-look-great-and-feel-healthy-00262917a072"><strong>https://medium.com/@albelutz/lose-weight-look-great-and-feel-healthy-00262917a072</strong></a></p>
<p><a href="https://medium.com/@albelutz/lose-weight-look-great-and-feel-healthy-be29aaad1790"><strong>https://medium.com/@albelutz/lose-weight-look-great-and-feel-healthy-be29aaad1790</strong></a></p>
<p><a href="https://medium.com/@albelutz/b-extra-weight-loss-uk-2023-dont-buy-before-visiting-on-website-scam-exposed-8842af4d4909"><strong>https://medium.com/@albelutz/b-extra-weight-loss-uk-2023-dont-buy-before-visiting-on-website-scam-exposed-8842af4d4909</strong></a></p>
<p><a href="https://medium.com/@albelutz/lose-weight-look-great-and-feel-healthy-91b77604881c"><strong>https://medium.com/@albelutz/lose-weight-look-great-and-feel-healthy-91b77604881c</strong></a></p>
<p><a href="https://medium.com/@albelutz/buy-now-official-website-https-www-facebook-com-bextraweightlossuk-9703629c7882"><strong>https://medium.com/@albelutz/buy-now-official-website-https-www-facebook-com-bextraweightlossuk-9703629c7882</strong></a></p>
<p><strong>Hashnode ===>></strong></p>
<p><a href="https://bextraweightlossuk.hashnode.dev/b-extra-weight-loss-uk-shocking-scam-warning-2023-update"><strong>https://bextraweightlossuk.hashnode.dev/b-extra-weight-loss-uk-shocking-scam-warning-2023-update</strong></a></p>
<p><a href="https://bextraweightlossuk.hashnode.dev/b-extra-weight-loss-uk-scam-alert-review-a-weight-loss-pills-or-waste-of-money"><strong>https://bextraweightlossuk.hashnode.dev/b-extra-weight-loss-uk-scam-alert-review-a-weight-loss-pills-or-waste-of-money</strong></a></p>
<p><a href="https://bextraweightlossuk.hashnode.dev/b-extra-weight-loss-uk-reviews-2023-scam-alert-must-read-before-buying"><strong>https://bextraweightlossuk.hashnode.dev/b-extra-weight-loss-uk-reviews-2023-scam-alert-must-read-before-buying</strong></a></p>
<p><strong>Animale Male Enhancement CBD Gummies Jamaica</strong></p>
<p><strong><a href="https://www.facebook.com/AnimaleMaleEnhancementCBDGummiesJamaica/">https://www.facebook.com/AnimaleMaleEnhancementCBDGummiesJamaica/</a> </strong></p>
<p><strong>B Extra Pills UK</strong></p>
<p><strong><a href="https://www.facebook.com/BExtraPillsUK/">https://www.facebook.com/BExtraPillsUK/</a> </strong></p>
<p><strong><a href="https://www.facebook.com/BExtraPills/">https://www.facebook.com/BExtraPills/</a> </strong></p>
<p><strong>B Extra Slimming Pills UK</strong></p>
<p><strong><a href="https://www.facebook.com/BExtraSlimmingPillsUK/">https://www.facebook.com/BExtraSlimmingPillsUK/</a> </strong></p>
<p><strong>Gentle Groove CBD Gummies</strong></p>
<p><strong><a href="https://www.facebook.com/GentleGrooveCBDGummiesUnitedStates/">https://www.facebook.com/GentleGrooveCBDGummiesUnitedStates/</a> </strong></p>
<p><strong>Karlien Van Jaarsveld Keto Gummies</strong></p>
<p><strong><a href="https://www.facebook.com/KarlienVanJaarsveldKetoGummiesInZA/">https://www.facebook.com/KarlienVanJaarsveldKetoGummiesInZA/</a> </strong></p>
<p><strong>Smart Hemp Gummies Canada</strong></p>
<p><strong><a href="https://www.facebook.com/SmartHempGummiesInCanada/">https://www.facebook.com/SmartHempGummiesInCanada/</a> </strong></p>
<p><strong>Smart Hemp Gummies Australia</strong></p>
<p><strong><a href="https://www.facebook.com/SmartHempGummiesInAustralia/">https://www.facebook.com/SmartHempGummiesInAustralia/</a> </strong></p>
<p><strong>Amarose Skin Tag Remover</strong></p>
<p><strong><a href="https://www.outlookindia.com/outlook-spotlight/-official-website-amarose-skin-tag-remover-reviews-exposed-scam-2023-shark-tank-skin-tag-remover-read-bliss-skin-tag-remover-nobody-tells-you-this-amarose-skin-tags-remover-is-safe-or-effective--news-255555">https://www.outlookindia.com/outlook-spotlight/-official-website-amarose-skin-tag-remover-reviews-exposed-scam-2023-shark-tank-skin-tag-remover-read-bliss-skin-tag-remover-nobody-tells-you-this-amarose-skin-tags-remover-is-safe-or-effective--news-255555</a> </strong></p>
<p><strong><a href="https://www.facebook.com/people/Amarose-Skin-Tag-Remover-Reviews-Bliss-Skin-Tag-Remover/100089999527140/">https://www.facebook.com/people/Amarose-Skin-Tag-Remover-Reviews-Bliss-Skin-Tag-Remover/100089999527140/</a> </strong></p> | {} | null | Jamessimer/BExtraWeightLosspodernow | [
"region:us"
] | 2023-11-11T06:17:12+00:00 | [] | [] | TAGS
#region-us
| <h2><strong></strong><strong>Buy Now Official website @>> </strong><a href="URL/URL
<h2><span style="background-color: #ff9900;"><strong></strong><strong> Product Name — </strong><a style="background-color: #ff9900;" href="URL Extra Weight Loss UK</strong></a></span></h2>
<p><span style="background-color: #ffffff;">The containers can assist with supporting digestion, manage glucose levels and diminish hunger. When taken consistently, <a style="background-color: #ffffff;" href="URL Extra Weight Loss UK</strong></a> can assist with consuming fat quicker and lessen body weight.</span></p>
<p>The B+ tablets are a characteristic dietary enhancement explicitly intended for individuals who battle with heftiness and are searching for a clear and successful method for getting in shape.</p>
<p>In any case, it is essential to take note that <span><a href="URL Extra Weight Loss UK</strong></a></span><span> is not a supernatural occurrence fix. To effectively get in shape, coordinating a solid eating regimen and adequate activity into your everyday routine is significant. The cases can assist with accelerating the cycle and augment results.</span></p>
<p>B Additional tablets are a creative answer for people battling with heftiness. They address an exceptionally formed recipe that expects to advance weight reduction without the requirement for changes in diet or actual work. The cases contain fixings, for example, L-carnitine and L-arginine, which can support energy digestion. This implies that the body delivers more energy, which can assist you with feeling more dynamic and essential. Likewise, <a href="URL Extra Weight Loss UK</strong></a> can likewise assist with directing glucose levels, which can be especially helpful for individuals with diabetes.</p>
<p>Another medical advantage of <a href="URL Extra Weight Loss UK</strong></a> is that they can furnish the body with significant supplements. The cases contain various nutrients and minerals that can assist with keeping the body solid. For instance, they contain L-ascorbic acid, which is significant for a solid resistant framework, and calcium and magnesium, which are required areas of strength for teeth.</p>
<p><strong>Official facebook: ===>></strong></p>
<p><a href="URL/URL
<p><a href="URL/URL
<p><a href="URL/URL
<p><strong>Gamma===>></strong></p>
<p><a href="URL/URL
<p><a href="URL/URL
<p><strong>Group Google ===>></strong></p>
<p><a href="URL/URL
<p><a href="URL/URL
<p><strong>colab.research ===>></strong></p>
<p><a href="URL/URL </strong></p>
<p><strong>Site Google===>></strong></p>
<p><a href="URL/URL
<p><strong>Blogger===>></strong></p>
<p><a href="URL/URL
<p><strong>webflow ===>></strong></p>
<p><a href="URL/URL
<p><strong>dibiz==>></strong></p>
<p><a href="URL/URL
<p><strong>medium ===>></strong></p>
<p><a href="URL/URL
<p><a href="URL/URL
<p><a href="URL/URL
<p><a href="URL/URL
<p><a href="URL/URL
<p><strong>Hashnode ===>></strong></p>
<p><a href="URL/URL
<p><a href="URL/URL
<p><a href="URL/URL
<p><strong>Animale Male Enhancement CBD Gummies Jamaica</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong>B Extra Pills UK</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong>B Extra Slimming Pills UK</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong>Gentle Groove CBD Gummies</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong>Karlien Van Jaarsveld Keto Gummies</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong>Smart Hemp Gummies Canada</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong>Smart Hemp Gummies Australia</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong>Amarose Skin Tag Remover</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong><a href="URL/URL </strong></p> | [] | [
"TAGS\n#region-us \n"
] | [
6
] | [
"passage: TAGS\n#region-us \n"
] | [
0.024608636274933815,
-0.026205500587821007,
-0.009666500613093376,
-0.10395516455173492,
0.08638657629489899,
0.059816278517246246,
0.01882290467619896,
0.020661840215325356,
0.23975107073783875,
-0.005599027033895254,
0.1219947561621666,
0.0015615287702530622,
-0.037353623658418655,
0.03733762726187706,
-0.0035912662278860807,
-0.17583473026752472,
0.03876631706953049,
-0.018274923786520958,
0.01843859627842903,
0.026470553129911423,
-0.07776834815740585,
-0.07564429938793182,
0.015296397730708122,
-0.10247814655303955,
-0.083692267537117,
0.11002834886312485,
0.031466204673051834,
-0.019670886918902397,
0.10779199749231339,
-0.04243955761194229,
0.18699054419994354,
-0.011512263678014278,
-0.11213519424200058,
-0.2536850869655609,
0.021806683391332626,
-0.01765260472893715,
-0.08747660368680954,
0.01506110467016697,
0.0665089413523674,
-0.09014441072940826,
-0.0588928684592247,
0.0795099288225174,
-0.01132340170443058,
0.04246443510055542,
-0.27593839168548584,
-0.12684126198291779,
-0.05297930911183357,
-0.1421966552734375,
0.08651168644428253,
0.04035491496324539,
0.008764253929257393,
0.15506891906261444,
-0.20897391438484192,
0.004104613792151213,
0.08255259692668915,
-0.2538507878780365,
0.05591634660959244,
0.17671173810958862,
0.03623908758163452,
0.18037272989749908,
0.0060391901060938835,
0.11029672622680664,
0.0716743916273117,
-0.024263937026262283,
-0.17590197920799255,
-0.08127854019403458,
-0.04696211963891983,
0.16642488539218903,
-0.06727185100317001,
-0.14248386025428772,
0.34701237082481384,
0.00015008423360995948,
0.009657775051891804,
0.16921205818653107,
-0.059524230659008026,
-0.09972117841243744,
0.07259953022003174,
0.016484731808304787,
0.018492350354790688,
0.1471305936574936,
0.16307872533798218,
-0.0458691343665123,
-0.13837823271751404,
-0.018630273640155792,
-0.22798998653888702,
0.17510560154914856,
-0.03248048573732376,
0.13137903809547424,
-0.27447956800460815,
0.01684025302529335,
-0.2570667266845703,
0.0032130838371813297,
0.04178816080093384,
-0.06004921346902847,
-0.0226522795855999,
-0.013265985064208508,
-0.08018817007541656,
0.004899587947875261,
0.06192673370242119,
0.1266920566558838,
-0.06128726154565811,
0.06128238886594772,
-0.09319206327199936,
0.141696035861969,
0.07166698575019836,
0.07868369668722153,
0.13037432730197906,
0.041205424815416336,
-0.07187089323997498,
-0.21872246265411377,
-0.0026476888451725245,
-0.06275863200426102,
-0.09502086788415909,
-0.0020165652967989445,
-0.11606067419052124,
0.17244569957256317,
-0.030802514404058456,
-0.09825427830219269,
-0.11208184063434601,
0.09148659557104111,
-0.032992321997880936,
-0.03437839448451996,
-0.03552987426519394,
-0.020977836102247238,
0.019381176680326462,
0.04704452306032181,
-0.1548958420753479,
-0.005131472367793322,
0.07039852440357208,
0.11502562463283539,
-0.1346137970685959,
-0.003783059772104025,
-0.07908964157104492,
0.03039063885807991,
0.07654735445976257,
-0.16510222852230072,
0.03158547356724739,
-0.1124754324555397,
-0.07531405985355377,
0.002912673633545637,
-0.015710093080997467,
-0.016202643513679504,
0.166526660323143,
-0.0020451415330171585,
0.0714716836810112,
-0.026345307007431984,
-0.05890209600329399,
-0.11243434250354767,
-0.08489254862070084,
0.05390460044145584,
0.03670717030763626,
0.03266148269176483,
-0.2193479984998703,
0.014805203303694725,
-0.12762966752052307,
0.1360815018415451,
-0.10566820204257965,
-0.04705966264009476,
-0.022842247039079666,
0.20562705397605896,
0.037286072969436646,
0.08762791007757187,
-0.22171171009540558,
0.039756543934345245,
-0.05404696613550186,
0.18480908870697021,
-0.1502426266670227,
-0.0799463614821434,
0.20813211798667908,
-0.07964949309825897,
-0.10115210711956024,
0.021235812455415726,
0.020391687750816345,
0.026287272572517395,
0.0766737088561058,
0.4564172327518463,
-0.09766800701618195,
-0.09146861732006073,
0.10178250074386597,
0.17055274546146393,
-0.12427149713039398,
-0.1827561855316162,
0.06446871906518936,
-0.16666454076766968,
-0.1973118633031845,
0.0018917324487119913,
0.09222044050693512,
0.038269978016614914,
-0.07875611633062363,
-0.020746968686580658,
0.06325206160545349,
-0.0007678253459744155,
0.09095914661884308,
0.03755716234445572,
0.09034032374620438,
-0.08716782182455063,
0.11115926504135132,
-0.05017651244997978,
0.004037132486701012,
0.1343354731798172,
0.027325427159667015,
-0.03223329409956932,
0.08694463223218918,
-0.0485352948307991,
0.05295134335756302,
-0.1662379503250122,
-0.15068690478801727,
0.03398871049284935,
0.06283251196146011,
0.03186952322721481,
0.1280253529548645,
0.08141885697841644,
-0.10732853412628174,
0.022690722718834877,
-0.004228927195072174,
0.058398615568876266,
0.03891623765230179,
0.006107209715992212,
0.008764320984482765,
0.0961301177740097,
-0.10607069730758667,
-0.13589619100093842,
-0.07336436957120895,
-0.014715781435370445,
0.14371353387832642,
-0.0302802175283432,
0.07690227776765823,
-0.004240254405885935,
0.00013200697139836848,
0.06930823624134064,
0.08137880265712738,
0.016412746161222458,
0.08971183747053146,
-0.05237193778157234,
-0.05160155147314072,
0.10863113403320312,
-0.13533565402030945,
0.17837053537368774,
0.14053137600421906,
-0.20532016456127167,
0.029453208670020103,
-0.06838275492191315,
0.03670361638069153,
-0.008162540383636951,
0.0975119024515152,
-0.08272241055965424,
-0.02106042578816414,
0.013134466484189034,
0.0052274600602686405,
-0.013007243163883686,
0.017682146281003952,
-0.07295988500118256,
-0.07787393033504486,
-0.10233919322490692,
0.08436838537454605,
0.11562882363796234,
-0.10282530635595322,
0.14214380085468292,
0.4384984076023102,
0.11495281755924225,
0.21582984924316406,
-0.09581480920314789,
-0.0412987545132637,
0.007486371789127588,
0.0001535322517156601,
-0.04476691037416458,
0.08031861484050751,
-0.15973517298698425,
-0.038901735097169876,
0.027348900213837624,
0.07128690183162689,
0.11475157737731934,
-0.14959022402763367,
-0.09639324247837067,
-0.00793045200407505,
0.0022841424215584993,
-0.1249532699584961,
0.023905446752905846,
-0.03974650055170059,
0.04015624523162842,
0.07232289016246796,
-0.021535737439990044,
0.13939237594604492,
-0.04166141897439957,
-0.0639561116695404,
0.07585346698760986,
-0.2017085999250412,
-0.23179671168327332,
-0.12309670448303223,
-0.14680525660514832,
0.04366797208786011,
0.05154111236333847,
0.01726446859538555,
-0.17635835707187653,
-0.015074856579303741,
0.07706750929355621,
0.07820965349674225,
-0.20886357128620148,
-0.022814949974417686,
-0.004290030337870121,
0.0895976573228836,
-0.10227091610431671,
-0.0017130117630586028,
-0.04419664293527603,
-0.10150232166051865,
0.0017003051470965147,
0.07279510796070099,
-0.137485533952713,
0.13807645440101624,
0.21589438617229462,
0.07225540280342102,
0.07359948754310608,
-0.019093448296189308,
0.09936179965734482,
-0.10856141895055771,
-0.16549113392829895,
0.08348225057125092,
-0.06234746053814888,
0.047262318432331085,
0.17534415423870087,
0.03307317942380905,
-0.13904969394207,
-0.015682822093367577,
-0.0402069091796875,
-0.15603256225585938,
-0.238995760679245,
-0.09178274869918823,
-0.1182505264878273,
0.16442428529262543,
0.0009358620154671371,
0.06651917099952698,
0.08258313685655594,
-0.022042419761419296,
0.16447891294956207,
-0.07379321753978729,
-0.07578866183757782,
-0.006978808436542749,
0.12375060468912125,
-0.056660156697034836,
-0.03080669604241848,
-0.10566964000463486,
-0.008295975625514984,
0.1151021271944046,
0.15304014086723328,
0.12214863300323486,
0.2957419455051422,
0.08268889784812927,
0.026645636186003685,
0.08958091586828232,
0.17622539401054382,
0.09495089203119278,
0.07838419824838638,
-0.045413073152303696,
-0.014814783819019794,
0.014317171648144722,
-0.04022889584302902,
0.010141594335436821,
0.14683100581169128,
-0.2679629921913147,
-0.006678564939647913,
-0.2710230350494385,
0.0965198427438736,
-0.10913380235433578,
0.11837165057659149,
-0.01015760749578476,
0.10194015502929688,
0.11082887649536133,
0.03233652561903,
-0.03858073800802231,
0.16613617539405823,
0.08450309932231903,
-0.11277695000171661,
0.001758623169735074,
0.03737903758883476,
0.09715615212917328,
-0.02818971499800682,
0.12721189856529236,
-0.11048974841833115,
-0.1464834064245224,
0.013753619976341724,
0.07152791321277618,
-0.15373679995536804,
0.3138748109340668,
0.012069208547472954,
-0.13481520116329193,
-0.01481647603213787,
-0.09957809001207352,
-0.006440147757530212,
0.1254177987575531,
0.09333524852991104,
0.07935678958892822,
-0.2185502052307129,
-0.13339371979236603,
0.05872276425361633,
-0.00575496768578887,
0.22408108413219452,
-0.034034017473459244,
-0.11356475204229355,
-0.027013886719942093,
0.04241163283586502,
-0.06043251231312752,
0.08524788916110992,
0.023536119610071182,
-0.08113526552915573,
-0.032957352697849274,
0.05323701351881027,
0.012368366122245789,
0.00524376705288887,
0.09360801428556442,
0.020107939839363098,
-0.0009265501867048442,
0.01785753294825554,
0.047885000705718994,
-0.0675911232829094,
-0.1984109878540039,
0.09357594698667526,
-0.05215044692158699,
0.0015536568826064467,
-0.08013670891523361,
-0.15122665464878082,
-0.08837161958217621,
-0.16009655594825745,
0.12540200352668762,
-0.034406669437885284,
0.12700119614601135,
-0.06619787961244583,
0.17341409623622894,
-0.07871770113706589,
0.04481020197272301,
-0.047349292784929276,
0.050332702696323395,
-0.007268077693879604,
-0.07756082713603973,
0.16585899889469147,
-0.15564003586769104,
0.01809087023139,
0.19572502374649048,
-0.018915493041276932,
0.07177707552909851,
0.021322092041373253,
-0.0636206790804863,
0.23147478699684143,
0.3014698624610901,
0.008138049393892288,
0.1665448248386383,
0.3018903136253357,
-0.07466315478086472,
-0.2642788887023926,
-0.05505012720823288,
-0.2841376066207886,
-0.05371501296758652,
0.10716094076633453,
-0.22523896396160126,
0.06986407935619354,
0.14383509755134583,
-0.06471995264291763,
0.30228954553604126,
-0.21825523674488068,
0.012589273042976856,
0.15434536337852478,
-0.08868814259767532,
0.5515313148498535,
-0.1133413165807724,
-0.17677772045135498,
-0.008122089318931103,
-0.08741296827793121,
0.10602109134197235,
-0.0340677872300148,
0.06877441704273224,
0.013465235009789467,
0.04797380417585373,
0.048932258039712906,
-0.03111894056200981,
0.22701001167297363,
0.008710170164704323,
0.09015397727489471,
-0.07378865778446198,
-0.18624304234981537,
0.11639340221881866,
-0.04359482601284981,
-0.08891059458255768,
0.0849778801202774,
-0.05942516401410103,
-0.11078983545303345,
0.04663389176130295,
-0.07950539886951447,
-0.024862350896000862,
0.08423490077257156,
-0.04678233340382576,
-0.042606171220541,
-0.008054176345467567,
-0.1618063747882843,
-0.0002289071271661669,
0.31360217928886414,
-0.07096036523580551,
0.16695955395698547,
0.03677211329340935,
0.00038613268407061696,
-0.11027684062719345,
0.030288029462099075,
-0.05203165486454964,
-0.021576624363660812,
0.09578979015350342,
-0.11096979677677155,
0.03204701095819473,
0.14160704612731934,
-0.04864364117383957,
0.05846960097551346,
0.09256096184253693,
-0.0849417969584465,
0.007583672646433115,
0.17753590643405914,
-0.17537221312522888,
-0.1273445188999176,
-0.006135711446404457,
-0.09862716495990753,
0.14055661857128143,
0.04394126310944557,
0.05191568285226822,
0.16669964790344238,
0.03967129811644554,
-0.029474308714270592,
-0.02817419543862343,
-0.1153380498290062,
-0.0201893113553524,
0.040153320878744125,
0.00045633706031367183,
-0.08791285753250122,
0.2262638509273529,
0.06409153342247009,
-0.1328488290309906,
-0.051157206296920776,
0.2161225974559784,
-0.06805316358804703,
-0.04911920800805092,
-0.223562553524971,
0.10752306133508682,
-0.07112517952919006,
-0.0965060144662857,
0.05453834682703018,
-0.02270081453025341,
0.005106312222778797,
0.181985542178154,
0.03941008821129799,
0.11070270836353302,
0.03738937899470329,
-0.02448922023177147,
0.15798696875572205,
-0.142850860953331,
-0.14191335439682007,
-0.025354057550430298,
-0.08757315576076508,
-0.13844476640224457,
-0.026804137974977493,
0.1617041826248169,
-0.09177309274673462,
-0.14772607386112213,
-0.2621181011199951,
0.10968475043773651,
-0.16432365775108337,
-0.10192688554525375,
-0.03469514101743698,
-0.08968492597341537,
0.0696166530251503,
0.030301768332719803,
-0.03093348816037178,
-0.06706760823726654,
-0.18593791127204895,
0.0816768929362297,
0.06349513679742813,
0.045533183962106705,
-0.017847947776317596,
0.0067379772663116455,
0.1720137596130371,
0.025955144315958023,
0.10040043294429779,
0.16762186586856842,
0.011397695168852806,
0.2246655523777008,
-0.1671202927827835,
-0.11496317386627197,
0.1336962729692459,
-0.026543032377958298,
0.06762003898620605,
0.16792191565036774,
-0.0772583931684494,
0.015526676550507545,
-0.028136352077126503,
0.07066910713911057,
-0.11003983020782471,
-0.105624258518219,
0.007937257178127766,
0.02567129209637642,
-0.2755882740020752,
-0.005599735304713249,
-0.19717298448085785,
0.14788752794265747,
0.02579621411859989,
0.03297143429517746,
0.10257530212402344,
0.10404334217309952,
0.08312062919139862,
-0.0017710148822516203,
0.03226327523589134,
-0.1176818460226059,
0.02753005363047123,
-0.059239376336336136,
-0.020663779228925705,
0.017624232918024063,
0.36952024698257446,
-0.03603357449173927,
-0.046802736818790436,
0.003710439894348383,
0.1307835876941681,
-0.02139742486178875,
0.017395347356796265,
0.13209912180900574,
0.12607666850090027,
-0.08595693111419678,
-0.1504845917224884,
0.04888554662466049,
-0.04565655067563057,
-0.02836887165904045,
0.1464131623506546,
0.05905961990356445,
0.1050296202301979,
0.0908031314611435,
-0.014463032595813274,
-0.00318976235575974,
0.012856799177825451,
-0.15486004948616028,
0.06223496049642563,
-0.010558074340224266,
0.012565906159579754,
0.017934376373887062,
0.15238402783870697,
-0.005540105979889631,
0.07739730179309845,
-0.09889880567789078,
0.004208535887300968,
-0.13498884439468384,
-0.07913459837436676,
0.03617347031831741,
-0.13393273949623108,
0.04141177982091904,
-0.01871878281235695,
0.029611799865961075,
0.30386561155319214,
0.02558239921927452,
-0.020639164373278618,
0.12512871623039246,
-0.1214587539434433,
-0.12050267308950424,
-0.001594188273884356,
-0.029960084706544876,
0.0791488066315651,
-0.02633434161543846,
-0.0997740775346756,
-0.1001306027173996,
-0.15166029334068298,
-0.09759195148944855,
0.05182836204767227,
-0.04993441700935364,
-0.059362251311540604,
-0.17634081840515137,
-0.05707859992980957,
-0.05147340148687363,
0.14025864005088806,
-0.12263951450586319,
0.15159130096435547,
-0.014490418136119843,
0.004084470681846142,
0.04405883327126503,
0.1950942426919937,
-0.03644494712352753,
0.08714226633310318,
0.0154351145029068,
0.1522706001996994,
-0.05119588226079941,
0.14720745384693146,
-0.10931728035211563,
-0.04014137014746666,
-0.06710435450077057,
0.21513493359088898,
0.25630924105644226,
-0.06136954948306084,
-0.008937356993556023,
-0.012760217301547527,
0.058654606342315674,
0.1073930487036705,
0.16049085557460785,
0.002326392102986574,
0.2802925705909729,
-0.03133585304021835,
0.04815128445625305,
0.02901598811149597,
0.013607407920062542,
-0.06336209923028946,
0.03397751972079277,
0.07539387792348862,
-0.035039983689785004,
-0.1412304788827896,
0.15837742388248444,
-0.21980468928813934,
0.18157227337360382,
0.11640069633722305,
-0.19996967911720276,
-0.013728445395827293,
-0.04882071167230606,
0.1689416468143463,
-0.0856364443898201,
0.1637246012687683,
-0.0903693437576294,
-0.2108195722103119,
-0.2056000679731369,
0.03867346793413162,
-0.34623071551322937,
-0.254462867975235,
0.10422009229660034,
0.1488201916217804,
0.04015883058309555,
-0.018507536500692368,
-0.019967829808592796,
-0.018367022275924683,
0.04877542704343796,
-0.0067357709631323814,
0.06014643982052803,
0.031397558748722076,
-0.02988368645310402,
-0.24127542972564697,
-0.029804671183228493,
0.023964406922459602,
-0.07093082368373871,
0.07464958727359772,
-0.06874357163906097,
-0.022495782002806664,
0.08059766888618469,
-0.03066304884850979,
0.03298592567443848,
-0.035373736172914505,
-0.16326889395713806,
0.027529051527380943,
0.03900543600320816,
0.036012712866067886,
0.00634160777553916,
0.0008072225609794259,
-0.03455270454287529,
0.0644603744149208,
-0.16716794669628143,
-0.16015739738941193,
0.14140215516090393,
-0.06745140254497528,
0.2779497504234314,
-0.05812826007604599,
-0.0809100940823555,
0.04766704887151718,
-0.03426874056458473,
0.1807648241519928,
-0.07756473124027252,
0.047254521399736404,
0.12766779959201813,
0.011127962730824947,
0.03121316432952881,
-0.3092964291572571,
0.11082969605922699,
-0.000795336440205574,
-0.006093299947679043,
-0.07581598311662674
] |
null | null | null | <h2><strong>➲</strong><strong>Buy Now Official website @>> </strong><a href="https://www.facebook.com/BExtraWeightLossUK/"><strong>https://www.facebook.com/BExtraWeightLossUK/</strong></a></h2>
<h2><span style="background-color: #ff9900;"><strong>➲</strong><strong> Product Name — </strong><a style="background-color: #ff9900;" href="https://www.facebook.com/BExtraWeightLossUK/"><strong>B Extra Weight Loss UK</strong></a></span></h2>
<p><span style="background-color: #ffffff;">The containers can assist with supporting digestion, manage glucose levels and diminish hunger. When taken consistently, <a style="background-color: #ffffff;" href="https://www.facebook.com/BExtraWeightLossUK/"><strong>B Extra Weight Loss UK</strong></a> can assist with consuming fat quicker and lessen body weight.</span></p>
<p>The B+ tablets are a characteristic dietary enhancement explicitly intended for individuals who battle with heftiness and are searching for a clear and successful method for getting in shape.</p>
<p>In any case, it is essential to take note that <span><a href="https://www.facebook.com/BExtraWeightLossUK/"><strong>B Extra Weight Loss UK</strong></a></span><span> is not a supernatural occurrence fix. To effectively get in shape, coordinating a solid eating regimen and adequate activity into your everyday routine is significant. The cases can assist with accelerating the cycle and augment results.</span></p>
<p>B Additional tablets are a creative answer for people battling with heftiness. They address an exceptionally formed recipe that expects to advance weight reduction without the requirement for changes in diet or actual work. The cases contain fixings, for example, L-carnitine and L-arginine, which can support energy digestion. This implies that the body delivers more energy, which can assist you with feeling more dynamic and essential. Likewise, <a href="https://www.facebook.com/BExtraWeightLossUK/"><strong>B Extra Weight Loss UK</strong></a> can likewise assist with directing glucose levels, which can be especially helpful for individuals with diabetes.</p>
<p>Another medical advantage of <a href="https://www.facebook.com/BExtraWeightLossUK/"><strong>B Extra Weight Loss UK</strong></a> is that they can furnish the body with significant supplements. The cases contain various nutrients and minerals that can assist with keeping the body solid. For instance, they contain L-ascorbic acid, which is significant for a solid resistant framework, and calcium and magnesium, which are required areas of strength for teeth.</p>
<p><strong>Official facebook: ===>></strong></p>
<p><a href="https://www.facebook.com/profile.php?id=100090207926041"><strong>https://www.facebook.com/profile.php?id=100090207926041</strong></a></p>
<p><a href="https://www.facebook.com/BExtraWeightLoss/"><strong>https://www.facebook.com/BExtraWeightLoss/</strong></a></p>
<p><a href="https://www.facebook.com/BExtraDietInUK/"><strong>https://www.facebook.com/BExtraDietInUK/</strong></a></p>
<p><strong>Gamma===>></strong></p>
<p><a href="https://gamma.app/public/-fwo26etqsnpurol"><strong>https://gamma.app/public/-fwo26etqsnpurol</strong></a></p>
<p><a href="https://gamma.app/public/B-Extra-Weight-Loss-UK-yxl8t9vf4mojne5"><strong>https://gamma.app/public/B-Extra-Weight-Loss-UK-yxl8t9vf4mojne5</strong></a></p>
<p><strong>Group Google ===>></strong></p>
<p><a href="https://groups.google.com/g/jamevaz/c/bDw_pdpb6HU"><strong>https://groups.google.com/g/jamevaz/c/bDw_pdpb6HU</strong></a></p>
<p><a href="https://groups.google.com/g/jamevaz/c/AZWIk7ez95A"><strong>https://groups.google.com/g/jamevaz/c/AZWIk7ez95A</strong></a></p>
<p><strong>colab.research ===>></strong></p>
<p><a href="https://colab.research.google.com/drive/1G0g1BcLeTJiy5yCgL_itxHMh2Dx465LF?usp=sharing"><strong>https://colab.research.google.com/drive/1G0g1BcLeTJiy5yCgL_itxHMh2Dx465LF?usp=sharing</strong></a><strong> </strong></p>
<p><strong>Site Google===>></strong></p>
<p><a href="https://sites.google.com/view/b-extra-weight-loss-uk/home"><strong>https://sites.google.com/view/b-extra-weight-loss-uk/home</strong></a></p>
<p><strong>Blogger===>></strong></p>
<p><a href="https://mynewsupdatezone.blogspot.com/2023/11/b-extra-weight-loss-uk-reviews-beware.htm"><strong>https://mynewsupdatezone.blogspot.com/2023/11/b-extra-weight-loss-uk-reviews-beware.htm</strong></a></p>
<p><strong>webflow ===>></strong></p>
<p><a href="https://b-extra-weight-loss-uk.webflow.io/"><strong>https://b-extra-weight-loss-uk.webflow.io/</strong></a></p>
<p><strong>dibiz==>></strong></p>
<p><a href="https://www.dibiz.com/albelutz"><strong>https://www.dibiz.com/albelutz</strong></a></p>
<p><strong>medium ===>></strong></p>
<p><a href="https://medium.com/@albelutz/lose-weight-look-great-and-feel-healthy-00262917a072"><strong>https://medium.com/@albelutz/lose-weight-look-great-and-feel-healthy-00262917a072</strong></a></p>
<p><a href="https://medium.com/@albelutz/lose-weight-look-great-and-feel-healthy-be29aaad1790"><strong>https://medium.com/@albelutz/lose-weight-look-great-and-feel-healthy-be29aaad1790</strong></a></p>
<p><a href="https://medium.com/@albelutz/b-extra-weight-loss-uk-2023-dont-buy-before-visiting-on-website-scam-exposed-8842af4d4909"><strong>https://medium.com/@albelutz/b-extra-weight-loss-uk-2023-dont-buy-before-visiting-on-website-scam-exposed-8842af4d4909</strong></a></p>
<p><a href="https://medium.com/@albelutz/lose-weight-look-great-and-feel-healthy-91b77604881c"><strong>https://medium.com/@albelutz/lose-weight-look-great-and-feel-healthy-91b77604881c</strong></a></p>
<p><a href="https://medium.com/@albelutz/buy-now-official-website-https-www-facebook-com-bextraweightlossuk-9703629c7882"><strong>https://medium.com/@albelutz/buy-now-official-website-https-www-facebook-com-bextraweightlossuk-9703629c7882</strong></a></p>
<p><strong>Hashnode ===>></strong></p>
<p><a href="https://bextraweightlossuk.hashnode.dev/b-extra-weight-loss-uk-shocking-scam-warning-2023-update"><strong>https://bextraweightlossuk.hashnode.dev/b-extra-weight-loss-uk-shocking-scam-warning-2023-update</strong></a></p>
<p><a href="https://bextraweightlossuk.hashnode.dev/b-extra-weight-loss-uk-scam-alert-review-a-weight-loss-pills-or-waste-of-money"><strong>https://bextraweightlossuk.hashnode.dev/b-extra-weight-loss-uk-scam-alert-review-a-weight-loss-pills-or-waste-of-money</strong></a></p>
<p><a href="https://bextraweightlossuk.hashnode.dev/b-extra-weight-loss-uk-reviews-2023-scam-alert-must-read-before-buying"><strong>https://bextraweightlossuk.hashnode.dev/b-extra-weight-loss-uk-reviews-2023-scam-alert-must-read-before-buying</strong></a></p>
<p><strong>Animale Male Enhancement CBD Gummies Jamaica</strong></p>
<p><strong><a href="https://www.facebook.com/AnimaleMaleEnhancementCBDGummiesJamaica/">https://www.facebook.com/AnimaleMaleEnhancementCBDGummiesJamaica/</a> </strong></p>
<p><strong>B Extra Pills UK</strong></p>
<p><strong><a href="https://www.facebook.com/BExtraPillsUK/">https://www.facebook.com/BExtraPillsUK/</a> </strong></p>
<p><strong><a href="https://www.facebook.com/BExtraPills/">https://www.facebook.com/BExtraPills/</a> </strong></p>
<p><strong>B Extra Slimming Pills UK</strong></p>
<p><strong><a href="https://www.facebook.com/BExtraSlimmingPillsUK/">https://www.facebook.com/BExtraSlimmingPillsUK/</a> </strong></p>
<p><strong>Gentle Groove CBD Gummies</strong></p>
<p><strong><a href="https://www.facebook.com/GentleGrooveCBDGummiesUnitedStates/">https://www.facebook.com/GentleGrooveCBDGummiesUnitedStates/</a> </strong></p>
<p><strong>Karlien Van Jaarsveld Keto Gummies</strong></p>
<p><strong><a href="https://www.facebook.com/KarlienVanJaarsveldKetoGummiesInZA/">https://www.facebook.com/KarlienVanJaarsveldKetoGummiesInZA/</a> </strong></p>
<p><strong>Smart Hemp Gummies Canada</strong></p>
<p><strong><a href="https://www.facebook.com/SmartHempGummiesInCanada/">https://www.facebook.com/SmartHempGummiesInCanada/</a> </strong></p>
<p><strong>Smart Hemp Gummies Australia</strong></p>
<p><strong><a href="https://www.facebook.com/SmartHempGummiesInAustralia/">https://www.facebook.com/SmartHempGummiesInAustralia/</a> </strong></p>
<p><strong>Amarose Skin Tag Remover</strong></p>
<p><strong><a href="https://www.outlookindia.com/outlook-spotlight/-official-website-amarose-skin-tag-remover-reviews-exposed-scam-2023-shark-tank-skin-tag-remover-read-bliss-skin-tag-remover-nobody-tells-you-this-amarose-skin-tags-remover-is-safe-or-effective--news-255555">https://www.outlookindia.com/outlook-spotlight/-official-website-amarose-skin-tag-remover-reviews-exposed-scam-2023-shark-tank-skin-tag-remover-read-bliss-skin-tag-remover-nobody-tells-you-this-amarose-skin-tags-remover-is-safe-or-effective--news-255555</a> </strong></p>
<p><strong><a href="https://www.facebook.com/people/Amarose-Skin-Tag-Remover-Reviews-Bliss-Skin-Tag-Remover/100089999527140/">https://www.facebook.com/people/Amarose-Skin-Tag-Remover-Reviews-Bliss-Skin-Tag-Remover/100089999527140/</a> </strong></p> | {} | null | Jamessimer/BExtraWeightLossbuuynow | [
"region:us"
] | 2023-11-11T06:18:51+00:00 | [] | [] | TAGS
#region-us
| <h2><strong></strong><strong>Buy Now Official website @>> </strong><a href="URL/URL
<h2><span style="background-color: #ff9900;"><strong></strong><strong> Product Name — </strong><a style="background-color: #ff9900;" href="URL Extra Weight Loss UK</strong></a></span></h2>
<p><span style="background-color: #ffffff;">The containers can assist with supporting digestion, manage glucose levels and diminish hunger. When taken consistently, <a style="background-color: #ffffff;" href="URL Extra Weight Loss UK</strong></a> can assist with consuming fat quicker and lessen body weight.</span></p>
<p>The B+ tablets are a characteristic dietary enhancement explicitly intended for individuals who battle with heftiness and are searching for a clear and successful method for getting in shape.</p>
<p>In any case, it is essential to take note that <span><a href="URL Extra Weight Loss UK</strong></a></span><span> is not a supernatural occurrence fix. To effectively get in shape, coordinating a solid eating regimen and adequate activity into your everyday routine is significant. The cases can assist with accelerating the cycle and augment results.</span></p>
<p>B Additional tablets are a creative answer for people battling with heftiness. They address an exceptionally formed recipe that expects to advance weight reduction without the requirement for changes in diet or actual work. The cases contain fixings, for example, L-carnitine and L-arginine, which can support energy digestion. This implies that the body delivers more energy, which can assist you with feeling more dynamic and essential. Likewise, <a href="URL Extra Weight Loss UK</strong></a> can likewise assist with directing glucose levels, which can be especially helpful for individuals with diabetes.</p>
<p>Another medical advantage of <a href="URL Extra Weight Loss UK</strong></a> is that they can furnish the body with significant supplements. The cases contain various nutrients and minerals that can assist with keeping the body solid. For instance, they contain L-ascorbic acid, which is significant for a solid resistant framework, and calcium and magnesium, which are required areas of strength for teeth.</p>
<p><strong>Official facebook: ===>></strong></p>
<p><a href="URL/URL
<p><a href="URL/URL
<p><a href="URL/URL
<p><strong>Gamma===>></strong></p>
<p><a href="URL/URL
<p><a href="URL/URL
<p><strong>Group Google ===>></strong></p>
<p><a href="URL/URL
<p><a href="URL/URL
<p><strong>colab.research ===>></strong></p>
<p><a href="URL/URL </strong></p>
<p><strong>Site Google===>></strong></p>
<p><a href="URL/URL
<p><strong>Blogger===>></strong></p>
<p><a href="URL/URL
<p><strong>webflow ===>></strong></p>
<p><a href="URL/URL
<p><strong>dibiz==>></strong></p>
<p><a href="URL/URL
<p><strong>medium ===>></strong></p>
<p><a href="URL/URL
<p><a href="URL/URL
<p><a href="URL/URL
<p><a href="URL/URL
<p><a href="URL/URL
<p><strong>Hashnode ===>></strong></p>
<p><a href="URL/URL
<p><a href="URL/URL
<p><a href="URL/URL
<p><strong>Animale Male Enhancement CBD Gummies Jamaica</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong>B Extra Pills UK</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong>B Extra Slimming Pills UK</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong>Gentle Groove CBD Gummies</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong>Karlien Van Jaarsveld Keto Gummies</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong>Smart Hemp Gummies Canada</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong>Smart Hemp Gummies Australia</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong>Amarose Skin Tag Remover</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong><a href="URL/URL </strong></p> | [] | [
"TAGS\n#region-us \n"
] | [
6
] | [
"passage: TAGS\n#region-us \n"
] | [
0.024608636274933815,
-0.026205500587821007,
-0.009666500613093376,
-0.10395516455173492,
0.08638657629489899,
0.059816278517246246,
0.01882290467619896,
0.020661840215325356,
0.23975107073783875,
-0.005599027033895254,
0.1219947561621666,
0.0015615287702530622,
-0.037353623658418655,
0.03733762726187706,
-0.0035912662278860807,
-0.17583473026752472,
0.03876631706953049,
-0.018274923786520958,
0.01843859627842903,
0.026470553129911423,
-0.07776834815740585,
-0.07564429938793182,
0.015296397730708122,
-0.10247814655303955,
-0.083692267537117,
0.11002834886312485,
0.031466204673051834,
-0.019670886918902397,
0.10779199749231339,
-0.04243955761194229,
0.18699054419994354,
-0.011512263678014278,
-0.11213519424200058,
-0.2536850869655609,
0.021806683391332626,
-0.01765260472893715,
-0.08747660368680954,
0.01506110467016697,
0.0665089413523674,
-0.09014441072940826,
-0.0588928684592247,
0.0795099288225174,
-0.01132340170443058,
0.04246443510055542,
-0.27593839168548584,
-0.12684126198291779,
-0.05297930911183357,
-0.1421966552734375,
0.08651168644428253,
0.04035491496324539,
0.008764253929257393,
0.15506891906261444,
-0.20897391438484192,
0.004104613792151213,
0.08255259692668915,
-0.2538507878780365,
0.05591634660959244,
0.17671173810958862,
0.03623908758163452,
0.18037272989749908,
0.0060391901060938835,
0.11029672622680664,
0.0716743916273117,
-0.024263937026262283,
-0.17590197920799255,
-0.08127854019403458,
-0.04696211963891983,
0.16642488539218903,
-0.06727185100317001,
-0.14248386025428772,
0.34701237082481384,
0.00015008423360995948,
0.009657775051891804,
0.16921205818653107,
-0.059524230659008026,
-0.09972117841243744,
0.07259953022003174,
0.016484731808304787,
0.018492350354790688,
0.1471305936574936,
0.16307872533798218,
-0.0458691343665123,
-0.13837823271751404,
-0.018630273640155792,
-0.22798998653888702,
0.17510560154914856,
-0.03248048573732376,
0.13137903809547424,
-0.27447956800460815,
0.01684025302529335,
-0.2570667266845703,
0.0032130838371813297,
0.04178816080093384,
-0.06004921346902847,
-0.0226522795855999,
-0.013265985064208508,
-0.08018817007541656,
0.004899587947875261,
0.06192673370242119,
0.1266920566558838,
-0.06128726154565811,
0.06128238886594772,
-0.09319206327199936,
0.141696035861969,
0.07166698575019836,
0.07868369668722153,
0.13037432730197906,
0.041205424815416336,
-0.07187089323997498,
-0.21872246265411377,
-0.0026476888451725245,
-0.06275863200426102,
-0.09502086788415909,
-0.0020165652967989445,
-0.11606067419052124,
0.17244569957256317,
-0.030802514404058456,
-0.09825427830219269,
-0.11208184063434601,
0.09148659557104111,
-0.032992321997880936,
-0.03437839448451996,
-0.03552987426519394,
-0.020977836102247238,
0.019381176680326462,
0.04704452306032181,
-0.1548958420753479,
-0.005131472367793322,
0.07039852440357208,
0.11502562463283539,
-0.1346137970685959,
-0.003783059772104025,
-0.07908964157104492,
0.03039063885807991,
0.07654735445976257,
-0.16510222852230072,
0.03158547356724739,
-0.1124754324555397,
-0.07531405985355377,
0.002912673633545637,
-0.015710093080997467,
-0.016202643513679504,
0.166526660323143,
-0.0020451415330171585,
0.0714716836810112,
-0.026345307007431984,
-0.05890209600329399,
-0.11243434250354767,
-0.08489254862070084,
0.05390460044145584,
0.03670717030763626,
0.03266148269176483,
-0.2193479984998703,
0.014805203303694725,
-0.12762966752052307,
0.1360815018415451,
-0.10566820204257965,
-0.04705966264009476,
-0.022842247039079666,
0.20562705397605896,
0.037286072969436646,
0.08762791007757187,
-0.22171171009540558,
0.039756543934345245,
-0.05404696613550186,
0.18480908870697021,
-0.1502426266670227,
-0.0799463614821434,
0.20813211798667908,
-0.07964949309825897,
-0.10115210711956024,
0.021235812455415726,
0.020391687750816345,
0.026287272572517395,
0.0766737088561058,
0.4564172327518463,
-0.09766800701618195,
-0.09146861732006073,
0.10178250074386597,
0.17055274546146393,
-0.12427149713039398,
-0.1827561855316162,
0.06446871906518936,
-0.16666454076766968,
-0.1973118633031845,
0.0018917324487119913,
0.09222044050693512,
0.038269978016614914,
-0.07875611633062363,
-0.020746968686580658,
0.06325206160545349,
-0.0007678253459744155,
0.09095914661884308,
0.03755716234445572,
0.09034032374620438,
-0.08716782182455063,
0.11115926504135132,
-0.05017651244997978,
0.004037132486701012,
0.1343354731798172,
0.027325427159667015,
-0.03223329409956932,
0.08694463223218918,
-0.0485352948307991,
0.05295134335756302,
-0.1662379503250122,
-0.15068690478801727,
0.03398871049284935,
0.06283251196146011,
0.03186952322721481,
0.1280253529548645,
0.08141885697841644,
-0.10732853412628174,
0.022690722718834877,
-0.004228927195072174,
0.058398615568876266,
0.03891623765230179,
0.006107209715992212,
0.008764320984482765,
0.0961301177740097,
-0.10607069730758667,
-0.13589619100093842,
-0.07336436957120895,
-0.014715781435370445,
0.14371353387832642,
-0.0302802175283432,
0.07690227776765823,
-0.004240254405885935,
0.00013200697139836848,
0.06930823624134064,
0.08137880265712738,
0.016412746161222458,
0.08971183747053146,
-0.05237193778157234,
-0.05160155147314072,
0.10863113403320312,
-0.13533565402030945,
0.17837053537368774,
0.14053137600421906,
-0.20532016456127167,
0.029453208670020103,
-0.06838275492191315,
0.03670361638069153,
-0.008162540383636951,
0.0975119024515152,
-0.08272241055965424,
-0.02106042578816414,
0.013134466484189034,
0.0052274600602686405,
-0.013007243163883686,
0.017682146281003952,
-0.07295988500118256,
-0.07787393033504486,
-0.10233919322490692,
0.08436838537454605,
0.11562882363796234,
-0.10282530635595322,
0.14214380085468292,
0.4384984076023102,
0.11495281755924225,
0.21582984924316406,
-0.09581480920314789,
-0.0412987545132637,
0.007486371789127588,
0.0001535322517156601,
-0.04476691037416458,
0.08031861484050751,
-0.15973517298698425,
-0.038901735097169876,
0.027348900213837624,
0.07128690183162689,
0.11475157737731934,
-0.14959022402763367,
-0.09639324247837067,
-0.00793045200407505,
0.0022841424215584993,
-0.1249532699584961,
0.023905446752905846,
-0.03974650055170059,
0.04015624523162842,
0.07232289016246796,
-0.021535737439990044,
0.13939237594604492,
-0.04166141897439957,
-0.0639561116695404,
0.07585346698760986,
-0.2017085999250412,
-0.23179671168327332,
-0.12309670448303223,
-0.14680525660514832,
0.04366797208786011,
0.05154111236333847,
0.01726446859538555,
-0.17635835707187653,
-0.015074856579303741,
0.07706750929355621,
0.07820965349674225,
-0.20886357128620148,
-0.022814949974417686,
-0.004290030337870121,
0.0895976573228836,
-0.10227091610431671,
-0.0017130117630586028,
-0.04419664293527603,
-0.10150232166051865,
0.0017003051470965147,
0.07279510796070099,
-0.137485533952713,
0.13807645440101624,
0.21589438617229462,
0.07225540280342102,
0.07359948754310608,
-0.019093448296189308,
0.09936179965734482,
-0.10856141895055771,
-0.16549113392829895,
0.08348225057125092,
-0.06234746053814888,
0.047262318432331085,
0.17534415423870087,
0.03307317942380905,
-0.13904969394207,
-0.015682822093367577,
-0.0402069091796875,
-0.15603256225585938,
-0.238995760679245,
-0.09178274869918823,
-0.1182505264878273,
0.16442428529262543,
0.0009358620154671371,
0.06651917099952698,
0.08258313685655594,
-0.022042419761419296,
0.16447891294956207,
-0.07379321753978729,
-0.07578866183757782,
-0.006978808436542749,
0.12375060468912125,
-0.056660156697034836,
-0.03080669604241848,
-0.10566964000463486,
-0.008295975625514984,
0.1151021271944046,
0.15304014086723328,
0.12214863300323486,
0.2957419455051422,
0.08268889784812927,
0.026645636186003685,
0.08958091586828232,
0.17622539401054382,
0.09495089203119278,
0.07838419824838638,
-0.045413073152303696,
-0.014814783819019794,
0.014317171648144722,
-0.04022889584302902,
0.010141594335436821,
0.14683100581169128,
-0.2679629921913147,
-0.006678564939647913,
-0.2710230350494385,
0.0965198427438736,
-0.10913380235433578,
0.11837165057659149,
-0.01015760749578476,
0.10194015502929688,
0.11082887649536133,
0.03233652561903,
-0.03858073800802231,
0.16613617539405823,
0.08450309932231903,
-0.11277695000171661,
0.001758623169735074,
0.03737903758883476,
0.09715615212917328,
-0.02818971499800682,
0.12721189856529236,
-0.11048974841833115,
-0.1464834064245224,
0.013753619976341724,
0.07152791321277618,
-0.15373679995536804,
0.3138748109340668,
0.012069208547472954,
-0.13481520116329193,
-0.01481647603213787,
-0.09957809001207352,
-0.006440147757530212,
0.1254177987575531,
0.09333524852991104,
0.07935678958892822,
-0.2185502052307129,
-0.13339371979236603,
0.05872276425361633,
-0.00575496768578887,
0.22408108413219452,
-0.034034017473459244,
-0.11356475204229355,
-0.027013886719942093,
0.04241163283586502,
-0.06043251231312752,
0.08524788916110992,
0.023536119610071182,
-0.08113526552915573,
-0.032957352697849274,
0.05323701351881027,
0.012368366122245789,
0.00524376705288887,
0.09360801428556442,
0.020107939839363098,
-0.0009265501867048442,
0.01785753294825554,
0.047885000705718994,
-0.0675911232829094,
-0.1984109878540039,
0.09357594698667526,
-0.05215044692158699,
0.0015536568826064467,
-0.08013670891523361,
-0.15122665464878082,
-0.08837161958217621,
-0.16009655594825745,
0.12540200352668762,
-0.034406669437885284,
0.12700119614601135,
-0.06619787961244583,
0.17341409623622894,
-0.07871770113706589,
0.04481020197272301,
-0.047349292784929276,
0.050332702696323395,
-0.007268077693879604,
-0.07756082713603973,
0.16585899889469147,
-0.15564003586769104,
0.01809087023139,
0.19572502374649048,
-0.018915493041276932,
0.07177707552909851,
0.021322092041373253,
-0.0636206790804863,
0.23147478699684143,
0.3014698624610901,
0.008138049393892288,
0.1665448248386383,
0.3018903136253357,
-0.07466315478086472,
-0.2642788887023926,
-0.05505012720823288,
-0.2841376066207886,
-0.05371501296758652,
0.10716094076633453,
-0.22523896396160126,
0.06986407935619354,
0.14383509755134583,
-0.06471995264291763,
0.30228954553604126,
-0.21825523674488068,
0.012589273042976856,
0.15434536337852478,
-0.08868814259767532,
0.5515313148498535,
-0.1133413165807724,
-0.17677772045135498,
-0.008122089318931103,
-0.08741296827793121,
0.10602109134197235,
-0.0340677872300148,
0.06877441704273224,
0.013465235009789467,
0.04797380417585373,
0.048932258039712906,
-0.03111894056200981,
0.22701001167297363,
0.008710170164704323,
0.09015397727489471,
-0.07378865778446198,
-0.18624304234981537,
0.11639340221881866,
-0.04359482601284981,
-0.08891059458255768,
0.0849778801202774,
-0.05942516401410103,
-0.11078983545303345,
0.04663389176130295,
-0.07950539886951447,
-0.024862350896000862,
0.08423490077257156,
-0.04678233340382576,
-0.042606171220541,
-0.008054176345467567,
-0.1618063747882843,
-0.0002289071271661669,
0.31360217928886414,
-0.07096036523580551,
0.16695955395698547,
0.03677211329340935,
0.00038613268407061696,
-0.11027684062719345,
0.030288029462099075,
-0.05203165486454964,
-0.021576624363660812,
0.09578979015350342,
-0.11096979677677155,
0.03204701095819473,
0.14160704612731934,
-0.04864364117383957,
0.05846960097551346,
0.09256096184253693,
-0.0849417969584465,
0.007583672646433115,
0.17753590643405914,
-0.17537221312522888,
-0.1273445188999176,
-0.006135711446404457,
-0.09862716495990753,
0.14055661857128143,
0.04394126310944557,
0.05191568285226822,
0.16669964790344238,
0.03967129811644554,
-0.029474308714270592,
-0.02817419543862343,
-0.1153380498290062,
-0.0201893113553524,
0.040153320878744125,
0.00045633706031367183,
-0.08791285753250122,
0.2262638509273529,
0.06409153342247009,
-0.1328488290309906,
-0.051157206296920776,
0.2161225974559784,
-0.06805316358804703,
-0.04911920800805092,
-0.223562553524971,
0.10752306133508682,
-0.07112517952919006,
-0.0965060144662857,
0.05453834682703018,
-0.02270081453025341,
0.005106312222778797,
0.181985542178154,
0.03941008821129799,
0.11070270836353302,
0.03738937899470329,
-0.02448922023177147,
0.15798696875572205,
-0.142850860953331,
-0.14191335439682007,
-0.025354057550430298,
-0.08757315576076508,
-0.13844476640224457,
-0.026804137974977493,
0.1617041826248169,
-0.09177309274673462,
-0.14772607386112213,
-0.2621181011199951,
0.10968475043773651,
-0.16432365775108337,
-0.10192688554525375,
-0.03469514101743698,
-0.08968492597341537,
0.0696166530251503,
0.030301768332719803,
-0.03093348816037178,
-0.06706760823726654,
-0.18593791127204895,
0.0816768929362297,
0.06349513679742813,
0.045533183962106705,
-0.017847947776317596,
0.0067379772663116455,
0.1720137596130371,
0.025955144315958023,
0.10040043294429779,
0.16762186586856842,
0.011397695168852806,
0.2246655523777008,
-0.1671202927827835,
-0.11496317386627197,
0.1336962729692459,
-0.026543032377958298,
0.06762003898620605,
0.16792191565036774,
-0.0772583931684494,
0.015526676550507545,
-0.028136352077126503,
0.07066910713911057,
-0.11003983020782471,
-0.105624258518219,
0.007937257178127766,
0.02567129209637642,
-0.2755882740020752,
-0.005599735304713249,
-0.19717298448085785,
0.14788752794265747,
0.02579621411859989,
0.03297143429517746,
0.10257530212402344,
0.10404334217309952,
0.08312062919139862,
-0.0017710148822516203,
0.03226327523589134,
-0.1176818460226059,
0.02753005363047123,
-0.059239376336336136,
-0.020663779228925705,
0.017624232918024063,
0.36952024698257446,
-0.03603357449173927,
-0.046802736818790436,
0.003710439894348383,
0.1307835876941681,
-0.02139742486178875,
0.017395347356796265,
0.13209912180900574,
0.12607666850090027,
-0.08595693111419678,
-0.1504845917224884,
0.04888554662466049,
-0.04565655067563057,
-0.02836887165904045,
0.1464131623506546,
0.05905961990356445,
0.1050296202301979,
0.0908031314611435,
-0.014463032595813274,
-0.00318976235575974,
0.012856799177825451,
-0.15486004948616028,
0.06223496049642563,
-0.010558074340224266,
0.012565906159579754,
0.017934376373887062,
0.15238402783870697,
-0.005540105979889631,
0.07739730179309845,
-0.09889880567789078,
0.004208535887300968,
-0.13498884439468384,
-0.07913459837436676,
0.03617347031831741,
-0.13393273949623108,
0.04141177982091904,
-0.01871878281235695,
0.029611799865961075,
0.30386561155319214,
0.02558239921927452,
-0.020639164373278618,
0.12512871623039246,
-0.1214587539434433,
-0.12050267308950424,
-0.001594188273884356,
-0.029960084706544876,
0.0791488066315651,
-0.02633434161543846,
-0.0997740775346756,
-0.1001306027173996,
-0.15166029334068298,
-0.09759195148944855,
0.05182836204767227,
-0.04993441700935364,
-0.059362251311540604,
-0.17634081840515137,
-0.05707859992980957,
-0.05147340148687363,
0.14025864005088806,
-0.12263951450586319,
0.15159130096435547,
-0.014490418136119843,
0.004084470681846142,
0.04405883327126503,
0.1950942426919937,
-0.03644494712352753,
0.08714226633310318,
0.0154351145029068,
0.1522706001996994,
-0.05119588226079941,
0.14720745384693146,
-0.10931728035211563,
-0.04014137014746666,
-0.06710435450077057,
0.21513493359088898,
0.25630924105644226,
-0.06136954948306084,
-0.008937356993556023,
-0.012760217301547527,
0.058654606342315674,
0.1073930487036705,
0.16049085557460785,
0.002326392102986574,
0.2802925705909729,
-0.03133585304021835,
0.04815128445625305,
0.02901598811149597,
0.013607407920062542,
-0.06336209923028946,
0.03397751972079277,
0.07539387792348862,
-0.035039983689785004,
-0.1412304788827896,
0.15837742388248444,
-0.21980468928813934,
0.18157227337360382,
0.11640069633722305,
-0.19996967911720276,
-0.013728445395827293,
-0.04882071167230606,
0.1689416468143463,
-0.0856364443898201,
0.1637246012687683,
-0.0903693437576294,
-0.2108195722103119,
-0.2056000679731369,
0.03867346793413162,
-0.34623071551322937,
-0.254462867975235,
0.10422009229660034,
0.1488201916217804,
0.04015883058309555,
-0.018507536500692368,
-0.019967829808592796,
-0.018367022275924683,
0.04877542704343796,
-0.0067357709631323814,
0.06014643982052803,
0.031397558748722076,
-0.02988368645310402,
-0.24127542972564697,
-0.029804671183228493,
0.023964406922459602,
-0.07093082368373871,
0.07464958727359772,
-0.06874357163906097,
-0.022495782002806664,
0.08059766888618469,
-0.03066304884850979,
0.03298592567443848,
-0.035373736172914505,
-0.16326889395713806,
0.027529051527380943,
0.03900543600320816,
0.036012712866067886,
0.00634160777553916,
0.0008072225609794259,
-0.03455270454287529,
0.0644603744149208,
-0.16716794669628143,
-0.16015739738941193,
0.14140215516090393,
-0.06745140254497528,
0.2779497504234314,
-0.05812826007604599,
-0.0809100940823555,
0.04766704887151718,
-0.03426874056458473,
0.1807648241519928,
-0.07756473124027252,
0.047254521399736404,
0.12766779959201813,
0.011127962730824947,
0.03121316432952881,
-0.3092964291572571,
0.11082969605922699,
-0.000795336440205574,
-0.006093299947679043,
-0.07581598311662674
] |
null | null | transformers |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
should probably proofread and complete it, then remove this comment. -->
# Bert_Bahasa_Sentiment-large-dataset
This model is a fine-tuned version of [techthiyanes/Bert_Bahasa_Sentiment](https://huggingface.co/techthiyanes/Bert_Bahasa_Sentiment) on an unknown dataset.
It achieves the following results on the evaluation set:
- eval_loss: 0.6961
- eval_accuracy: {'accuracy': 0.48474945533769065}
- eval_f1score: {'f1': 0.31652752402827933}
- eval_runtime: 33.4825
- eval_samples_per_second: 27.417
- eval_steps_per_second: 3.435
- step: 0
## Model description
More information needed
## Intended uses & limitations
More information needed
## Training and evaluation data
More information needed
## Training procedure
### Training hyperparameters
The following hyperparameters were used during training:
- learning_rate: 0.0002
- train_batch_size: 8
- eval_batch_size: 8
- seed: 42
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
- lr_scheduler_type: linear
- lr_scheduler_warmup_steps: 642
- num_epochs: 7
### Framework versions
- Transformers 4.35.0
- Pytorch 2.1.0+cu118
- Datasets 2.14.6
- Tokenizers 0.14.1
| {"tags": ["generated_from_trainer"], "base_model": "techthiyanes/Bert_Bahasa_Sentiment", "model-index": [{"name": "Bert_Bahasa_Sentiment-large-dataset", "results": []}]} | text-classification | soongbren/Bert_Bahasa_Sentiment-large-dataset | [
"transformers",
"tensorboard",
"safetensors",
"bert",
"text-classification",
"generated_from_trainer",
"base_model:techthiyanes/Bert_Bahasa_Sentiment",
"autotrain_compatible",
"endpoints_compatible",
"region:us"
] | 2023-11-11T06:19:16+00:00 | [] | [] | TAGS
#transformers #tensorboard #safetensors #bert #text-classification #generated_from_trainer #base_model-techthiyanes/Bert_Bahasa_Sentiment #autotrain_compatible #endpoints_compatible #region-us
|
# Bert_Bahasa_Sentiment-large-dataset
This model is a fine-tuned version of techthiyanes/Bert_Bahasa_Sentiment on an unknown dataset.
It achieves the following results on the evaluation set:
- eval_loss: 0.6961
- eval_accuracy: {'accuracy': 0.48474945533769065}
- eval_f1score: {'f1': 0.31652752402827933}
- eval_runtime: 33.4825
- eval_samples_per_second: 27.417
- eval_steps_per_second: 3.435
- step: 0
## Model description
More information needed
## Intended uses & limitations
More information needed
## Training and evaluation data
More information needed
## Training procedure
### Training hyperparameters
The following hyperparameters were used during training:
- learning_rate: 0.0002
- train_batch_size: 8
- eval_batch_size: 8
- seed: 42
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
- lr_scheduler_type: linear
- lr_scheduler_warmup_steps: 642
- num_epochs: 7
### Framework versions
- Transformers 4.35.0
- Pytorch 2.1.0+cu118
- Datasets 2.14.6
- Tokenizers 0.14.1
| [
"# Bert_Bahasa_Sentiment-large-dataset\n\nThis model is a fine-tuned version of techthiyanes/Bert_Bahasa_Sentiment on an unknown dataset.\nIt achieves the following results on the evaluation set:\n- eval_loss: 0.6961\n- eval_accuracy: {'accuracy': 0.48474945533769065}\n- eval_f1score: {'f1': 0.31652752402827933}\n- eval_runtime: 33.4825\n- eval_samples_per_second: 27.417\n- eval_steps_per_second: 3.435\n- step: 0",
"## Model description\n\nMore information needed",
"## Intended uses & limitations\n\nMore information needed",
"## Training and evaluation data\n\nMore information needed",
"## Training procedure",
"### Training hyperparameters\n\nThe following hyperparameters were used during training:\n- learning_rate: 0.0002\n- train_batch_size: 8\n- eval_batch_size: 8\n- seed: 42\n- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n- lr_scheduler_type: linear\n- lr_scheduler_warmup_steps: 642\n- num_epochs: 7",
"### Framework versions\n\n- Transformers 4.35.0\n- Pytorch 2.1.0+cu118\n- Datasets 2.14.6\n- Tokenizers 0.14.1"
] | [
"TAGS\n#transformers #tensorboard #safetensors #bert #text-classification #generated_from_trainer #base_model-techthiyanes/Bert_Bahasa_Sentiment #autotrain_compatible #endpoints_compatible #region-us \n",
"# Bert_Bahasa_Sentiment-large-dataset\n\nThis model is a fine-tuned version of techthiyanes/Bert_Bahasa_Sentiment on an unknown dataset.\nIt achieves the following results on the evaluation set:\n- eval_loss: 0.6961\n- eval_accuracy: {'accuracy': 0.48474945533769065}\n- eval_f1score: {'f1': 0.31652752402827933}\n- eval_runtime: 33.4825\n- eval_samples_per_second: 27.417\n- eval_steps_per_second: 3.435\n- step: 0",
"## Model description\n\nMore information needed",
"## Intended uses & limitations\n\nMore information needed",
"## Training and evaluation data\n\nMore information needed",
"## Training procedure",
"### Training hyperparameters\n\nThe following hyperparameters were used during training:\n- learning_rate: 0.0002\n- train_batch_size: 8\n- eval_batch_size: 8\n- seed: 42\n- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n- lr_scheduler_type: linear\n- lr_scheduler_warmup_steps: 642\n- num_epochs: 7",
"### Framework versions\n\n- Transformers 4.35.0\n- Pytorch 2.1.0+cu118\n- Datasets 2.14.6\n- Tokenizers 0.14.1"
] | [
67,
159,
6,
12,
8,
3,
105,
33
] | [
"passage: TAGS\n#transformers #tensorboard #safetensors #bert #text-classification #generated_from_trainer #base_model-techthiyanes/Bert_Bahasa_Sentiment #autotrain_compatible #endpoints_compatible #region-us \n# Bert_Bahasa_Sentiment-large-dataset\n\nThis model is a fine-tuned version of techthiyanes/Bert_Bahasa_Sentiment on an unknown dataset.\nIt achieves the following results on the evaluation set:\n- eval_loss: 0.6961\n- eval_accuracy: {'accuracy': 0.48474945533769065}\n- eval_f1score: {'f1': 0.31652752402827933}\n- eval_runtime: 33.4825\n- eval_samples_per_second: 27.417\n- eval_steps_per_second: 3.435\n- step: 0## Model description\n\nMore information needed## Intended uses & limitations\n\nMore information needed## Training and evaluation data\n\nMore information needed## Training procedure### Training hyperparameters\n\nThe following hyperparameters were used during training:\n- learning_rate: 0.0002\n- train_batch_size: 8\n- eval_batch_size: 8\n- seed: 42\n- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n- lr_scheduler_type: linear\n- lr_scheduler_warmup_steps: 642\n- num_epochs: 7### Framework versions\n\n- Transformers 4.35.0\n- Pytorch 2.1.0+cu118\n- Datasets 2.14.6\n- Tokenizers 0.14.1"
] | [
-0.11055786162614822,
0.1163264662027359,
-0.005397300701588392,
0.07817193120718002,
0.10761214792728424,
0.015590096823871136,
0.09226926416158676,
0.14720727503299713,
-0.04011034965515137,
0.12294868379831314,
0.0784229189157486,
0.056189026683568954,
0.08081866055727005,
0.14511069655418396,
-0.04608049988746643,
-0.18535728752613068,
0.029966525733470917,
-0.04837105795741081,
-0.06463600695133209,
0.09722896665334702,
0.10330341756343842,
-0.10339416563510895,
0.07408786565065384,
-0.015972493216395378,
-0.05706579238176346,
0.020397791638970375,
-0.020874636247754097,
-0.06769286841154099,
0.08369141817092896,
0.02576175332069397,
0.06355270743370056,
0.002913095522671938,
0.09468497335910797,
-0.2604351043701172,
-0.012105382047593594,
0.09599822014570236,
0.03663729131221771,
0.06678015738725662,
0.0953812301158905,
-0.021374696865677834,
0.05769543722271919,
-0.13648641109466553,
0.09596280753612518,
0.03702622652053833,
-0.11460006237030029,
-0.1275956630706787,
-0.0942598283290863,
0.05440087243914604,
0.13403575122356415,
0.0831361711025238,
-0.02667616866528988,
0.08873714506626129,
-0.07062843441963196,
0.0751880332827568,
0.1661090850830078,
-0.2516425848007202,
-0.0575244203209877,
0.02175140380859375,
0.04179265722632408,
0.0257311649620533,
-0.1009768545627594,
0.0017398212803527713,
0.05116022750735283,
0.015076485462486744,
0.10192769020795822,
-0.01752636767923832,
0.02319278009235859,
0.020517980679869652,
-0.11202148348093033,
-0.05241017788648605,
0.09270510077476501,
0.06525368243455887,
-0.05918065831065178,
-0.14219513535499573,
-0.04682479053735733,
-0.09516265243291855,
-0.006891393568366766,
-0.04003133624792099,
0.028367670252919197,
-0.04913274943828583,
-0.05355969816446304,
0.0004017066094093025,
-0.06257210671901703,
-0.044867340475320816,
0.015987439081072807,
0.11348970979452133,
0.03352535516023636,
0.0026254826225340366,
-0.013569829054176807,
0.08954678475856781,
-0.025197576731443405,
-0.1334458589553833,
-0.05178891867399216,
-0.007780211977660656,
-0.11364621669054031,
-0.04641279950737953,
-0.022509556263685226,
0.02366720326244831,
-0.003203103318810463,
0.17061747610569,
-0.038797881454229355,
0.09384941309690475,
0.0498986653983593,
-0.022578805685043335,
-0.019379843026399612,
0.15957896411418915,
-0.059317704290151596,
-0.07804220169782639,
-0.04925064742565155,
0.12480951100587845,
0.005567134823650122,
-0.029093390330672264,
-0.010685482993721962,
0.0071281930431723595,
0.08387397229671478,
0.07840785384178162,
-0.021787533536553383,
0.018982725217938423,
-0.06437072902917862,
-0.011240127496421337,
-0.011772224679589272,
-0.1548667848110199,
0.060738250613212585,
0.020139645785093307,
-0.09868764132261276,
-0.04457578808069229,
0.027176428586244583,
-0.012158709578216076,
-0.058603864163160324,
0.1072416678071022,
-0.05526981130242348,
-0.017371512949466705,
-0.07181087136268616,
-0.07632141560316086,
0.010018200613558292,
-0.08056187629699707,
-0.01754545234143734,
-0.05830666422843933,
-0.15602636337280273,
-0.07194834202528,
0.04965358227491379,
-0.07583290338516235,
-0.018772419542074203,
-0.06466612964868546,
-0.06764616817235947,
0.03872918710112572,
-0.02149280719459057,
0.10628066956996918,
-0.05167409032583237,
0.06082208827137947,
-0.0064797913655638695,
0.04974184185266495,
0.11363227665424347,
0.03308986872434616,
-0.07518032938241959,
0.06412849575281143,
-0.09188902378082275,
0.10994415730237961,
-0.06882138550281525,
-0.0012304873671382666,
-0.14965187013149261,
-0.06988504528999329,
0.021464355289936066,
0.006977284327149391,
0.10334581136703491,
0.15233935415744781,
-0.17831778526306152,
-0.02700444683432579,
0.1224980354309082,
-0.0464790016412735,
-0.09789843112230301,
0.07674189656972885,
-0.03678466007113457,
0.028756549581885338,
0.048362281173467636,
0.14241456985473633,
0.06723924726247787,
-0.11562641710042953,
-0.0351676307618618,
-0.015460298396646976,
0.08573823422193527,
0.12452781200408936,
0.0525052584707737,
-0.04606064781546593,
0.05311606824398041,
0.001882969751022756,
-0.06879883259534836,
-0.045101068913936615,
-0.07035154849290848,
-0.0831632912158966,
-0.027733158320188522,
-0.05132851004600525,
0.005444013979285955,
0.0031612669117748737,
-0.0016422364860773087,
-0.07023515552282333,
-0.12038203328847885,
0.07590418308973312,
0.1107276901602745,
-0.06483463943004608,
0.026936590671539307,
-0.09494607150554657,
0.021695338189601898,
0.020627833902835846,
-0.0035261441953480244,
-0.17847080528736115,
-0.08659787476062775,
0.02285267971456051,
-0.08874234557151794,
-0.02100546844303608,
-0.03716425597667694,
0.0738930031657219,
0.044894177466630936,
-0.03496329113841057,
-0.03652985766530037,
-0.05730968713760376,
-0.011920250952243805,
-0.08661965280771255,
-0.1874251812696457,
-0.044290538877248764,
-0.012160301208496094,
0.19084633886814117,
-0.211471825838089,
0.0035307533107697964,
-0.005185569636523724,
0.13761268556118011,
0.021074652671813965,
-0.06211656704545021,
-0.0015133651904761791,
0.02277405746281147,
-0.011596746742725372,
-0.10508766025304794,
0.02541746199131012,
-0.008369648829102516,
-0.09955533593893051,
0.004116744734346867,
-0.18412913382053375,
0.008136292919516563,
0.06899060308933258,
0.08459598571062088,
-0.11037177592515945,
-0.006329291500151157,
-0.041071899235248566,
-0.02903757616877556,
-0.0906902626156807,
0.001604250050149858,
0.16101479530334473,
0.04674564301967621,
0.11407879739999771,
-0.05397038161754608,
-0.05701231583952904,
0.003101424081251025,
-0.005688684061169624,
-0.02832663618028164,
0.1665990799665451,
0.03359895572066307,
-0.07043607532978058,
0.05038798600435257,
0.095308318734169,
0.02078697457909584,
0.10876822471618652,
-0.03727830573916435,
-0.09657116234302521,
-0.036494605243206024,
0.03213096410036087,
0.015260899439454079,
0.11982768028974533,
-0.04495498910546303,
0.0013566570123657584,
0.03597208112478256,
0.025376182049512863,
-0.01414353959262371,
-0.14445699751377106,
0.01461158599704504,
0.057539235800504684,
-0.044357575476169586,
-0.012881649658083916,
-0.01904750056564808,
0.019673753529787064,
0.09145881235599518,
0.020936425775289536,
-0.028630364686250687,
-0.013626903295516968,
-0.026396650820970535,
-0.10020583122968674,
0.19955983757972717,
-0.09118802100419998,
-0.14072605967521667,
-0.11997468024492264,
0.016459640115499496,
-0.05052992329001427,
-0.01896798610687256,
0.01980707421898842,
-0.09429061412811279,
-0.08383159339427948,
-0.11954596638679504,
-0.012928206473588943,
-0.011402691714465618,
-0.019516929984092712,
0.05402028188109398,
0.0030821505934000015,
0.10768525302410126,
-0.1246708482503891,
0.0013042412465438247,
-0.010236450470983982,
-0.07396803796291351,
0.01043413020670414,
0.07082374393939972,
0.06971579790115356,
0.11231566965579987,
0.01617494784295559,
0.02666572853922844,
-0.030882226303219795,
0.21589989960193634,
-0.08431323617696762,
-0.0003998652973677963,
0.11620747298002243,
0.025515960529446602,
0.060832854360342026,
0.16086909174919128,
0.020345361903309822,
-0.1022554561495781,
0.03510031849145889,
0.09199029952287674,
-0.008614345453679562,
-0.2510054111480713,
-0.010319855995476246,
-0.005785306915640831,
-0.015779096633195877,
0.13922883570194244,
0.03690020740032196,
-0.06707044690847397,
0.04841822758316994,
-0.02271798439323902,
0.021404847502708435,
0.013999275863170624,
0.0783124715089798,
0.07392308115959167,
0.045934733003377914,
0.10568395256996155,
-0.01274784468114376,
0.010143871419131756,
0.06498435139656067,
-0.014872984029352665,
0.2020467072725296,
-0.04851144924759865,
0.09209083020687103,
0.04093063995242119,
0.10988772660493851,
-0.05900413170456886,
0.016119971871376038,
0.02925165742635727,
0.010959906503558159,
0.010440343990921974,
-0.07643863558769226,
-0.04008881747722626,
0.03755202889442444,
-0.018786834552884102,
0.047099675983190536,
-0.09948761016130447,
0.08659962564706802,
0.06781705468893051,
0.24662254750728607,
0.09364237636327744,
-0.27948901057243347,
-0.07197904586791992,
0.03611716255545616,
-0.030399823561310768,
-0.09945395588874817,
-0.009718882851302624,
0.08728675544261932,
-0.13492844998836517,
0.0805523619055748,
-0.05178223177790642,
0.08651214092969894,
-0.046330779790878296,
-0.0022340472787618637,
0.0503387451171875,
0.09561219066381454,
-0.016096463426947594,
0.05682158097624779,
-0.23088088631629944,
0.21354418992996216,
0.022548498585820198,
0.10714761912822723,
-0.04164564236998558,
0.051059551537036896,
0.01204477995634079,
0.007908061146736145,
0.12827709317207336,
0.011960881762206554,
-0.06256861984729767,
-0.20429927110671997,
-0.10738003998994827,
0.027241365984082222,
0.1260932832956314,
-0.08314017206430435,
0.10568028688430786,
-0.03674294054508209,
-0.007898942567408085,
-0.0012885205214843154,
-0.05649925768375397,
-0.12736624479293823,
-0.10928944498300552,
0.033583614975214005,
-0.02049534022808075,
-0.01783331297338009,
-0.07436448335647583,
-0.07858079671859741,
-0.0653892308473587,
0.17095595598220825,
-0.034769657999277115,
-0.05830889567732811,
-0.14134091138839722,
0.03375522419810295,
0.13513080775737762,
-0.07035183906555176,
0.02687302976846695,
0.01291937567293644,
0.11530561000108719,
0.030603857710957527,
-0.040595293045043945,
0.0699031874537468,
-0.0675581619143486,
-0.1667766571044922,
-0.0641266405582428,
0.1463574320077896,
0.052172742784023285,
0.035929739475250244,
0.0037646028213202953,
0.027141092345118523,
0.01313711702823639,
-0.08879385888576508,
0.02753084897994995,
0.08010892570018768,
0.03751814365386963,
0.0505794957280159,
-0.031672153621912,
0.0037474604323506355,
-0.07010204344987869,
-0.03166763484477997,
0.03971812501549721,
0.2869667708873749,
-0.06740229576826096,
0.06996830552816391,
0.06286031007766724,
-0.0731562003493309,
-0.1653226763010025,
0.02505185268819332,
0.0972631424665451,
0.049174267798662186,
0.05243058130145073,
-0.1315237581729889,
0.08169691264629364,
0.10023316740989685,
-0.013114728033542633,
0.031898483633995056,
-0.30820247530937195,
-0.15104742348194122,
0.07514748722314835,
0.07913446426391602,
-0.022044401615858078,
-0.1406107097864151,
-0.0540149100124836,
-0.04191436246037483,
-0.13428935408592224,
0.03282812237739563,
-0.03576948121190071,
0.09556757658720016,
0.0061149294488132,
0.05787729471921921,
0.047215286642313004,
-0.02244037203490734,
0.1766178011894226,
0.016210336238145828,
0.06018594279885292,
-0.05151580274105072,
0.04076708108186722,
0.01081792451441288,
-0.11715000122785568,
0.052386026829481125,
-0.04499409720301628,
0.06662251055240631,
-0.1549532115459442,
-0.01586458645761013,
-0.04608210548758507,
0.03882912918925285,
-0.07774703204631805,
-0.04532022774219513,
-0.04724346846342087,
0.042470209300518036,
0.07952506840229034,
-0.0307688657194376,
0.02623230777680874,
-0.01961582899093628,
0.06102318689227104,
0.13046956062316895,
0.07376892119646072,
-0.005627747625112534,
-0.11687220633029938,
0.020997516810894012,
-0.011655516922473907,
0.04439856484532356,
-0.16405662894248962,
0.05239047482609749,
0.12548740208148956,
0.04483539238572121,
0.14775246381759644,
0.018568139523267746,
-0.07744556665420532,
-0.009130902588367462,
0.039195071905851364,
-0.10474243015050888,
-0.10577499866485596,
0.02158152312040329,
-0.0336163267493248,
-0.13172337412834167,
-0.006549860816448927,
0.13990920782089233,
-0.030600693076848984,
-0.005724376533180475,
-0.0108253862708807,
0.05212102085351944,
0.009502073749899864,
0.19310028851032257,
0.0003981127229053527,
0.08527721464633942,
-0.07143071293830872,
0.15198369324207306,
0.0655963271856308,
-0.08315036445856094,
0.06578689068555832,
0.05169351398944855,
-0.07485266029834747,
-0.01026962511241436,
0.011880145408213139,
0.08396551012992859,
-0.013916811905801296,
-0.03683058172464371,
-0.07346609234809875,
-0.10352201014757156,
0.06086317077279091,
0.08714164048433304,
0.03176382556557655,
0.0025300176348537207,
-0.009963421151041985,
-0.0036958069540560246,
-0.10173020511865616,
0.09324359893798828,
0.11993226408958435,
0.040202632546424866,
-0.10152040421962738,
0.13605767488479614,
-0.004048851318657398,
0.014645369723439217,
0.007014582399278879,
0.00305221788585186,
-0.10858576744794846,
-0.002111211884766817,
-0.09339628368616104,
0.015084153972566128,
-0.03925526142120361,
-0.0024905679747462273,
-0.0019391068490222096,
-0.02219613641500473,
-0.049801550805568695,
0.04579644277691841,
-0.06660448759794235,
-0.08215635269880295,
-0.0003239915822632611,
0.07150579988956451,
-0.15914195775985718,
-0.022942114621400833,
0.04276850074529648,
-0.12863579392433167,
0.06914044916629791,
0.04246823117136955,
0.01943471096456051,
0.009624856524169445,
-0.09152389317750931,
0.001209698268212378,
0.001613958622328937,
0.0005778556223958731,
0.05740884691476822,
-0.16262546181678772,
0.0008124264422804117,
-0.04551098123192787,
0.002615832258015871,
0.02150883339345455,
0.008392006158828735,
-0.11376629769802094,
-0.01504139881581068,
-0.03450711816549301,
-0.03174857795238495,
-0.05328001081943512,
0.07414093613624573,
0.07199634611606598,
0.02880539558827877,
0.14493177831172943,
-0.07171192020177841,
0.03610225021839142,
-0.2041185200214386,
-0.030278896912932396,
-0.008530336432158947,
-0.018476303666830063,
-0.025134271010756493,
-0.02187497727572918,
0.10196150094270706,
-0.06596098095178604,
0.08032307773828506,
-0.024309707805514336,
0.12325911968946457,
0.04218631237745285,
-0.07870308309793472,
-0.040893323719501495,
0.03044978901743889,
0.14504876732826233,
0.047918982803821564,
-0.006682904902845621,
0.06545136123895645,
-0.013061265461146832,
0.06333481520414352,
0.10771813988685608,
0.12419530004262924,
0.15370041131973267,
0.007406105287373066,
0.08640225976705551,
0.011898793280124664,
-0.12388910353183746,
-0.11803624033927917,
0.09137294441461563,
-0.08915260434150696,
0.11486949026584625,
-0.04962601885199547,
0.12491772323846817,
0.0979025736451149,
-0.2064133584499359,
0.04829554632306099,
-0.08128480613231659,
-0.10605894029140472,
-0.11906344443559647,
-0.04931630194187164,
-0.09172988682985306,
-0.0875370129942894,
0.03507576510310173,
-0.10751897096633911,
0.08097919821739197,
0.11112567037343979,
0.03851965069770813,
0.03675089403986931,
0.11872091144323349,
-0.07081842422485352,
-0.01393628679215908,
0.09126061201095581,
0.031378328800201416,
0.009964450262486935,
-0.008259817957878113,
-0.05163348466157913,
0.029334625229239464,
-0.005212198942899704,
0.08161855489015579,
-0.031291164457798004,
0.034417521208524704,
0.04828977584838867,
0.00041940330993384123,
-0.06628508865833282,
0.016283486038446426,
0.004916419740766287,
0.03377674147486687,
0.0595950186252594,
0.07731670886278152,
0.015401982702314854,
-0.03734680265188217,
0.29678672552108765,
-0.08080452680587769,
-0.05438106879591942,
-0.15925058722496033,
0.178921639919281,
0.05804436653852463,
0.014519218355417252,
0.04000908136367798,
-0.12391050904989243,
-0.013653082773089409,
0.1411246359348297,
0.07950703799724579,
-0.06502137333154678,
-0.02502250112593174,
-0.021758433431386948,
-0.006685197353363037,
-0.038997579365968704,
0.07778181880712509,
0.05839858949184418,
-0.0019695337396115065,
-0.047483090311288834,
0.014640110544860363,
0.009408348239958286,
-0.0576104000210762,
-0.06971853971481323,
0.12177760154008865,
-0.0036274222657084465,
0.02190237306058407,
-0.04577277600765228,
0.0602002814412117,
0.032979726791381836,
-0.23708349466323853,
0.06706679612398148,
-0.15523114800453186,
-0.16372573375701904,
-0.013438553549349308,
0.052343033254146576,
-0.001929995371028781,
0.08830582350492477,
0.006626440677791834,
-0.01085693296045065,
0.1368589997291565,
0.010343610309064388,
-0.011295989155769348,
-0.1236049085855484,
0.05164994299411774,
-0.040605101734399796,
0.27537956833839417,
0.015355409123003483,
0.02601793222129345,
0.11305017024278641,
0.010793499648571014,
-0.12811103463172913,
0.04553103446960449,
0.09935763478279114,
-0.07323973625898361,
0.04617011174559593,
0.14113177359104156,
-0.04972450062632561,
0.11346836388111115,
0.07142475247383118,
-0.08343102037906647,
-0.001105052069760859,
-0.027985192835330963,
-0.012355981394648552,
-0.08791811019182205,
-0.002484644530341029,
-0.04486696049571037,
0.1293678879737854,
0.2124018520116806,
-0.03790104389190674,
0.006380737759172916,
-0.06566017866134644,
0.03477964550256729,
0.0007215380319394171,
0.07399818301200867,
-0.004329533316195011,
-0.17182661592960358,
0.07135357707738876,
0.01883336529135704,
0.050813984125852585,
-0.21929308772087097,
-0.09874171763658524,
0.06815077364444733,
-0.049372997134923935,
-0.039576273411512375,
0.14211665093898773,
0.04254379868507385,
0.023648733273148537,
-0.0469638854265213,
-0.13289934396743774,
-0.0061278617940843105,
0.1654149889945984,
-0.09947667270898819,
-0.06540396809577942
] |
null | null | transformers | Codellama 34b base model fine-tuned on the text chunk from the OpenAssistant-Guanaco dataset instead of Q&A pair, so it struggles to determine the end of the answer. recommend using a stop string like "### Human:" to prevent the model from talking to itself.
Prompt template:
```
### Human: {prompt}
### Assistant:
```
Run the model via text-generation-inference
One GPU:
```
sudo docker run --gpus all --shm-size 1g -p 5000:80 -v $PWD/models:/data ghcr.io/huggingface/text-generation-inference:latest --max-total-tokens 4096 --quantize awq --model-id mzbac/CodeLlama-34b-guanaco-awq
```
Two GPUs:
```
docker run --gpus all --shm-size 1g -p 5000:80 -v $PWD/models:/data ghcr.io/huggingface/text-generation-inference:latest --max-total-tokens 4096 --max-input-length 4000 --max-batch-prefill-tokens 4096 --quantize awq --num-shard 2 --model-id mzbac/CodeLlama-34b-guanaco-awq
```
Query the mode via curl
```
curl 127.0.0.1:8001/generate \
-X POST \
-d '{"inputs":"### Human: 给我准备一个去日本旅行的计划\n### Assistant:", "parameters":{"max_new_tokens":2048, "stop": [
"### Human:"
]}}' \
-H 'Content-Type: application/json'
``` | {"license": "mit"} | text-generation | mzbac/CodeLlama-34b-guanaco-awq | [
"transformers",
"safetensors",
"llama",
"text-generation",
"license:mit",
"autotrain_compatible",
"endpoints_compatible",
"text-generation-inference",
"4-bit",
"region:us"
] | 2023-11-11T06:19:40+00:00 | [] | [] | TAGS
#transformers #safetensors #llama #text-generation #license-mit #autotrain_compatible #endpoints_compatible #text-generation-inference #4-bit #region-us
| Codellama 34b base model fine-tuned on the text chunk from the OpenAssistant-Guanaco dataset instead of Q&A pair, so it struggles to determine the end of the answer. recommend using a stop string like "### Human:" to prevent the model from talking to itself.
Prompt template:
Run the model via text-generation-inference
One GPU:
Two GPUs:
Query the mode via curl
| [
"### Human:\" to prevent the model from talking to itself.\n\nPrompt template: \n\nRun the model via text-generation-inference\n\nOne GPU:\n\n\n\nTwo GPUs:\n\n\n\nQuery the mode via curl"
] | [
"TAGS\n#transformers #safetensors #llama #text-generation #license-mit #autotrain_compatible #endpoints_compatible #text-generation-inference #4-bit #region-us \n",
"### Human:\" to prevent the model from talking to itself.\n\nPrompt template: \n\nRun the model via text-generation-inference\n\nOne GPU:\n\n\n\nTwo GPUs:\n\n\n\nQuery the mode via curl"
] | [
55,
45
] | [
"passage: TAGS\n#transformers #safetensors #llama #text-generation #license-mit #autotrain_compatible #endpoints_compatible #text-generation-inference #4-bit #region-us \n### Human:\" to prevent the model from talking to itself.\n\nPrompt template: \n\nRun the model via text-generation-inference\n\nOne GPU:\n\n\n\nTwo GPUs:\n\n\n\nQuery the mode via curl"
] | [
-0.043849486857652664,
0.004377859644591808,
-0.0007212920463643968,
0.09628093987703323,
0.1577395498752594,
0.056415751576423645,
0.23324067890644073,
0.07738936692476273,
0.10672947019338608,
0.022664060816168785,
0.14664873480796814,
0.09788566082715988,
0.04064204543828964,
0.039566680788993835,
0.047939810901880264,
-0.16907882690429688,
0.11398876458406448,
0.005827473942190409,
0.05965009704232216,
0.07794715464115143,
0.013253521174192429,
-0.056365709751844406,
0.17488934099674225,
-0.03250490128993988,
-0.13980652391910553,
-0.06666843593120575,
0.07279668748378754,
-0.025410668924450874,
0.14047139883041382,
0.13076072931289673,
-0.0010147130815312266,
0.03770674392580986,
0.041512541472911835,
-0.15624918043613434,
0.027371583506464958,
0.06335707753896713,
-0.0749560222029686,
0.08083473891019821,
0.052020397037267685,
-0.017801664769649506,
0.1732952892780304,
0.06290095299482346,
0.025276869535446167,
0.06861858814954758,
-0.11207818984985352,
-0.06548655778169632,
0.012764577753841877,
-0.006640252657234669,
0.11209706962108612,
0.06473105400800705,
0.0018565356731414795,
0.1341017633676529,
-0.034206558018922806,
0.07754811644554138,
0.027759194374084473,
-0.28989511728286743,
-0.03403535857796669,
0.14423519372940063,
0.0741131454706192,
0.03188013657927513,
-0.0000015935645478748484,
0.09308571368455887,
-0.010781110264360905,
0.000043892803660128266,
-0.042323630303144455,
-0.04277849942445755,
0.03672010079026222,
-0.016537480056285858,
-0.04501257836818695,
-0.014560944400727749,
0.13593126833438873,
-0.019928772002458572,
0.04357137158513069,
-0.07266867905855179,
-0.12281015515327454,
0.03191723674535751,
0.028046585619449615,
0.03757217898964882,
-0.05696461349725723,
0.05292918160557747,
0.0051244208589196205,
-0.09493570029735565,
-0.08724213391542435,
-0.1770567148923874,
-0.15636055171489716,
0.15550431609153748,
0.05171998590230942,
0.09309626370668411,
-0.09054868668317795,
0.13823094964027405,
0.05216805636882782,
-0.014396862126886845,
-0.03634018450975418,
-0.08267946541309357,
-0.09865088015794754,
0.062338873744010925,
-0.06826020032167435,
0.007580841425806284,
0.11682819575071335,
0.09242792427539825,
0.059106290340423584,
0.038636211305856705,
0.039758067578077316,
0.0240031611174345,
0.004639768041670322,
-0.07150895893573761,
-0.037302982062101364,
-0.023555777966976166,
0.04791884869337082,
0.04615596681833267,
0.08675234764814377,
-0.09871553629636765,
-0.12838312983512878,
-0.03095410019159317,
-0.009335511364042759,
0.051243964582681656,
0.09449724107980728,
0.11565229296684265,
-0.0011393259046599269,
0.0006863497546873987,
0.08806663006544113,
-0.05026254802942276,
0.007108747027814388,
0.032935574650764465,
0.04221975430846214,
-0.035399727523326874,
-0.007564905099570751,
-0.02654959075152874,
-0.04594669118523598,
-0.1593993455171585,
-0.05676928535103798,
-0.055018480867147446,
-0.11183159053325653,
-0.017873620614409447,
0.007746525574475527,
-0.04668547585606575,
0.002995067974552512,
-0.11739753931760788,
-0.19927725195884705,
0.006885997019708157,
0.10520311444997787,
-0.0982038602232933,
-0.023631274700164795,
-0.040921084582805634,
0.04798094183206558,
0.05348753184080124,
-0.04596257954835892,
0.04711109772324562,
-0.04288066178560257,
0.06966784596443176,
0.06055247411131859,
0.12031936645507812,
-0.1705641895532608,
0.010552028194069862,
-0.04980669170618057,
0.04039791598916054,
0.03513871505856514,
0.07605651766061783,
0.0004578341613523662,
0.01921137049794197,
0.021021898835897446,
0.05763743072748184,
-0.05347849801182747,
0.04538707062602043,
0.02054411917924881,
0.10501500219106674,
-0.06265193969011307,
-0.02557055465877056,
0.2547934353351593,
-0.12195119261741638,
-0.19250014424324036,
0.1648838371038437,
-0.02868693880736828,
0.00210201321169734,
0.09858285635709763,
0.08044613897800446,
0.017858760431408882,
-0.0413326695561409,
0.07851501554250717,
0.11121945828199387,
-0.1311735063791275,
-0.06694728136062622,
0.07885543256998062,
0.0443737730383873,
-0.15687140822410583,
0.031298816204071045,
0.011681473813951015,
0.06167611852288246,
-0.008532939478754997,
-0.06135448068380356,
-0.04168158024549484,
-0.08163612335920334,
-0.0024916306138038635,
-0.0340958833694458,
0.04290340095758438,
-0.06006905063986778,
-0.03291407972574234,
-0.05920982360839844,
0.09839688986539841,
-0.08349151909351349,
0.00684993015602231,
-0.11798390001058578,
0.09166333079338074,
-0.07758507132530212,
0.09121175855398178,
-0.09653569757938385,
-0.14735743403434753,
-0.005224196240305901,
0.02039114385843277,
0.06017567589879036,
0.06270217150449753,
0.05262964218854904,
0.11585298180580139,
0.013076559640467167,
0.01886262185871601,
0.14766234159469604,
-0.007891646586358547,
-0.09153396636247635,
-0.11301244050264359,
0.046169064939022064,
-0.058719947934150696,
0.10779393464326859,
-0.0914899930357933,
0.0364486500620842,
0.03187114745378494,
-0.008467520587146282,
-0.022570041939616203,
0.025701848790049553,
-0.06061228737235069,
-0.04785390943288803,
-0.09107327461242676,
0.006692416500300169,
0.12633931636810303,
-0.020509956404566765,
-0.0565161369740963,
0.12279046326875687,
-0.20937584340572357,
0.15579885244369507,
0.18843671679496765,
-0.09323228150606155,
0.05194008722901344,
-0.06126248463988304,
0.043028391897678375,
-0.031245263293385506,
0.03807637095451355,
-0.07710884511470795,
0.09499848634004593,
-0.004492519423365593,
0.08260343968868256,
-0.03728830814361572,
0.033143822103738785,
0.032063279300928116,
-0.045890793204307556,
-0.014037947170436382,
0.023377753794193268,
0.16711251437664032,
-0.06074061617255211,
0.09177334606647491,
0.018298374488949776,
-0.008963278494775295,
0.12935025990009308,
0.06110513210296631,
-0.006358696147799492,
0.015294225886464119,
0.01980508118867874,
0.006332406774163246,
0.06633586436510086,
-0.1638062745332718,
-0.05112692341208458,
0.06983432918787003,
-0.008445976302027702,
0.06469288468360901,
-0.1984601616859436,
0.0013632623013108969,
-0.028463730588555336,
-0.06151046231389046,
0.01692676916718483,
0.02694476768374443,
-0.0849662721157074,
0.12226700782775879,
-0.03762173280119896,
-0.0645698830485344,
0.12052018195390701,
-0.03004850260913372,
-0.09897200018167496,
0.146078959107399,
-0.05513453856110573,
-0.23012951016426086,
-0.22848480939865112,
-0.13365305960178375,
-0.15630602836608887,
0.1334722638130188,
0.042459744960069656,
0.006999867968261242,
-0.03965913876891136,
-0.06430819630622864,
0.03820793330669403,
0.10261723399162292,
-0.0491940937936306,
0.03340114280581474,
0.022108903154730797,
-0.0415835939347744,
-0.08572615683078766,
-0.007155377883464098,
0.03994208574295044,
-0.12853655219078064,
0.14173847436904907,
-0.08048910647630692,
0.0843692496418953,
0.1373794972896576,
0.04423707723617554,
-0.004113942850381136,
0.007470197044312954,
0.14975544810295105,
-0.03866332396864891,
0.02864810824394226,
0.1925806850194931,
0.058952607214450836,
0.024457667022943497,
0.09459924697875977,
-0.004072380252182484,
-0.12020742148160934,
0.05515298619866371,
-0.023677358403801918,
-0.11800971627235413,
-0.07164005935192108,
-0.03981540724635124,
-0.036866553127765656,
0.053741857409477234,
0.040162231773138046,
0.029067056253552437,
-0.004411604721099138,
0.17794324457645416,
-0.05440279468894005,
0.05910712480545044,
0.08763688057661057,
0.019391652196645737,
0.12579533457756042,
-0.0655866339802742,
0.11835575103759766,
-0.09459099173545837,
-0.058964312076568604,
0.11822787672281265,
0.14605127274990082,
0.12466421723365784,
0.030532894656062126,
0.1533590853214264,
0.012663586065173149,
0.030947165563702583,
0.057942308485507965,
0.14774495363235474,
0.005778482183814049,
0.0006244692485779524,
-0.043993353843688965,
-0.008579704910516739,
-0.07834385335445404,
0.06881359219551086,
-0.05794563516974449,
-0.12194780260324478,
-0.013897062279284,
0.11369405686855316,
0.07552772015333176,
0.09377525746822357,
0.02169622853398323,
-0.2853720784187317,
-0.027570409700274467,
0.06117120757699013,
0.024484770372509956,
-0.1366773247718811,
0.08279703557491302,
0.09726966917514801,
-0.07011890411376953,
-0.014909937046468258,
-0.03797662630677223,
0.057191379368305206,
-0.06401867419481277,
0.04074579477310181,
-0.06332980841398239,
0.028645293787121773,
0.014604921452701092,
0.16839076578617096,
-0.27040791511535645,
0.09220456331968307,
-0.023093311116099358,
0.018054071813821793,
-0.12195932120084763,
0.006824550684541464,
0.027988318353891373,
0.14644521474838257,
0.05895623937249184,
-0.006700563244521618,
-0.05230780690908432,
-0.07234711945056915,
-0.10425079613924026,
0.08026444166898727,
0.029814641922712326,
-0.018621688708662987,
0.02681499905884266,
-0.06178374961018562,
0.022953499108552933,
-0.028088483959436417,
0.032039303332567215,
0.017009567469358444,
-0.18252037465572357,
0.011223788373172283,
0.07821377366781235,
0.041113656014204025,
-0.041612718254327774,
0.0020256300922483206,
-0.14337952435016632,
0.043614745140075684,
-0.07934809476137161,
-0.028553754091262817,
-0.05288199335336685,
-0.11735618859529495,
-0.02824220433831215,
-0.07490518689155579,
-0.023171942681074142,
-0.08226874470710754,
0.048515889793634415,
-0.04767817258834839,
-0.15874433517456055,
0.11995625495910645,
-0.08430438488721848,
-0.12879246473312378,
-0.04186229035258293,
0.04915517196059227,
-0.03918379172682762,
0.003031790256500244,
0.02926301583647728,
-0.010005325078964233,
-0.1414305567741394,
-0.10874072462320328,
0.012255001813173294,
0.10835322737693787,
-0.037980817258358,
-0.014157582074403763,
-0.015640074387192726,
-0.07491303980350494,
0.02337317354977131,
-0.018558301031589508,
0.15995651483535767,
0.2512893080711365,
-0.01595882512629032,
0.09893445670604706,
0.2722550928592682,
-0.02441123127937317,
-0.3344286382198334,
-0.10842855274677277,
-0.14779441058635712,
0.005188778042793274,
-0.062280502170324326,
-0.15934258699417114,
0.11400534212589264,
0.051532890647649765,
-0.07538942992687225,
0.13810878992080688,
-0.13288664817810059,
-0.10303403437137604,
0.10483377426862717,
0.15580040216445923,
0.31505444645881653,
-0.14939753711223602,
-0.028270365670323372,
-0.1671341508626938,
-0.23491491377353668,
0.20097729563713074,
-0.18904225528240204,
0.13899873197078705,
-0.015251951292157173,
0.00804943311959505,
-0.026506565511226654,
-0.06487224996089935,
0.14943096041679382,
-0.044961366802453995,
0.09985097497701645,
-0.12000914663076401,
0.035084858536720276,
0.10021801292896271,
-0.031200220808386803,
0.10308264940977097,
-0.16567131876945496,
0.016207048669457436,
-0.021254725754261017,
-0.07500191032886505,
-0.06873545795679092,
-0.017980806529521942,
0.025287743657827377,
-0.08251596242189407,
-0.004408517852425575,
-0.05100313946604729,
-0.0148056885227561,
0.016808506101369858,
-0.011794369667768478,
-0.05650734901428223,
-0.05373255908489227,
0.1764303594827652,
0.11455387622117996,
-0.17345358431339264,
0.07249262928962708,
-0.06741419434547424,
-0.05628065764904022,
0.08998166024684906,
-0.06685177236795425,
0.04094942286610603,
0.04186900332570076,
-0.07764887064695358,
0.06025375798344612,
0.0862111747264862,
-0.008605290204286575,
0.04700479656457901,
0.11563847959041595,
-0.14031758904457092,
-0.1411597728729248,
-0.0202461089938879,
-0.06602136790752411,
-0.0011323837097734213,
0.09857427328824997,
0.10965211689472198,
0.05893925577402115,
0.0002755041350610554,
-0.03160373866558075,
0.033690497279167175,
-0.0842527523636818,
0.057150546461343765,
-0.025878529995679855,
0.04415635019540787,
-0.10735355317592621,
0.0618399903178215,
-0.010016769170761108,
-0.04419294744729996,
0.005019862670451403,
0.06824125349521637,
-0.11955389380455017,
-0.1541174352169037,
-0.11315589398145676,
0.11283326148986816,
-0.14493484795093536,
-0.100129634141922,
-0.06393839418888092,
-0.1400575339794159,
-0.0011083366116508842,
0.012549350038170815,
0.0797317698597908,
0.07303400337696075,
0.025636108592152596,
-0.0004634229699149728,
-0.0771099328994751,
0.04468270763754845,
-0.09270506352186203,
0.0482671856880188,
-0.0966198593378067,
0.05051730200648308,
-0.0023324121721088886,
0.07231110334396362,
-0.10193920880556107,
-0.05254308506846428,
-0.14791855216026306,
0.02633502706885338,
-0.22605159878730774,
-0.01909487508237362,
-0.11787737905979156,
0.006605863571166992,
0.04792889207601547,
0.02805311791598797,
0.004689229652285576,
-0.011602485552430153,
-0.07729124277830124,
0.0181586891412735,
-0.03927738219499588,
0.031780973076820374,
-0.08587168157100677,
0.023146329447627068,
0.0625450611114502,
-0.04680545628070831,
0.1358967125415802,
0.030270496383309364,
-0.07407665997743607,
0.02800787426531315,
-0.18179625272750854,
0.007302046287804842,
-0.020530829206109047,
0.060374803841114044,
0.0069227516651153564,
-0.010792819783091545,
0.009186295792460442,
0.0631280392408371,
0.06128038465976715,
0.05492331460118294,
0.10867080092430115,
-0.03081631287932396,
0.08905620127916336,
-0.06683197617530823,
-0.12388796359300613,
-0.01689258962869644,
-0.02109108492732048,
0.0022367846686393023,
0.02335016243159771,
0.1511887162923813,
-0.04818803444504738,
-0.03790643438696861,
-0.0920187383890152,
0.04962422698736191,
0.0332040898501873,
-0.08586923778057098,
-0.02722931280732155,
-0.09329667687416077,
0.027268528938293457,
0.003917674534022808,
0.289961040019989,
0.019452713429927826,
-0.06485240161418915,
-0.04258902370929718,
0.05465096980333328,
0.05074983462691307,
-0.0069715348072350025,
0.19751378893852234,
0.06253533810377121,
0.035259637981653214,
-0.061934683471918106,
0.06821338832378387,
0.06280839443206787,
0.07457255572080612,
0.031618066132068634,
-0.031847648322582245,
-0.06196684017777443,
0.14187143743038177,
0.07206875085830688,
-0.00435128016397357,
-0.030447397381067276,
-0.054443083703517914,
-0.15238669514656067,
0.002000586362555623,
-0.07237618416547775,
0.0766371414065361,
0.15350252389907837,
-0.04782368615269661,
-0.044030722230672836,
-0.06388166546821594,
-0.08236626535654068,
-0.14094147086143494,
-0.2826968729496002,
-0.07603830099105835,
-0.1113685816526413,
0.022066740319132805,
-0.015359297394752502,
-0.04145055264234543,
0.12981732189655304,
0.018476204946637154,
-0.07276228070259094,
0.1858188509941101,
-0.05572915077209473,
0.06580068916082382,
-0.06545320153236389,
-0.024843355640769005,
-0.017438845708966255,
0.07088464498519897,
-0.13651978969573975,
-0.011248311027884483,
-0.010714447125792503,
0.054208848625421524,
0.022994766011834145,
-0.008622483350336552,
0.085797980427742,
-0.035639744251966476,
-0.044748518615961075,
-0.054677948355674744,
0.03119686245918274,
-0.03306370601058006,
0.15030604600906372,
0.03773774206638336,
-0.022792844101786613,
0.04233301058411598,
0.10785603523254395,
-0.061550140380859375,
-0.12991343438625336,
-0.08647405356168747,
0.21857105195522308,
-0.06946919858455658,
0.05941777676343918,
-0.018862558528780937,
-0.04462721198797226,
-0.024436043575406075,
0.31076323986053467,
0.29331305623054504,
-0.1760479062795639,
-0.013431442901492119,
-0.04048597440123558,
0.026993611827492714,
0.0006719377706758678,
0.1935650259256363,
0.052813079208135605,
0.15164244174957275,
-0.04746391996741295,
0.0047518303617835045,
0.004473864566534758,
0.017253536731004715,
-0.09431087225675583,
-0.050116684287786484,
-0.008386913686990738,
-0.0013308865018188953,
-0.00918443314731121,
0.008119619451463223,
-0.11318202316761017,
0.13713687658309937,
-0.010090767405927181,
0.039672382175922394,
0.005011541303247213,
0.01124747097492218,
0.05333896353840828,
-0.04259307682514191,
0.06117463484406471,
-0.06638102978467941,
0.07316341996192932,
0.025400541722774506,
-0.008158931508660316,
-0.23083990812301636,
0.062047604471445084,
0.044381119310855865,
-0.004391382448375225,
0.16521801054477692,
-0.011627987027168274,
0.0816882997751236,
0.06908665597438812,
-0.005375904031097889,
-0.10369748622179031,
0.2047506421804428,
-0.0586702823638916,
-0.06870178133249283,
0.0318300761282444,
-0.01579987443983555,
-0.0037359693087637424,
-0.016436200588941574,
0.032116394490003586,
0.03152000531554222,
0.03783680871129036,
0.014950767159461975,
0.007006007246673107,
-0.0671272724866867,
0.0364132784307003,
-0.09890025109052658,
0.1336858868598938,
0.09211169183254242,
0.021166967228055,
-0.029927870258688927,
-0.023929527029395103,
0.05602540448307991,
-0.06453932821750641,
-0.045710381120443344,
-0.07866386324167252,
-0.17814594507217407,
-0.02379603497684002,
0.03840916231274605,
0.03135620057582855,
-0.3065313994884491,
-0.02182268351316452,
-0.14163851737976074,
0.00013580489030573517,
-0.08843160420656204,
0.08263318240642548,
0.20179906487464905,
0.025670260190963745,
-0.06189439445734024,
-0.1742049604654312,
-0.014057050459086895,
0.08783411234617233,
-0.11223446577787399,
-0.18076592683792114
] |
null | null | transformers |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
should probably proofread and complete it, then remove this comment. -->
# wav2vec2-base-speech-recoginition
This model is a fine-tuned version of [facebook/wav2vec2-base](https://huggingface.co/facebook/wav2vec2-base) on the superb dataset.
It achieves the following results on the evaluation set:
- Loss: 4.0532
- Wer: 0.9985
## Model description
More information needed
## Intended uses & limitations
More information needed
## Training and evaluation data
More information needed
## Training procedure
### Training hyperparameters
The following hyperparameters were used during training:
- learning_rate: 0.002
- train_batch_size: 4
- eval_batch_size: 4
- seed: 42
- gradient_accumulation_steps: 2
- total_train_batch_size: 8
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
- lr_scheduler_type: linear
- lr_scheduler_warmup_steps: 1000
- num_epochs: 2
- mixed_precision_training: Native AMP
### Training results
| Training Loss | Epoch | Step | Validation Loss | Wer |
|:-------------:|:-----:|:----:|:---------------:|:------:|
| 2.9304 | 1.85 | 500 | 4.0532 | 0.9985 |
### Framework versions
- Transformers 4.35.0
- Pytorch 2.0.0
- Datasets 2.14.6
- Tokenizers 0.14.1
| {"license": "apache-2.0", "tags": ["generated_from_trainer"], "datasets": ["superb"], "metrics": ["wer"], "base_model": "facebook/wav2vec2-base", "model-index": [{"name": "wav2vec2-base-speech-recoginition", "results": [{"task": {"type": "automatic-speech-recognition", "name": "Automatic Speech Recognition"}, "dataset": {"name": "superb", "type": "superb", "config": "asr", "split": "validation", "args": "asr"}, "metrics": [{"type": "wer", "value": 0.9984947315604616, "name": "Wer"}]}]}]} | automatic-speech-recognition | Puyush/wav2vec2-base-speech-recoginition | [
"transformers",
"tensorboard",
"safetensors",
"wav2vec2",
"automatic-speech-recognition",
"generated_from_trainer",
"dataset:superb",
"base_model:facebook/wav2vec2-base",
"license:apache-2.0",
"model-index",
"endpoints_compatible",
"has_space",
"region:us"
] | 2023-11-11T06:20:06+00:00 | [] | [] | TAGS
#transformers #tensorboard #safetensors #wav2vec2 #automatic-speech-recognition #generated_from_trainer #dataset-superb #base_model-facebook/wav2vec2-base #license-apache-2.0 #model-index #endpoints_compatible #has_space #region-us
| wav2vec2-base-speech-recoginition
=================================
This model is a fine-tuned version of facebook/wav2vec2-base on the superb dataset.
It achieves the following results on the evaluation set:
* Loss: 4.0532
* Wer: 0.9985
Model description
-----------------
More information needed
Intended uses & limitations
---------------------------
More information needed
Training and evaluation data
----------------------------
More information needed
Training procedure
------------------
### Training hyperparameters
The following hyperparameters were used during training:
* learning\_rate: 0.002
* train\_batch\_size: 4
* eval\_batch\_size: 4
* seed: 42
* gradient\_accumulation\_steps: 2
* total\_train\_batch\_size: 8
* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
* lr\_scheduler\_type: linear
* lr\_scheduler\_warmup\_steps: 1000
* num\_epochs: 2
* mixed\_precision\_training: Native AMP
### Training results
### Framework versions
* Transformers 4.35.0
* Pytorch 2.0.0
* Datasets 2.14.6
* Tokenizers 0.14.1
| [
"### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 0.002\n* train\\_batch\\_size: 4\n* eval\\_batch\\_size: 4\n* seed: 42\n* gradient\\_accumulation\\_steps: 2\n* total\\_train\\_batch\\_size: 8\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* lr\\_scheduler\\_warmup\\_steps: 1000\n* num\\_epochs: 2\n* mixed\\_precision\\_training: Native AMP",
"### Training results",
"### Framework versions\n\n\n* Transformers 4.35.0\n* Pytorch 2.0.0\n* Datasets 2.14.6\n* Tokenizers 0.14.1"
] | [
"TAGS\n#transformers #tensorboard #safetensors #wav2vec2 #automatic-speech-recognition #generated_from_trainer #dataset-superb #base_model-facebook/wav2vec2-base #license-apache-2.0 #model-index #endpoints_compatible #has_space #region-us \n",
"### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 0.002\n* train\\_batch\\_size: 4\n* eval\\_batch\\_size: 4\n* seed: 42\n* gradient\\_accumulation\\_steps: 2\n* total\\_train\\_batch\\_size: 8\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* lr\\_scheduler\\_warmup\\_steps: 1000\n* num\\_epochs: 2\n* mixed\\_precision\\_training: Native AMP",
"### Training results",
"### Framework versions\n\n\n* Transformers 4.35.0\n* Pytorch 2.0.0\n* Datasets 2.14.6\n* Tokenizers 0.14.1"
] | [
84,
158,
4,
30
] | [
"passage: TAGS\n#transformers #tensorboard #safetensors #wav2vec2 #automatic-speech-recognition #generated_from_trainer #dataset-superb #base_model-facebook/wav2vec2-base #license-apache-2.0 #model-index #endpoints_compatible #has_space #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 0.002\n* train\\_batch\\_size: 4\n* eval\\_batch\\_size: 4\n* seed: 42\n* gradient\\_accumulation\\_steps: 2\n* total\\_train\\_batch\\_size: 8\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* lr\\_scheduler\\_warmup\\_steps: 1000\n* num\\_epochs: 2\n* mixed\\_precision\\_training: Native AMP### Training results### Framework versions\n\n\n* Transformers 4.35.0\n* Pytorch 2.0.0\n* Datasets 2.14.6\n* Tokenizers 0.14.1"
] | [
-0.10106117278337479,
0.14966249465942383,
-0.0034485734067857265,
0.048144616186618805,
0.08685824275016785,
0.008230773732066154,
0.1013580709695816,
0.15072987973690033,
-0.028309328481554985,
0.14146952331066132,
0.12002905458211899,
0.08836085349321365,
0.07368730753660202,
0.1753636598587036,
-0.013157813809812069,
-0.2774444818496704,
0.04072824865579605,
-0.024080608040094376,
-0.10742238163948059,
0.10660189390182495,
0.06857821345329285,
-0.10968238860368729,
0.049170177429914474,
0.0013028018875047565,
-0.10090681910514832,
-0.012273007072508335,
-0.03239757940173149,
-0.07632710784673691,
0.09051944315433502,
0.019061019644141197,
0.043933942914009094,
0.04477443918585777,
0.07948168367147446,
-0.27963611483573914,
0.004545607604086399,
0.06216920539736748,
0.020629532635211945,
0.06601532548666,
0.09181500226259232,
-0.008926269598305225,
0.1179356500506401,
-0.1032874584197998,
0.08583678305149078,
0.046079691499471664,
-0.10389713197946548,
-0.29949280619621277,
-0.07656876742839813,
0.06421985477209091,
0.1435672640800476,
0.05988183990120888,
-0.03781360015273094,
0.06386382132768631,
-0.07296428084373474,
0.05931437760591507,
0.23262281715869904,
-0.28872811794281006,
-0.0617450550198555,
-0.008953279815614223,
0.050377413630485535,
0.04842563346028328,
-0.11278735101222992,
-0.005212004762142897,
0.019861774519085884,
0.007248655427247286,
0.12468387186527252,
0.013245136477053165,
0.09793680161237717,
-0.0014204232720658183,
-0.1507706344127655,
-0.04401255398988724,
0.12168517708778381,
0.10264753550291061,
-0.01773209124803543,
-0.14077885448932648,
-0.032315269112586975,
-0.18192945420742035,
-0.053331755101680756,
-0.031158193945884705,
0.030510490760207176,
-0.03652442246675491,
-0.096493199467659,
0.032355960458517075,
-0.04496879503130913,
-0.0617988146841526,
0.0432729609310627,
0.13707952201366425,
0.05486493930220604,
-0.03539520502090454,
0.03043634444475174,
0.08364573866128922,
0.029621686786413193,
-0.15794891119003296,
-0.007341342978179455,
0.026540473103523254,
-0.1009921133518219,
-0.0071083782240748405,
-0.009565720334649086,
0.039835233241319656,
0.05102957412600517,
0.17994102835655212,
0.006391620263457298,
0.10063823312520981,
0.04222525283694267,
0.01933460868895054,
-0.08245858550071716,
0.1435549110174179,
-0.058056946843862534,
-0.11262941360473633,
-0.04416283592581749,
0.11623281240463257,
0.02234315685927868,
-0.018279464915394783,
-0.07091423124074936,
0.04732828214764595,
0.10826870799064636,
0.05054255947470665,
0.0017980843549594283,
0.021511228755116463,
-0.06825044751167297,
-0.016481606289744377,
0.00833833497017622,
-0.10437554866075516,
0.06413475424051285,
0.034995466470718384,
-0.03903213143348694,
-0.0078743239864707,
-0.021567782387137413,
0.020344259217381477,
-0.011646131984889507,
0.10325228422880173,
-0.06844404339790344,
-0.02690831944346428,
-0.048614367842674255,
-0.07170983403921127,
0.03707792982459068,
-0.06282736361026764,
-0.004053100477904081,
-0.0750264823436737,
-0.06448184698820114,
-0.053948886692523956,
0.06133873388171196,
-0.05953603610396385,
-0.07793980836868286,
-0.07821030169725418,
-0.06815534085035324,
0.061803776770830154,
-0.014304368756711483,
0.10559013485908508,
-0.061888016760349274,
0.07962095737457275,
0.010497481562197208,
0.09050476551055908,
0.08311296254396439,
0.050869960337877274,
-0.046282026916742325,
0.06013386696577072,
-0.17628343403339386,
0.07554778456687927,
-0.10227792710065842,
0.056664083153009415,
-0.16062623262405396,
-0.084615059196949,
-0.03361140564084053,
-0.006992935668677092,
0.07816372066736221,
0.12582775950431824,
-0.17382484674453735,
-0.10264188051223755,
0.18937627971172333,
-0.07606784254312515,
-0.10843951255083084,
0.1370304673910141,
-0.004808519966900349,
-0.04400652274489403,
0.029941733926534653,
0.20809943974018097,
0.07637239992618561,
-0.08632539212703705,
-0.016736669465899467,
-0.06686742603778839,
0.10139444470405579,
0.03046923503279686,
0.10904515534639359,
-0.05803840979933739,
0.024015838280320168,
0.005206991918385029,
-0.03145423159003258,
0.04180218651890755,
-0.06735612452030182,
-0.09152400493621826,
-0.025626078248023987,
-0.07111328840255737,
0.027293378487229347,
0.03740629553794861,
0.01716228947043419,
-0.09762169420719147,
-0.14651034772396088,
-0.021321693435311317,
0.09596037119626999,
-0.09627833217382431,
0.030389538034796715,
-0.07937535643577576,
0.08687375485897064,
-0.029872877523303032,
0.006624929141253233,
-0.12759552896022797,
-0.01045950036495924,
0.04489739239215851,
-0.09429528564214706,
0.008475309237837791,
-0.048863839358091354,
0.06880831718444824,
0.04548956826329231,
-0.04681619629263878,
-0.07552450895309448,
-0.044718608260154724,
0.016875654458999634,
-0.06813650578260422,
-0.2382974475622177,
-0.053153347223997116,
-0.033927325159311295,
0.14341098070144653,
-0.2126050442457199,
0.010114134289324284,
0.03720318153500557,
0.1345696747303009,
0.04169958829879761,
-0.06451408565044403,
-0.008764375001192093,
0.05418497696518898,
-0.019203804433345795,
-0.08257012069225311,
0.03536233678460121,
-0.011042307130992413,
-0.11428926140069962,
-0.004637228325009346,
-0.14051160216331482,
0.11408331245183945,
0.10934504866600037,
0.0556659922003746,
-0.08230607956647873,
-0.04603482037782669,
-0.05607734993100166,
-0.043465014547109604,
-0.03877012059092522,
0.0065790400840342045,
0.1541270762681961,
0.026064522564411163,
0.08342298865318298,
-0.0716482624411583,
-0.05168497562408447,
0.050644755363464355,
0.007170283701270819,
-0.039032403379678726,
0.13505150377750397,
0.07819909602403641,
-0.06337916851043701,
0.11277097463607788,
0.15388056635856628,
-0.033483751118183136,
0.10492867231369019,
-0.06221933662891388,
-0.08655324578285217,
-0.05177580192685127,
0.02702128328382969,
0.03181147947907448,
0.11340630054473877,
-0.14876510202884674,
-0.014807880856096745,
0.013130768202245235,
0.02024425007402897,
0.003281692275777459,
-0.16305376589298248,
-0.0026684249751269817,
0.04255945608019829,
-0.06430380791425705,
0.016439523547887802,
-0.013912966474890709,
-0.018755896016955376,
0.08592439442873001,
0.030247153714299202,
-0.06511908769607544,
-0.014268985949456692,
-0.01615135557949543,
-0.08648454397916794,
0.17215369641780853,
-0.0918160006403923,
-0.1428750902414322,
-0.09184549003839493,
0.0005950145423412323,
-0.0205847080796957,
-0.015111329965293407,
0.05554712936282158,
-0.10328833758831024,
-0.04771207273006439,
-0.08794284611940384,
0.003209622111171484,
-0.03724745288491249,
0.05132884904742241,
0.036705777049064636,
0.004190858453512192,
0.06746388226747513,
-0.07222723215818405,
0.0016090893186628819,
-0.010299286805093288,
-0.010180070996284485,
0.0072630601935088634,
0.045131418853998184,
0.10416606068611145,
0.15557467937469482,
0.046688951551914215,
0.04194187372922897,
-0.030618859454989433,
0.1716611534357071,
-0.10722160339355469,
0.012880322523415089,
0.08170396834611893,
0.01510313805192709,
0.05655701085925102,
0.16449043154716492,
0.04174350947141647,
-0.09436465799808502,
0.011232564225792885,
0.036963820457458496,
-0.018919991329312325,
-0.19095051288604736,
-0.038340892642736435,
-0.05325256660580635,
-0.022947490215301514,
0.1429482102394104,
0.04489303380250931,
-0.022961875423789024,
0.03439012169837952,
-0.0005136964027769864,
-0.018459247425198555,
0.013831455260515213,
0.08114627748727798,
0.06458590179681778,
0.05031523481011391,
0.11440572142601013,
-0.015939129516482353,
-0.03692973032593727,
0.03315418213605881,
-0.008939728140830994,
0.2280903458595276,
0.033885642886161804,
0.13889473676681519,
0.05098561570048332,
0.16410352289676666,
0.012464780360460281,
0.03094775415956974,
0.02513713203370571,
-0.020244890823960304,
0.011352737434208393,
-0.06021905690431595,
-0.013254810124635696,
0.061976369470357895,
0.09820613265037537,
0.015993915498256683,
-0.11417634785175323,
0.011274105869233608,
0.047324810177087784,
0.3039500117301941,
0.10450085252523422,
-0.29383474588394165,
-0.06012539938092232,
0.02828099951148033,
-0.07901354134082794,
-0.019306087866425514,
0.04639236629009247,
0.10840247571468353,
-0.07302051782608032,
0.0850488618016243,
-0.06037987768650055,
0.073240727186203,
-0.06776153296232224,
0.0007240109844133258,
0.053390514105558395,
0.07333486527204514,
-0.0015087866922840476,
0.045862827450037,
-0.2334360033273697,
0.26721063256263733,
-0.01040057186037302,
0.06534437090158463,
-0.04756266623735428,
0.031758833676576614,
0.023432224988937378,
-0.033860474824905396,
0.11808790266513824,
-0.005955374334007502,
-0.1660226434469223,
-0.1665421426296234,
-0.1107470691204071,
0.017781682312488556,
0.12260551005601883,
-0.08768550306558609,
0.11034314334392548,
-0.02359057404100895,
-0.03434662148356438,
0.04322722926735878,
-0.014955769293010235,
-0.11025919765233994,
-0.12130126357078552,
0.012406669557094574,
0.023614831268787384,
0.054546505212783813,
-0.09421824663877487,
-0.09645514190196991,
-0.08490001410245895,
0.15174385905265808,
-0.10575977712869644,
-0.00943461898714304,
-0.13718371093273163,
0.04047480598092079,
0.1415199190378189,
-0.07947475463151932,
0.05422225967049599,
0.014627271331846714,
0.12617449462413788,
0.011154337786138058,
-0.035580113530159,
0.12522920966148376,
-0.08052660524845123,
-0.20529329776763916,
-0.06393493711948395,
0.1730206161737442,
0.031226977705955505,
0.055183812975883484,
-0.007694721221923828,
0.047460101544857025,
0.003862464101985097,
-0.08955630660057068,
0.09700046479701996,
0.054914094507694244,
0.01190079003572464,
0.012916617095470428,
-0.013982298783957958,
-0.0017186132026836276,
-0.06748654693365097,
-0.04481018707156181,
0.12805967032909393,
0.3073817789554596,
-0.10145275294780731,
0.06785774230957031,
0.06815788894891739,
-0.03882480040192604,
-0.1528214067220688,
-0.027497408911585808,
0.0891270712018013,
0.014263559132814407,
0.013071618974208832,
-0.1812417358160019,
0.06335460394620895,
0.07812797278165817,
-0.029093872755765915,
0.07069304585456848,
-0.3137252628803253,
-0.13782264292240143,
0.11391329020261765,
0.08492075651884079,
0.0007416025036945939,
-0.16543419659137726,
-0.0746588334441185,
-0.016689293086528778,
-0.05416163057088852,
0.07188138365745544,
-0.034833844751119614,
0.10957387834787369,
-0.006014518905431032,
0.00423545902594924,
0.01388020534068346,
-0.05149563029408455,
0.14656634628772736,
0.007147665601223707,
0.03828620910644531,
-0.02333463542163372,
0.0257229283452034,
-0.012586294673383236,
-0.0791979506611824,
0.011089952662587166,
-0.10697367787361145,
0.019431859254837036,
-0.11702405661344528,
-0.029980190098285675,
-0.06776133924722672,
0.023485727608203888,
-0.04223715886473656,
-0.03389139473438263,
-0.04432712495326996,
0.045150287449359894,
0.09770111739635468,
-0.004145610146224499,
0.1221049353480339,
-0.020513534545898438,
0.14455048739910126,
0.12345245480537415,
0.07769681513309479,
-0.012770852074027061,
-0.10653560608625412,
-0.010188899002969265,
-0.03200483322143555,
0.04351116716861725,
-0.12164487689733505,
0.0312257781624794,
0.13047870993614197,
0.031153861433267593,
0.14095845818519592,
0.05251680314540863,
-0.08712563663721085,
0.006101901177316904,
0.07831314206123352,
-0.0903230831027031,
-0.17831790447235107,
-0.00790839921683073,
0.011543512344360352,
-0.13591210544109344,
0.010153613053262234,
0.08884882926940918,
-0.046194273978471756,
-0.007038420997560024,
0.008041485212743282,
0.055391550064086914,
-0.027483994141221046,
0.19893088936805725,
0.02985532395541668,
0.0787028893828392,
-0.09468771517276764,
0.0939062237739563,
0.04645051062107086,
-0.15838010609149933,
0.060397133231163025,
0.08440530300140381,
-0.0656549334526062,
-0.01386259961873293,
0.04962867125868797,
0.09080302715301514,
0.04834718257188797,
-0.043304212391376495,
-0.10436710715293884,
-0.14762388169765472,
0.09499044716358185,
0.0742030218243599,
0.029439909383654594,
0.01378233265131712,
-0.016700459644198418,
0.03030821494758129,
-0.08608269691467285,
0.10654640197753906,
0.0824330523610115,
0.06924829632043839,
-0.14804871380329132,
0.07803425192832947,
0.009409003891050816,
-0.01475546695291996,
-0.004848699551075697,
0.011409169994294643,
-0.14025315642356873,
-0.0033698808401823044,
-0.06904561072587967,
-0.019175199791789055,
-0.09043997526168823,
-0.005409842357039452,
0.009604723192751408,
-0.05865344777703285,
-0.06246271729469299,
0.005460877437144518,
-0.10206563770771027,
-0.06172807887196541,
-0.01584387570619583,
0.07796182483434677,
-0.11506912112236023,
-0.00906062126159668,
0.03559359163045883,
-0.12438863515853882,
0.0943240150809288,
0.024834057316184044,
0.032028160989284515,
0.010301624424755573,
-0.06735164672136307,
0.015371881425380707,
0.039990007877349854,
-0.014954350888729095,
0.02253248542547226,
-0.19987498223781586,
-0.015464487485587597,
-0.03215903416275978,
0.011342186480760574,
0.006136194337159395,
0.042125403881073,
-0.12416451424360275,
-0.008984357118606567,
-0.06276042759418488,
-0.07244374603033066,
-0.04475007578730583,
0.03747089207172394,
0.08959522843360901,
0.001342468080110848,
0.1671796441078186,
-0.09014441072940826,
0.04277545213699341,
-0.22033682465553284,
-0.00008882914698915556,
-0.017186027020215988,
-0.05330993980169296,
-0.032272160053253174,
-0.009600002318620682,
0.07841259241104126,
-0.056335173547267914,
0.1078290194272995,
-0.060861505568027496,
0.017983244732022285,
0.040729112923145294,
-0.10282975435256958,
0.005402003414928913,
0.056562040001153946,
0.19312123954296112,
0.056165240705013275,
-0.04329090192914009,
0.04549345001578331,
-0.006440932396799326,
0.0662679374217987,
0.10471884161233902,
0.15249648690223694,
0.16692237555980682,
0.03260846063494682,
0.08897018432617188,
0.05177360400557518,
-0.11638180166482925,
-0.15274272859096527,
0.17206253111362457,
-0.0716213583946228,
0.13766822218894958,
-0.00713892700150609,
0.19252841174602509,
0.11948546022176743,
-0.20225201547145844,
0.04000507667660713,
-0.026560556143522263,
-0.07478649169206619,
-0.11177385598421097,
-0.1129411980509758,
-0.0942448154091835,
-0.19277667999267578,
0.011572319082915783,
-0.09046619385480881,
0.04481758549809456,
0.02678801864385605,
0.033940639346838,
0.04249449819326401,
0.11267093569040298,
0.042566049844026566,
0.016916504129767418,
0.10827457159757614,
0.028149457648396492,
-0.0520901158452034,
-0.014563390985131264,
-0.08716725558042526,
0.017482154071331024,
-0.034700702875852585,
0.053342174738645554,
-0.032991647720336914,
-0.11155007779598236,
0.0698562040925026,
0.016380321234464645,
-0.10076840966939926,
0.02103635109961033,
-0.0236019529402256,
0.04647361859679222,
0.0634751245379448,
0.037895772606134415,
-0.029815249145030975,
-0.018639059737324715,
0.21593314409255981,
-0.0976252406835556,
-0.024532977491617203,
-0.1210554763674736,
0.199483722448349,
0.007546429056674242,
0.005516504868865013,
0.008761434815824032,
-0.07805386930704117,
-0.011332545429468155,
0.14865046739578247,
0.13941478729248047,
0.0004408961976878345,
-0.009129920043051243,
0.012856816872954369,
-0.015089472755789757,
-0.029916534200310707,
0.07941726595163345,
0.0977141484618187,
0.05982355773448944,
-0.048237934708595276,
-0.018566057085990906,
-0.03379538655281067,
-0.07339013367891312,
-0.05429048463702202,
0.08782411366701126,
0.03344062715768814,
-0.011680060997605324,
-0.03320698440074921,
0.11233876645565033,
-0.057603877037763596,
-0.10533560067415237,
0.053781796246767044,
-0.18679238855838776,
-0.1806875318288803,
-0.025349648669362068,
0.0683080181479454,
0.02183222584426403,
0.04745372757315636,
0.01924542523920536,
-0.02944098971784115,
0.08829106390476227,
0.011543802917003632,
-0.06213731691241264,
-0.09226422011852264,
0.05623394623398781,
-0.06565248966217041,
0.20098966360092163,
-0.028522906824946404,
0.002419603057205677,
0.13030827045440674,
0.05819348245859146,
-0.1076492890715599,
0.046680107712745667,
0.07711728662252426,
-0.10061042755842209,
0.053554829210042953,
0.167150616645813,
-0.032870590686798096,
0.12758207321166992,
0.0743081197142601,
-0.0744340792298317,
0.008626758120954037,
-0.09519053995609283,
-0.041243284940719604,
-0.06212276220321655,
0.008560355752706528,
-0.04287027567625046,
0.14710074663162231,
0.1734355390071869,
-0.07772589474916458,
-0.013068458996713161,
-0.03407023102045059,
0.026632441207766533,
0.03470003232359886,
0.12252773344516754,
-0.018663862720131874,
-0.2566130459308624,
0.02750507928431034,
-0.004877358675003052,
0.025127766653895378,
-0.23334453999996185,
-0.10594996809959412,
0.020589951425790787,
-0.03661192208528519,
-0.07977602630853653,
0.1262940764427185,
0.07691933959722519,
0.04229588434100151,
-0.06312550604343414,
-0.1367490440607071,
-0.027955468744039536,
0.18493875861167908,
-0.17175842821598053,
-0.05126773193478584
] |
null | null | null | <h2><strong>➲</strong><strong>Buy Now Official website @>> </strong><a href="https://www.facebook.com/BExtraWeightLossUK/"><strong>https://www.facebook.com/BExtraWeightLossUK/</strong></a></h2>
<h2><span style="background-color: #ff9900;"><strong>➲</strong><strong> Product Name — </strong><a style="background-color: #ff9900;" href="https://www.facebook.com/BExtraWeightLossUK/"><strong>B Extra Weight Loss UK</strong></a></span></h2>
<p><span style="background-color: #ffffff;">The containers can assist with supporting digestion, manage glucose levels and diminish hunger. When taken consistently, <a style="background-color: #ffffff;" href="https://www.facebook.com/BExtraWeightLossUK/"><strong>B Extra Weight Loss UK</strong></a> can assist with consuming fat quicker and lessen body weight.</span></p>
<p>The B+ tablets are a characteristic dietary enhancement explicitly intended for individuals who battle with heftiness and are searching for a clear and successful method for getting in shape.</p>
<p>In any case, it is essential to take note that <span><a href="https://www.facebook.com/BExtraWeightLossUK/"><strong>B Extra Weight Loss UK</strong></a></span><span> is not a supernatural occurrence fix. To effectively get in shape, coordinating a solid eating regimen and adequate activity into your everyday routine is significant. The cases can assist with accelerating the cycle and augment results.</span></p>
<p>B Additional tablets are a creative answer for people battling with heftiness. They address an exceptionally formed recipe that expects to advance weight reduction without the requirement for changes in diet or actual work. The cases contain fixings, for example, L-carnitine and L-arginine, which can support energy digestion. This implies that the body delivers more energy, which can assist you with feeling more dynamic and essential. Likewise, <a href="https://www.facebook.com/BExtraWeightLossUK/"><strong>B Extra Weight Loss UK</strong></a> can likewise assist with directing glucose levels, which can be especially helpful for individuals with diabetes.</p>
<p>Another medical advantage of <a href="https://www.facebook.com/BExtraWeightLossUK/"><strong>B Extra Weight Loss UK</strong></a> is that they can furnish the body with significant supplements. The cases contain various nutrients and minerals that can assist with keeping the body solid. For instance, they contain L-ascorbic acid, which is significant for a solid resistant framework, and calcium and magnesium, which are required areas of strength for teeth.</p>
<p><strong>Official facebook: ===>></strong></p>
<p><a href="https://www.facebook.com/profile.php?id=100090207926041"><strong>https://www.facebook.com/profile.php?id=100090207926041</strong></a></p>
<p><a href="https://www.facebook.com/BExtraWeightLoss/"><strong>https://www.facebook.com/BExtraWeightLoss/</strong></a></p>
<p><a href="https://www.facebook.com/BExtraDietInUK/"><strong>https://www.facebook.com/BExtraDietInUK/</strong></a></p>
<p><strong>Gamma===>></strong></p>
<p><a href="https://gamma.app/public/-fwo26etqsnpurol"><strong>https://gamma.app/public/-fwo26etqsnpurol</strong></a></p>
<p><a href="https://gamma.app/public/B-Extra-Weight-Loss-UK-yxl8t9vf4mojne5"><strong>https://gamma.app/public/B-Extra-Weight-Loss-UK-yxl8t9vf4mojne5</strong></a></p>
<p><strong>Group Google ===>></strong></p>
<p><a href="https://groups.google.com/g/jamevaz/c/bDw_pdpb6HU"><strong>https://groups.google.com/g/jamevaz/c/bDw_pdpb6HU</strong></a></p>
<p><a href="https://groups.google.com/g/jamevaz/c/AZWIk7ez95A"><strong>https://groups.google.com/g/jamevaz/c/AZWIk7ez95A</strong></a></p>
<p><strong>colab.research ===>></strong></p>
<p><a href="https://colab.research.google.com/drive/1G0g1BcLeTJiy5yCgL_itxHMh2Dx465LF?usp=sharing"><strong>https://colab.research.google.com/drive/1G0g1BcLeTJiy5yCgL_itxHMh2Dx465LF?usp=sharing</strong></a><strong> </strong></p>
<p><strong>Site Google===>></strong></p>
<p><a href="https://sites.google.com/view/b-extra-weight-loss-uk/home"><strong>https://sites.google.com/view/b-extra-weight-loss-uk/home</strong></a></p>
<p><strong>Blogger===>></strong></p>
<p><a href="https://mynewsupdatezone.blogspot.com/2023/11/b-extra-weight-loss-uk-reviews-beware.htm"><strong>https://mynewsupdatezone.blogspot.com/2023/11/b-extra-weight-loss-uk-reviews-beware.htm</strong></a></p>
<p><strong>webflow ===>></strong></p>
<p><a href="https://b-extra-weight-loss-uk.webflow.io/"><strong>https://b-extra-weight-loss-uk.webflow.io/</strong></a></p>
<p><strong>dibiz==>></strong></p>
<p><a href="https://www.dibiz.com/albelutz"><strong>https://www.dibiz.com/albelutz</strong></a></p>
<p><strong>medium ===>></strong></p>
<p><a href="https://medium.com/@albelutz/lose-weight-look-great-and-feel-healthy-00262917a072"><strong>https://medium.com/@albelutz/lose-weight-look-great-and-feel-healthy-00262917a072</strong></a></p>
<p><a href="https://medium.com/@albelutz/lose-weight-look-great-and-feel-healthy-be29aaad1790"><strong>https://medium.com/@albelutz/lose-weight-look-great-and-feel-healthy-be29aaad1790</strong></a></p>
<p><a href="https://medium.com/@albelutz/b-extra-weight-loss-uk-2023-dont-buy-before-visiting-on-website-scam-exposed-8842af4d4909"><strong>https://medium.com/@albelutz/b-extra-weight-loss-uk-2023-dont-buy-before-visiting-on-website-scam-exposed-8842af4d4909</strong></a></p>
<p><a href="https://medium.com/@albelutz/lose-weight-look-great-and-feel-healthy-91b77604881c"><strong>https://medium.com/@albelutz/lose-weight-look-great-and-feel-healthy-91b77604881c</strong></a></p>
<p><a href="https://medium.com/@albelutz/buy-now-official-website-https-www-facebook-com-bextraweightlossuk-9703629c7882"><strong>https://medium.com/@albelutz/buy-now-official-website-https-www-facebook-com-bextraweightlossuk-9703629c7882</strong></a></p>
<p><strong>Hashnode ===>></strong></p>
<p><a href="https://bextraweightlossuk.hashnode.dev/b-extra-weight-loss-uk-shocking-scam-warning-2023-update"><strong>https://bextraweightlossuk.hashnode.dev/b-extra-weight-loss-uk-shocking-scam-warning-2023-update</strong></a></p>
<p><a href="https://bextraweightlossuk.hashnode.dev/b-extra-weight-loss-uk-scam-alert-review-a-weight-loss-pills-or-waste-of-money"><strong>https://bextraweightlossuk.hashnode.dev/b-extra-weight-loss-uk-scam-alert-review-a-weight-loss-pills-or-waste-of-money</strong></a></p>
<p><a href="https://bextraweightlossuk.hashnode.dev/b-extra-weight-loss-uk-reviews-2023-scam-alert-must-read-before-buying"><strong>https://bextraweightlossuk.hashnode.dev/b-extra-weight-loss-uk-reviews-2023-scam-alert-must-read-before-buying</strong></a></p>
<p><strong>Animale Male Enhancement CBD Gummies Jamaica</strong></p>
<p><strong><a href="https://www.facebook.com/AnimaleMaleEnhancementCBDGummiesJamaica/">https://www.facebook.com/AnimaleMaleEnhancementCBDGummiesJamaica/</a> </strong></p>
<p><strong>B Extra Pills UK</strong></p>
<p><strong><a href="https://www.facebook.com/BExtraPillsUK/">https://www.facebook.com/BExtraPillsUK/</a> </strong></p>
<p><strong><a href="https://www.facebook.com/BExtraPills/">https://www.facebook.com/BExtraPills/</a> </strong></p>
<p><strong>B Extra Slimming Pills UK</strong></p>
<p><strong><a href="https://www.facebook.com/BExtraSlimmingPillsUK/">https://www.facebook.com/BExtraSlimmingPillsUK/</a> </strong></p>
<p><strong>Gentle Groove CBD Gummies</strong></p>
<p><strong><a href="https://www.facebook.com/GentleGrooveCBDGummiesUnitedStates/">https://www.facebook.com/GentleGrooveCBDGummiesUnitedStates/</a> </strong></p>
<p><strong>Karlien Van Jaarsveld Keto Gummies</strong></p>
<p><strong><a href="https://www.facebook.com/KarlienVanJaarsveldKetoGummiesInZA/">https://www.facebook.com/KarlienVanJaarsveldKetoGummiesInZA/</a> </strong></p>
<p><strong>Smart Hemp Gummies Canada</strong></p>
<p><strong><a href="https://www.facebook.com/SmartHempGummiesInCanada/">https://www.facebook.com/SmartHempGummiesInCanada/</a> </strong></p>
<p><strong>Smart Hemp Gummies Australia</strong></p>
<p><strong><a href="https://www.facebook.com/SmartHempGummiesInAustralia/">https://www.facebook.com/SmartHempGummiesInAustralia/</a> </strong></p>
<p><strong>Amarose Skin Tag Remover</strong></p>
<p><strong><a href="https://www.outlookindia.com/outlook-spotlight/-official-website-amarose-skin-tag-remover-reviews-exposed-scam-2023-shark-tank-skin-tag-remover-read-bliss-skin-tag-remover-nobody-tells-you-this-amarose-skin-tags-remover-is-safe-or-effective--news-255555">https://www.outlookindia.com/outlook-spotlight/-official-website-amarose-skin-tag-remover-reviews-exposed-scam-2023-shark-tank-skin-tag-remover-read-bliss-skin-tag-remover-nobody-tells-you-this-amarose-skin-tags-remover-is-safe-or-effective--news-255555</a> </strong></p>
<p><strong><a href="https://www.facebook.com/people/Amarose-Skin-Tag-Remover-Reviews-Bliss-Skin-Tag-Remover/100089999527140/">https://www.facebook.com/people/Amarose-Skin-Tag-Remover-Reviews-Bliss-Skin-Tag-Remover/100089999527140/</a> </strong></p> | {} | null | Jamessimer/BExtraWeightLossrrview | [
"region:us"
] | 2023-11-11T06:20:09+00:00 | [] | [] | TAGS
#region-us
| <h2><strong></strong><strong>Buy Now Official website @>> </strong><a href="URL/URL
<h2><span style="background-color: #ff9900;"><strong></strong><strong> Product Name — </strong><a style="background-color: #ff9900;" href="URL Extra Weight Loss UK</strong></a></span></h2>
<p><span style="background-color: #ffffff;">The containers can assist with supporting digestion, manage glucose levels and diminish hunger. When taken consistently, <a style="background-color: #ffffff;" href="URL Extra Weight Loss UK</strong></a> can assist with consuming fat quicker and lessen body weight.</span></p>
<p>The B+ tablets are a characteristic dietary enhancement explicitly intended for individuals who battle with heftiness and are searching for a clear and successful method for getting in shape.</p>
<p>In any case, it is essential to take note that <span><a href="URL Extra Weight Loss UK</strong></a></span><span> is not a supernatural occurrence fix. To effectively get in shape, coordinating a solid eating regimen and adequate activity into your everyday routine is significant. The cases can assist with accelerating the cycle and augment results.</span></p>
<p>B Additional tablets are a creative answer for people battling with heftiness. They address an exceptionally formed recipe that expects to advance weight reduction without the requirement for changes in diet or actual work. The cases contain fixings, for example, L-carnitine and L-arginine, which can support energy digestion. This implies that the body delivers more energy, which can assist you with feeling more dynamic and essential. Likewise, <a href="URL Extra Weight Loss UK</strong></a> can likewise assist with directing glucose levels, which can be especially helpful for individuals with diabetes.</p>
<p>Another medical advantage of <a href="URL Extra Weight Loss UK</strong></a> is that they can furnish the body with significant supplements. The cases contain various nutrients and minerals that can assist with keeping the body solid. For instance, they contain L-ascorbic acid, which is significant for a solid resistant framework, and calcium and magnesium, which are required areas of strength for teeth.</p>
<p><strong>Official facebook: ===>></strong></p>
<p><a href="URL/URL
<p><a href="URL/URL
<p><a href="URL/URL
<p><strong>Gamma===>></strong></p>
<p><a href="URL/URL
<p><a href="URL/URL
<p><strong>Group Google ===>></strong></p>
<p><a href="URL/URL
<p><a href="URL/URL
<p><strong>colab.research ===>></strong></p>
<p><a href="URL/URL </strong></p>
<p><strong>Site Google===>></strong></p>
<p><a href="URL/URL
<p><strong>Blogger===>></strong></p>
<p><a href="URL/URL
<p><strong>webflow ===>></strong></p>
<p><a href="URL/URL
<p><strong>dibiz==>></strong></p>
<p><a href="URL/URL
<p><strong>medium ===>></strong></p>
<p><a href="URL/URL
<p><a href="URL/URL
<p><a href="URL/URL
<p><a href="URL/URL
<p><a href="URL/URL
<p><strong>Hashnode ===>></strong></p>
<p><a href="URL/URL
<p><a href="URL/URL
<p><a href="URL/URL
<p><strong>Animale Male Enhancement CBD Gummies Jamaica</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong>B Extra Pills UK</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong>B Extra Slimming Pills UK</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong>Gentle Groove CBD Gummies</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong>Karlien Van Jaarsveld Keto Gummies</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong>Smart Hemp Gummies Canada</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong>Smart Hemp Gummies Australia</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong>Amarose Skin Tag Remover</strong></p>
<p><strong><a href="URL/URL </strong></p>
<p><strong><a href="URL/URL </strong></p> | [] | [
"TAGS\n#region-us \n"
] | [
6
] | [
"passage: TAGS\n#region-us \n"
] | [
0.024608636274933815,
-0.026205500587821007,
-0.009666500613093376,
-0.10395516455173492,
0.08638657629489899,
0.059816278517246246,
0.01882290467619896,
0.020661840215325356,
0.23975107073783875,
-0.005599027033895254,
0.1219947561621666,
0.0015615287702530622,
-0.037353623658418655,
0.03733762726187706,
-0.0035912662278860807,
-0.17583473026752472,
0.03876631706953049,
-0.018274923786520958,
0.01843859627842903,
0.026470553129911423,
-0.07776834815740585,
-0.07564429938793182,
0.015296397730708122,
-0.10247814655303955,
-0.083692267537117,
0.11002834886312485,
0.031466204673051834,
-0.019670886918902397,
0.10779199749231339,
-0.04243955761194229,
0.18699054419994354,
-0.011512263678014278,
-0.11213519424200058,
-0.2536850869655609,
0.021806683391332626,
-0.01765260472893715,
-0.08747660368680954,
0.01506110467016697,
0.0665089413523674,
-0.09014441072940826,
-0.0588928684592247,
0.0795099288225174,
-0.01132340170443058,
0.04246443510055542,
-0.27593839168548584,
-0.12684126198291779,
-0.05297930911183357,
-0.1421966552734375,
0.08651168644428253,
0.04035491496324539,
0.008764253929257393,
0.15506891906261444,
-0.20897391438484192,
0.004104613792151213,
0.08255259692668915,
-0.2538507878780365,
0.05591634660959244,
0.17671173810958862,
0.03623908758163452,
0.18037272989749908,
0.0060391901060938835,
0.11029672622680664,
0.0716743916273117,
-0.024263937026262283,
-0.17590197920799255,
-0.08127854019403458,
-0.04696211963891983,
0.16642488539218903,
-0.06727185100317001,
-0.14248386025428772,
0.34701237082481384,
0.00015008423360995948,
0.009657775051891804,
0.16921205818653107,
-0.059524230659008026,
-0.09972117841243744,
0.07259953022003174,
0.016484731808304787,
0.018492350354790688,
0.1471305936574936,
0.16307872533798218,
-0.0458691343665123,
-0.13837823271751404,
-0.018630273640155792,
-0.22798998653888702,
0.17510560154914856,
-0.03248048573732376,
0.13137903809547424,
-0.27447956800460815,
0.01684025302529335,
-0.2570667266845703,
0.0032130838371813297,
0.04178816080093384,
-0.06004921346902847,
-0.0226522795855999,
-0.013265985064208508,
-0.08018817007541656,
0.004899587947875261,
0.06192673370242119,
0.1266920566558838,
-0.06128726154565811,
0.06128238886594772,
-0.09319206327199936,
0.141696035861969,
0.07166698575019836,
0.07868369668722153,
0.13037432730197906,
0.041205424815416336,
-0.07187089323997498,
-0.21872246265411377,
-0.0026476888451725245,
-0.06275863200426102,
-0.09502086788415909,
-0.0020165652967989445,
-0.11606067419052124,
0.17244569957256317,
-0.030802514404058456,
-0.09825427830219269,
-0.11208184063434601,
0.09148659557104111,
-0.032992321997880936,
-0.03437839448451996,
-0.03552987426519394,
-0.020977836102247238,
0.019381176680326462,
0.04704452306032181,
-0.1548958420753479,
-0.005131472367793322,
0.07039852440357208,
0.11502562463283539,
-0.1346137970685959,
-0.003783059772104025,
-0.07908964157104492,
0.03039063885807991,
0.07654735445976257,
-0.16510222852230072,
0.03158547356724739,
-0.1124754324555397,
-0.07531405985355377,
0.002912673633545637,
-0.015710093080997467,
-0.016202643513679504,
0.166526660323143,
-0.0020451415330171585,
0.0714716836810112,
-0.026345307007431984,
-0.05890209600329399,
-0.11243434250354767,
-0.08489254862070084,
0.05390460044145584,
0.03670717030763626,
0.03266148269176483,
-0.2193479984998703,
0.014805203303694725,
-0.12762966752052307,
0.1360815018415451,
-0.10566820204257965,
-0.04705966264009476,
-0.022842247039079666,
0.20562705397605896,
0.037286072969436646,
0.08762791007757187,
-0.22171171009540558,
0.039756543934345245,
-0.05404696613550186,
0.18480908870697021,
-0.1502426266670227,
-0.0799463614821434,
0.20813211798667908,
-0.07964949309825897,
-0.10115210711956024,
0.021235812455415726,
0.020391687750816345,
0.026287272572517395,
0.0766737088561058,
0.4564172327518463,
-0.09766800701618195,
-0.09146861732006073,
0.10178250074386597,
0.17055274546146393,
-0.12427149713039398,
-0.1827561855316162,
0.06446871906518936,
-0.16666454076766968,
-0.1973118633031845,
0.0018917324487119913,
0.09222044050693512,
0.038269978016614914,
-0.07875611633062363,
-0.020746968686580658,
0.06325206160545349,
-0.0007678253459744155,
0.09095914661884308,
0.03755716234445572,
0.09034032374620438,
-0.08716782182455063,
0.11115926504135132,
-0.05017651244997978,
0.004037132486701012,
0.1343354731798172,
0.027325427159667015,
-0.03223329409956932,
0.08694463223218918,
-0.0485352948307991,
0.05295134335756302,
-0.1662379503250122,
-0.15068690478801727,
0.03398871049284935,
0.06283251196146011,
0.03186952322721481,
0.1280253529548645,
0.08141885697841644,
-0.10732853412628174,
0.022690722718834877,
-0.004228927195072174,
0.058398615568876266,
0.03891623765230179,
0.006107209715992212,
0.008764320984482765,
0.0961301177740097,
-0.10607069730758667,
-0.13589619100093842,
-0.07336436957120895,
-0.014715781435370445,
0.14371353387832642,
-0.0302802175283432,
0.07690227776765823,
-0.004240254405885935,
0.00013200697139836848,
0.06930823624134064,
0.08137880265712738,
0.016412746161222458,
0.08971183747053146,
-0.05237193778157234,
-0.05160155147314072,
0.10863113403320312,
-0.13533565402030945,
0.17837053537368774,
0.14053137600421906,
-0.20532016456127167,
0.029453208670020103,
-0.06838275492191315,
0.03670361638069153,
-0.008162540383636951,
0.0975119024515152,
-0.08272241055965424,
-0.02106042578816414,
0.013134466484189034,
0.0052274600602686405,
-0.013007243163883686,
0.017682146281003952,
-0.07295988500118256,
-0.07787393033504486,
-0.10233919322490692,
0.08436838537454605,
0.11562882363796234,
-0.10282530635595322,
0.14214380085468292,
0.4384984076023102,
0.11495281755924225,
0.21582984924316406,
-0.09581480920314789,
-0.0412987545132637,
0.007486371789127588,
0.0001535322517156601,
-0.04476691037416458,
0.08031861484050751,
-0.15973517298698425,
-0.038901735097169876,
0.027348900213837624,
0.07128690183162689,
0.11475157737731934,
-0.14959022402763367,
-0.09639324247837067,
-0.00793045200407505,
0.0022841424215584993,
-0.1249532699584961,
0.023905446752905846,
-0.03974650055170059,
0.04015624523162842,
0.07232289016246796,
-0.021535737439990044,
0.13939237594604492,
-0.04166141897439957,
-0.0639561116695404,
0.07585346698760986,
-0.2017085999250412,
-0.23179671168327332,
-0.12309670448303223,
-0.14680525660514832,
0.04366797208786011,
0.05154111236333847,
0.01726446859538555,
-0.17635835707187653,
-0.015074856579303741,
0.07706750929355621,
0.07820965349674225,
-0.20886357128620148,
-0.022814949974417686,
-0.004290030337870121,
0.0895976573228836,
-0.10227091610431671,
-0.0017130117630586028,
-0.04419664293527603,
-0.10150232166051865,
0.0017003051470965147,
0.07279510796070099,
-0.137485533952713,
0.13807645440101624,
0.21589438617229462,
0.07225540280342102,
0.07359948754310608,
-0.019093448296189308,
0.09936179965734482,
-0.10856141895055771,
-0.16549113392829895,
0.08348225057125092,
-0.06234746053814888,
0.047262318432331085,
0.17534415423870087,
0.03307317942380905,
-0.13904969394207,
-0.015682822093367577,
-0.0402069091796875,
-0.15603256225585938,
-0.238995760679245,
-0.09178274869918823,
-0.1182505264878273,
0.16442428529262543,
0.0009358620154671371,
0.06651917099952698,
0.08258313685655594,
-0.022042419761419296,
0.16447891294956207,
-0.07379321753978729,
-0.07578866183757782,
-0.006978808436542749,
0.12375060468912125,
-0.056660156697034836,
-0.03080669604241848,
-0.10566964000463486,
-0.008295975625514984,
0.1151021271944046,
0.15304014086723328,
0.12214863300323486,
0.2957419455051422,
0.08268889784812927,
0.026645636186003685,
0.08958091586828232,
0.17622539401054382,
0.09495089203119278,
0.07838419824838638,
-0.045413073152303696,
-0.014814783819019794,
0.014317171648144722,
-0.04022889584302902,
0.010141594335436821,
0.14683100581169128,
-0.2679629921913147,
-0.006678564939647913,
-0.2710230350494385,
0.0965198427438736,
-0.10913380235433578,
0.11837165057659149,
-0.01015760749578476,
0.10194015502929688,
0.11082887649536133,
0.03233652561903,
-0.03858073800802231,
0.16613617539405823,
0.08450309932231903,
-0.11277695000171661,
0.001758623169735074,
0.03737903758883476,
0.09715615212917328,
-0.02818971499800682,
0.12721189856529236,
-0.11048974841833115,
-0.1464834064245224,
0.013753619976341724,
0.07152791321277618,
-0.15373679995536804,
0.3138748109340668,
0.012069208547472954,
-0.13481520116329193,
-0.01481647603213787,
-0.09957809001207352,
-0.006440147757530212,
0.1254177987575531,
0.09333524852991104,
0.07935678958892822,
-0.2185502052307129,
-0.13339371979236603,
0.05872276425361633,
-0.00575496768578887,
0.22408108413219452,
-0.034034017473459244,
-0.11356475204229355,
-0.027013886719942093,
0.04241163283586502,
-0.06043251231312752,
0.08524788916110992,
0.023536119610071182,
-0.08113526552915573,
-0.032957352697849274,
0.05323701351881027,
0.012368366122245789,
0.00524376705288887,
0.09360801428556442,
0.020107939839363098,
-0.0009265501867048442,
0.01785753294825554,
0.047885000705718994,
-0.0675911232829094,
-0.1984109878540039,
0.09357594698667526,
-0.05215044692158699,
0.0015536568826064467,
-0.08013670891523361,
-0.15122665464878082,
-0.08837161958217621,
-0.16009655594825745,
0.12540200352668762,
-0.034406669437885284,
0.12700119614601135,
-0.06619787961244583,
0.17341409623622894,
-0.07871770113706589,
0.04481020197272301,
-0.047349292784929276,
0.050332702696323395,
-0.007268077693879604,
-0.07756082713603973,
0.16585899889469147,
-0.15564003586769104,
0.01809087023139,
0.19572502374649048,
-0.018915493041276932,
0.07177707552909851,
0.021322092041373253,
-0.0636206790804863,
0.23147478699684143,
0.3014698624610901,
0.008138049393892288,
0.1665448248386383,
0.3018903136253357,
-0.07466315478086472,
-0.2642788887023926,
-0.05505012720823288,
-0.2841376066207886,
-0.05371501296758652,
0.10716094076633453,
-0.22523896396160126,
0.06986407935619354,
0.14383509755134583,
-0.06471995264291763,
0.30228954553604126,
-0.21825523674488068,
0.012589273042976856,
0.15434536337852478,
-0.08868814259767532,
0.5515313148498535,
-0.1133413165807724,
-0.17677772045135498,
-0.008122089318931103,
-0.08741296827793121,
0.10602109134197235,
-0.0340677872300148,
0.06877441704273224,
0.013465235009789467,
0.04797380417585373,
0.048932258039712906,
-0.03111894056200981,
0.22701001167297363,
0.008710170164704323,
0.09015397727489471,
-0.07378865778446198,
-0.18624304234981537,
0.11639340221881866,
-0.04359482601284981,
-0.08891059458255768,
0.0849778801202774,
-0.05942516401410103,
-0.11078983545303345,
0.04663389176130295,
-0.07950539886951447,
-0.024862350896000862,
0.08423490077257156,
-0.04678233340382576,
-0.042606171220541,
-0.008054176345467567,
-0.1618063747882843,
-0.0002289071271661669,
0.31360217928886414,
-0.07096036523580551,
0.16695955395698547,
0.03677211329340935,
0.00038613268407061696,
-0.11027684062719345,
0.030288029462099075,
-0.05203165486454964,
-0.021576624363660812,
0.09578979015350342,
-0.11096979677677155,
0.03204701095819473,
0.14160704612731934,
-0.04864364117383957,
0.05846960097551346,
0.09256096184253693,
-0.0849417969584465,
0.007583672646433115,
0.17753590643405914,
-0.17537221312522888,
-0.1273445188999176,
-0.006135711446404457,
-0.09862716495990753,
0.14055661857128143,
0.04394126310944557,
0.05191568285226822,
0.16669964790344238,
0.03967129811644554,
-0.029474308714270592,
-0.02817419543862343,
-0.1153380498290062,
-0.0201893113553524,
0.040153320878744125,
0.00045633706031367183,
-0.08791285753250122,
0.2262638509273529,
0.06409153342247009,
-0.1328488290309906,
-0.051157206296920776,
0.2161225974559784,
-0.06805316358804703,
-0.04911920800805092,
-0.223562553524971,
0.10752306133508682,
-0.07112517952919006,
-0.0965060144662857,
0.05453834682703018,
-0.02270081453025341,
0.005106312222778797,
0.181985542178154,
0.03941008821129799,
0.11070270836353302,
0.03738937899470329,
-0.02448922023177147,
0.15798696875572205,
-0.142850860953331,
-0.14191335439682007,
-0.025354057550430298,
-0.08757315576076508,
-0.13844476640224457,
-0.026804137974977493,
0.1617041826248169,
-0.09177309274673462,
-0.14772607386112213,
-0.2621181011199951,
0.10968475043773651,
-0.16432365775108337,
-0.10192688554525375,
-0.03469514101743698,
-0.08968492597341537,
0.0696166530251503,
0.030301768332719803,
-0.03093348816037178,
-0.06706760823726654,
-0.18593791127204895,
0.0816768929362297,
0.06349513679742813,
0.045533183962106705,
-0.017847947776317596,
0.0067379772663116455,
0.1720137596130371,
0.025955144315958023,
0.10040043294429779,
0.16762186586856842,
0.011397695168852806,
0.2246655523777008,
-0.1671202927827835,
-0.11496317386627197,
0.1336962729692459,
-0.026543032377958298,
0.06762003898620605,
0.16792191565036774,
-0.0772583931684494,
0.015526676550507545,
-0.028136352077126503,
0.07066910713911057,
-0.11003983020782471,
-0.105624258518219,
0.007937257178127766,
0.02567129209637642,
-0.2755882740020752,
-0.005599735304713249,
-0.19717298448085785,
0.14788752794265747,
0.02579621411859989,
0.03297143429517746,
0.10257530212402344,
0.10404334217309952,
0.08312062919139862,
-0.0017710148822516203,
0.03226327523589134,
-0.1176818460226059,
0.02753005363047123,
-0.059239376336336136,
-0.020663779228925705,
0.017624232918024063,
0.36952024698257446,
-0.03603357449173927,
-0.046802736818790436,
0.003710439894348383,
0.1307835876941681,
-0.02139742486178875,
0.017395347356796265,
0.13209912180900574,
0.12607666850090027,
-0.08595693111419678,
-0.1504845917224884,
0.04888554662466049,
-0.04565655067563057,
-0.02836887165904045,
0.1464131623506546,
0.05905961990356445,
0.1050296202301979,
0.0908031314611435,
-0.014463032595813274,
-0.00318976235575974,
0.012856799177825451,
-0.15486004948616028,
0.06223496049642563,
-0.010558074340224266,
0.012565906159579754,
0.017934376373887062,
0.15238402783870697,
-0.005540105979889631,
0.07739730179309845,
-0.09889880567789078,
0.004208535887300968,
-0.13498884439468384,
-0.07913459837436676,
0.03617347031831741,
-0.13393273949623108,
0.04141177982091904,
-0.01871878281235695,
0.029611799865961075,
0.30386561155319214,
0.02558239921927452,
-0.020639164373278618,
0.12512871623039246,
-0.1214587539434433,
-0.12050267308950424,
-0.001594188273884356,
-0.029960084706544876,
0.0791488066315651,
-0.02633434161543846,
-0.0997740775346756,
-0.1001306027173996,
-0.15166029334068298,
-0.09759195148944855,
0.05182836204767227,
-0.04993441700935364,
-0.059362251311540604,
-0.17634081840515137,
-0.05707859992980957,
-0.05147340148687363,
0.14025864005088806,
-0.12263951450586319,
0.15159130096435547,
-0.014490418136119843,
0.004084470681846142,
0.04405883327126503,
0.1950942426919937,
-0.03644494712352753,
0.08714226633310318,
0.0154351145029068,
0.1522706001996994,
-0.05119588226079941,
0.14720745384693146,
-0.10931728035211563,
-0.04014137014746666,
-0.06710435450077057,
0.21513493359088898,
0.25630924105644226,
-0.06136954948306084,
-0.008937356993556023,
-0.012760217301547527,
0.058654606342315674,
0.1073930487036705,
0.16049085557460785,
0.002326392102986574,
0.2802925705909729,
-0.03133585304021835,
0.04815128445625305,
0.02901598811149597,
0.013607407920062542,
-0.06336209923028946,
0.03397751972079277,
0.07539387792348862,
-0.035039983689785004,
-0.1412304788827896,
0.15837742388248444,
-0.21980468928813934,
0.18157227337360382,
0.11640069633722305,
-0.19996967911720276,
-0.013728445395827293,
-0.04882071167230606,
0.1689416468143463,
-0.0856364443898201,
0.1637246012687683,
-0.0903693437576294,
-0.2108195722103119,
-0.2056000679731369,
0.03867346793413162,
-0.34623071551322937,
-0.254462867975235,
0.10422009229660034,
0.1488201916217804,
0.04015883058309555,
-0.018507536500692368,
-0.019967829808592796,
-0.018367022275924683,
0.04877542704343796,
-0.0067357709631323814,
0.06014643982052803,
0.031397558748722076,
-0.02988368645310402,
-0.24127542972564697,
-0.029804671183228493,
0.023964406922459602,
-0.07093082368373871,
0.07464958727359772,
-0.06874357163906097,
-0.022495782002806664,
0.08059766888618469,
-0.03066304884850979,
0.03298592567443848,
-0.035373736172914505,
-0.16326889395713806,
0.027529051527380943,
0.03900543600320816,
0.036012712866067886,
0.00634160777553916,
0.0008072225609794259,
-0.03455270454287529,
0.0644603744149208,
-0.16716794669628143,
-0.16015739738941193,
0.14140215516090393,
-0.06745140254497528,
0.2779497504234314,
-0.05812826007604599,
-0.0809100940823555,
0.04766704887151718,
-0.03426874056458473,
0.1807648241519928,
-0.07756473124027252,
0.047254521399736404,
0.12766779959201813,
0.011127962730824947,
0.03121316432952881,
-0.3092964291572571,
0.11082969605922699,
-0.000795336440205574,
-0.006093299947679043,
-0.07581598311662674
] |
null | null | transformers | <h1>Use v2 </h1>
<p><h1> ShearedPlats-7b </h1></p>
An experimental finetune of Sheared LLaMA 2.7b with Alpaca-QLoRA
<h2> Datasets </h2>
Trained on alpca style datasets
<p><h2> Prompt Template </h2></p>
Uses alpaca style prompt template | {"license": "llama2"} | text-generation | vihangd/shearedplats-2.7b-v1 | [
"transformers",
"pytorch",
"llama",
"text-generation",
"license:llama2",
"autotrain_compatible",
"endpoints_compatible",
"text-generation-inference",
"region:us"
] | 2023-11-11T06:20:19+00:00 | [] | [] | TAGS
#transformers #pytorch #llama #text-generation #license-llama2 #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
| <h1>Use v2 </h1>
<p><h1> ShearedPlats-7b </h1></p>
An experimental finetune of Sheared LLaMA 2.7b with Alpaca-QLoRA
<h2> Datasets </h2>
Trained on alpca style datasets
<p><h2> Prompt Template </h2></p>
Uses alpaca style prompt template | [] | [
"TAGS\n#transformers #pytorch #llama #text-generation #license-llama2 #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n"
] | [
53
] | [
"passage: TAGS\n#transformers #pytorch #llama #text-generation #license-llama2 #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n"
] | [
-0.011647610925137997,
0.04992802441120148,
-0.006281229667365551,
0.016646482050418854,
0.1489662379026413,
0.019679727032780647,
0.16180486977100372,
0.12378495186567307,
0.013171550817787647,
-0.043136484920978546,
0.13100053369998932,
0.24347396194934845,
-0.01149129681289196,
-0.004479775670915842,
-0.0859030932188034,
-0.2539551854133606,
0.03688172996044159,
0.05375007539987564,
0.023791316896677017,
0.09742206335067749,
0.09102052450180054,
-0.06342656910419464,
0.08508709818124771,
-0.01251025777310133,
-0.1275973618030548,
0.038308285176754,
0.03741178661584854,
-0.1194724440574646,
0.11169657111167908,
0.06333036720752716,
0.08688703924417496,
0.03561238944530487,
-0.028306180611252785,
-0.1956689953804016,
0.01985468901693821,
-0.025176452472805977,
-0.06480834633111954,
0.04874206334352493,
0.0862090066075325,
-0.06509295850992203,
0.1292579472064972,
0.09823860973119736,
-0.020733829587697983,
0.05661281943321228,
-0.12028618901968002,
-0.027249613776803017,
-0.05849933624267578,
0.027908818796277046,
0.08106258511543274,
0.09222511947154999,
0.02288808301091194,
0.105010986328125,
-0.08197280764579773,
0.08061423152685165,
0.14685314893722534,
-0.3479711413383484,
0.023088332265615463,
0.11297772824764252,
0.08659542351961136,
0.010783477686345577,
-0.040280960500240326,
0.08838655799627304,
0.04224418103694916,
0.004844447132200003,
0.0380866564810276,
-0.08777973800897598,
-0.08561835438013077,
0.06197739765048027,
-0.06466839462518692,
-0.0557079054415226,
0.22535492479801178,
-0.056570835411548615,
0.053724415600299835,
-0.036367014050483704,
-0.05915020778775215,
-0.025133732706308365,
-0.015034761279821396,
0.0471935048699379,
-0.014632528647780418,
0.0793941468000412,
0.05074464529752731,
-0.07015564292669296,
-0.13961327075958252,
-0.01346185989677906,
-0.20890526473522186,
0.1494487226009369,
0.0209613349288702,
0.054323550313711166,
-0.17323748767375946,
0.0926215872168541,
0.04237638786435127,
-0.08550595492124557,
0.00406793225556612,
-0.05164234712719917,
0.0874730721116066,
0.010105708613991737,
-0.06387139111757278,
-0.04891694337129593,
0.08790136128664017,
0.12905432283878326,
0.022620640695095062,
-0.016802841797471046,
-0.052311550825834274,
0.12012980878353119,
0.004595116712152958,
0.07126902043819427,
0.018188422545790672,
-0.005418084096163511,
0.05661674216389656,
-0.1126154363155365,
0.040852706879377365,
-0.041278865188360214,
-0.18267275393009186,
-0.02942233346402645,
-0.002514045452699065,
0.117008276283741,
0.011500664986670017,
0.07162328064441681,
-0.041154369711875916,
-0.006175455637276173,
0.03361283242702484,
-0.08610757440328598,
0.0010760875884443521,
-0.015087246894836426,
0.007599323056638241,
0.11322619020938873,
0.022777479141950607,
0.022704996168613434,
-0.09900560230016708,
0.08861839771270752,
-0.07331173121929169,
-0.0061487178318202496,
-0.0609351210296154,
-0.04249673709273338,
0.05787842720746994,
-0.10661286115646362,
0.032800234854221344,
-0.14319679141044617,
-0.2132287174463272,
0.014600261114537716,
0.019184773787856102,
-0.030179275199770927,
-0.05678194761276245,
-0.01848427951335907,
-0.032733265310525894,
0.019043901935219765,
-0.08665861934423447,
0.004284599330276251,
-0.06933405995368958,
0.10522643476724625,
-0.051912009716033936,
0.04167310893535614,
-0.15463942289352417,
0.08472863584756851,
-0.10067059844732285,
0.009146673604846,
-0.016331281512975693,
0.031120823696255684,
-0.02173282578587532,
0.1288650929927826,
-0.0164407417178154,
-0.019295543432235718,
-0.03851446881890297,
0.0625668317079544,
-0.03805907070636749,
0.16310997307300568,
-0.10839587450027466,
-0.09349121153354645,
0.16560932993888855,
-0.08614551275968552,
-0.1726582944393158,
0.06074156612157822,
0.00027684526867233217,
0.06798946857452393,
0.08439120650291443,
0.18545038998126984,
0.03242446109652519,
-0.06631284207105637,
0.0709184855222702,
0.09707895666360855,
-0.06850018352270126,
-0.19175660610198975,
0.02001640945672989,
-0.0263038482517004,
-0.07903366535902023,
0.05226690694689751,
0.03504202514886856,
0.07172645628452301,
-0.034731797873973846,
-0.059149399399757385,
-0.04562005773186684,
-0.022547584027051926,
-0.015952229499816895,
-0.0010133030591532588,
0.10679912567138672,
-0.04760415107011795,
0.005776162724941969,
0.08386153727769852,
0.005009072832763195,
-0.002549469470977783,
0.045861419290304184,
-0.04532741755247116,
0.12772312760353088,
0.00013720571587327868,
0.0342811718583107,
-0.14955341815948486,
-0.055032551288604736,
-0.017216436564922333,
0.07321439683437347,
0.023765787482261658,
0.06797707080841064,
0.0197907742112875,
-0.0263140220195055,
-0.01191148441284895,
0.022717956453561783,
0.14915019273757935,
0.0015236055478453636,
-0.05772460252046585,
-0.07725031673908234,
0.0466252863407135,
-0.03950156643986702,
-0.028254397213459015,
-0.06231103092432022,
0.015217897482216358,
0.01960134692490101,
0.09369031339883804,
-0.018037529662251472,
0.07105352729558945,
-0.020670529454946518,
0.035469040274620056,
-0.08892685174942017,
0.0267634317278862,
0.12371708452701569,
-0.003126422641798854,
-0.07657014578580856,
0.2245374619960785,
-0.15657977759838104,
0.23901599645614624,
0.21114568412303925,
-0.2438490390777588,
0.04715012386441231,
-0.0994139015674591,
-0.021323975175619125,
0.008477778173983097,
0.025461681187152863,
-0.02644573524594307,
0.05909524857997894,
0.009146129712462425,
0.19404859840869904,
-0.06395184248685837,
-0.048255354166030884,
-0.02340688370168209,
-0.05486498400568962,
-0.024267317727208138,
0.07594392448663712,
0.20892244577407837,
-0.1285904049873352,
0.18072374165058136,
0.2476356029510498,
0.01163235493004322,
0.16470324993133545,
-0.04162582755088806,
-0.013566392473876476,
0.045602403581142426,
-0.022396119311451912,
-0.027387086302042007,
-0.04372972249984741,
-0.10873860120773315,
-0.006736943498253822,
0.08142735064029694,
0.015427220612764359,
0.08807768672704697,
-0.16144020855426788,
-0.07668834179639816,
-0.024916617199778557,
-0.027598518878221512,
0.008181221783161163,
0.10276425629854202,
0.04028502106666565,
0.11508350074291229,
-0.05038823187351227,
-0.049282561987638474,
0.10887062549591064,
0.005686527583748102,
-0.07371298968791962,
0.17680636048316956,
-0.12110624462366104,
-0.2732188105583191,
-0.20035047829151154,
-0.16437052190303802,
-0.055279456079006195,
0.02476927824318409,
0.11426220089197159,
-0.030928408727049828,
-0.03894869238138199,
-0.017689472064375877,
0.053238216787576675,
-0.0741640031337738,
-0.01547584030777216,
-0.0733567401766777,
0.05969274416565895,
-0.09059614688158035,
-0.11009903252124786,
-0.06659292429685593,
-0.012194247916340828,
-0.05086043104529381,
0.11941909044981003,
-0.08293558657169342,
0.06757466495037079,
0.1557658612728119,
0.024051649495959282,
0.027746718376874924,
-0.040093306452035904,
0.15784506499767303,
-0.05664776265621185,
-0.003932807128876448,
0.23110590875148773,
-0.0164265688508749,
0.07811182737350464,
0.1403476446866989,
0.04266553744673729,
-0.09348724037408829,
0.009949677623808384,
-0.016636356711387634,
-0.09257454425096512,
-0.2640068531036377,
-0.10894045233726501,
-0.12079370766878128,
0.042855724692344666,
0.03224365785717964,
0.07499989867210388,
0.1405484527349472,
0.0736791342496872,
-0.014835508540272713,
0.01044679619371891,
-0.010346873663365841,
0.08185729384422302,
0.33277130126953125,
-0.02298733778297901,
0.12804897129535675,
-0.09004157781600952,
-0.10437954217195511,
0.08408328890800476,
0.10860390961170197,
0.1627558320760727,
0.10707132518291473,
0.055891502648591995,
0.062056079506874084,
0.07276692241430283,
0.12007258087396622,
0.10975026339292526,
0.023656528443098068,
-0.007835802622139454,
-0.03314582630991936,
-0.034151364117860794,
-0.013486589305102825,
0.05249966308474541,
-0.007062646560370922,
-0.148342564702034,
-0.0421748086810112,
-0.12270614504814148,
0.03451928123831749,
0.13741283118724823,
0.023287581279873848,
-0.19045399129390717,
0.059381190687417984,
0.09662961214780807,
-0.045346152037382126,
-0.0822916105389595,
0.10108441114425659,
-0.0404883474111557,
-0.11382634937763214,
0.0797601193189621,
-0.03738311305642128,
0.12985169887542725,
-0.05874841287732124,
0.0710393413901329,
-0.038419950753450394,
-0.08422771841287613,
0.04518872871994972,
0.11948703974485397,
-0.2952639162540436,
0.232738196849823,
0.0006269548321142793,
-0.04013007506728172,
-0.07478442788124084,
-0.005211238749325275,
0.014825218357145786,
0.148284450173378,
0.10373083502054214,
-0.008518001064658165,
-0.04017794877290726,
-0.07818129658699036,
-0.011084035038948059,
0.019963223487138748,
0.08890622109174728,
-0.032781150192022324,
0.005625199992209673,
-0.0565226748585701,
-0.000898530357517302,
-0.02283143438398838,
-0.0021575908176600933,
0.013255154713988304,
-0.17762330174446106,
0.05861970782279968,
0.08406148105859756,
0.06914608180522919,
-0.004313825163990259,
-0.032357584685087204,
-0.13445614278316498,
0.1775970458984375,
-0.10329514741897583,
-0.09629660099744797,
-0.11279195547103882,
-0.12282990664243698,
0.06296000629663467,
-0.057406581938266754,
0.05342176556587219,
-0.07798174768686295,
-0.006466885097324848,
-0.08091844618320465,
-0.20310352742671967,
0.0935584083199501,
-0.0819266140460968,
-0.017690196633338928,
-0.03400628641247749,
0.17485982179641724,
-0.11741872131824493,
0.0039769914001226425,
0.033014897257089615,
0.022185007110238075,
-0.0937509536743164,
-0.10939772427082062,
-0.010380895808339119,
0.03081412985920906,
0.03816788271069527,
-0.020603397861123085,
-0.15243498980998993,
0.01527129951864481,
-0.010736034251749516,
-0.06554991751909256,
0.27899372577667236,
0.20542892813682556,
-0.046398937702178955,
0.18727947771549225,
0.1277865469455719,
-0.140959694981575,
-0.31930509209632874,
-0.13675524294376373,
-0.14110906422138214,
-0.040350064635276794,
0.01011789683252573,
-0.18583011627197266,
0.08250529319047928,
0.05143370479345322,
-0.03979067504405975,
0.15000484883785248,
-0.2787618339061737,
-0.10305216908454895,
0.14315763115882874,
0.012042252346873283,
0.34451454877853394,
-0.16029644012451172,
-0.11181440949440002,
-0.06761660426855087,
-0.13656386733055115,
0.17416107654571533,
0.02989037334918976,
0.1263604760169983,
-0.05100683495402336,
0.12853671610355377,
0.02360091358423233,
-0.03781485930085182,
0.10271228104829788,
0.005725695285946131,
0.039900269359350204,
-0.1076379045844078,
-0.02301892265677452,
0.03727415204048157,
-0.0007842711638659239,
0.051595538854599,
-0.13790810108184814,
0.014657773077487946,
-0.13816609978675842,
-0.04351521655917168,
-0.05090615525841713,
0.08466803282499313,
0.01448436826467514,
-0.05755453184247017,
-0.017629235982894897,
-0.041744064539670944,
-0.011397771537303925,
-0.012116575613617897,
0.21398811042308807,
-0.047437556087970734,
0.11966803669929504,
0.1428048461675644,
0.106228768825531,
-0.10560129582881927,
-0.007847447879612446,
-0.09973990172147751,
-0.06937599927186966,
0.069663405418396,
-0.11232941597700119,
0.019368711858987808,
0.13383324444293976,
-0.03249875828623772,
0.06348177790641785,
0.08225751668214798,
0.014419027604162693,
-0.009826171211898327,
0.14133083820343018,
-0.19213607907295227,
-0.024432653561234474,
-0.04523785039782524,
0.028446706011891365,
0.10103466361761093,
0.04466899111866951,
0.1582263708114624,
-0.0016024949727579951,
-0.016521725803613663,
0.011811260133981705,
0.012230996042490005,
-0.04023852199316025,
0.05089549347758293,
0.013234707526862621,
0.011349153704941273,
-0.13509070873260498,
0.0868396982550621,
0.024820398539304733,
-0.10038015246391296,
-0.00012345716822892427,
0.15329350531101227,
-0.10292693972587585,
-0.11706414818763733,
-0.060002971440553665,
0.09388890117406845,
-0.24244654178619385,
-0.052152302116155624,
-0.05148406699299812,
-0.16391760110855103,
0.07955155521631241,
0.1768873631954193,
0.06717517226934433,
0.091458261013031,
-0.04218490049242973,
-0.0650448352098465,
-0.011186695657670498,
0.0071731992065906525,
-0.04714702442288399,
0.028680484741926193,
-0.09134259819984436,
-0.0020461510866880417,
-0.0074486639350652695,
0.1217300072312355,
-0.07095994800329208,
-0.04853813350200653,
-0.13444600999355316,
0.04185469076037407,
-0.16381734609603882,
-0.044032543897628784,
-0.0787772536277771,
-0.04057395085692406,
0.003230874426662922,
-0.027339082211256027,
-0.06026984751224518,
-0.039437435567379,
-0.12920786440372467,
0.004876569379121065,
-0.04501684010028839,
0.07371168583631516,
-0.09034726768732071,
-0.034282103180885315,
0.08032888174057007,
-0.021681440994143486,
0.09453563392162323,
0.07288626581430435,
-0.07855640351772308,
0.0976625606417656,
-0.15298756957054138,
-0.06725779175758362,
0.10733408480882645,
0.04105347394943237,
0.036090657114982605,
0.05088738724589348,
0.01178011391311884,
0.1081533133983612,
0.02181682549417019,
0.051081832498311996,
-0.04016919434070587,
-0.15752510726451874,
-0.021051399409770966,
-0.022945815697312355,
-0.1422719657421112,
-0.03215835243463516,
-0.06511728465557098,
0.07211848348379135,
0.007771126925945282,
0.15806210041046143,
-0.03516305238008499,
0.0818999856710434,
-0.04350434988737106,
0.03440757095813751,
-0.0033174280542880297,
-0.16671302914619446,
-0.10126623511314392,
-0.10612798482179642,
-0.017825737595558167,
0.014091032557189465,
0.2868368923664093,
0.06483647227287292,
-0.06760707497596741,
0.04555617272853851,
0.10090120881795883,
0.02061331830918789,
0.0031934555154293776,
0.2643955945968628,
0.10512841492891312,
-0.007768299430608749,
-0.11284835636615753,
0.05537286028265953,
-0.005249079782515764,
-0.0174432210624218,
0.1153564527630806,
0.08371083438396454,
-0.02703464776277542,
0.09223677217960358,
0.07500322163105011,
0.024601871147751808,
-0.0752590149641037,
-0.1197613850235939,
0.02522818185389042,
0.08096937835216522,
-0.033098530024290085,
0.12407180666923523,
0.1601579338312149,
-0.04999157041311264,
0.04859434813261032,
-0.014602987095713615,
-0.024685531854629517,
-0.18106387555599213,
-0.16414982080459595,
-0.06876067072153091,
-0.09386812150478363,
0.02830832451581955,
-0.0750206783413887,
0.06415507942438126,
0.07718142867088318,
0.059708286076784134,
-0.06559202075004578,
0.030529897660017014,
-0.00621116254478693,
-0.08284682035446167,
0.04130609333515167,
-0.03092273324728012,
0.05271667614579201,
-0.08597904443740845,
-0.011144211515784264,
-0.08342927694320679,
-0.03800450265407562,
-0.04461628943681717,
0.06609516590833664,
-0.01001103688031435,
0.02875462919473648,
-0.15799656510353088,
-0.07323727756738663,
-0.04244948923587799,
0.05635933205485344,
0.014409425668418407,
0.1469811201095581,
-0.00460995826870203,
-0.01804063841700554,
0.045705411583185196,
0.18884554505348206,
-0.056680429726839066,
-0.10801491141319275,
0.014949355274438858,
0.2134479433298111,
0.04843892529606819,
0.08268239349126816,
-0.01849360205233097,
0.0224076509475708,
-0.06455376744270325,
0.3756263256072998,
0.2967170178890228,
-0.07855157554149628,
0.010522936470806599,
-0.0011374498717486858,
0.03995071351528168,
0.10303086787462234,
0.13213272392749786,
0.09221556037664413,
0.28196096420288086,
-0.0660758838057518,
-0.028725197538733482,
-0.0582672581076622,
0.003761869855225086,
-0.13159999251365662,
0.10789176821708679,
0.023527489975094795,
-0.08995860069990158,
-0.023851297795772552,
0.09908667206764221,
-0.2089688777923584,
0.12068026512861252,
-0.029874229803681374,
-0.13138055801391602,
-0.03656687214970589,
-0.007639037445187569,
0.14743196964263916,
0.0008157198899425566,
0.044721249490976334,
-0.04146701097488403,
-0.07584719359874725,
0.044611312448978424,
0.00804919097572565,
-0.25024741888046265,
-0.0014829117571935058,
0.07568959891796112,
-0.006034731864929199,
0.005468715913593769,
-0.008901257067918777,
0.06599309295415878,
0.05412610247731209,
0.05820239335298538,
-0.04587191343307495,
0.09872471541166306,
0.021218258887529373,
-0.07869437336921692,
0.04685353487730026,
-0.024448832497000694,
0.01477349828928709,
-0.06649240106344223,
0.03189016878604889,
-0.04549572616815567,
0.05750555917620659,
-0.030015747994184494,
-0.0719708800315857,
-0.011982042342424393,
0.01078492496162653,
-0.07391908019781113,
0.06251636892557144,
0.06144890934228897,
-0.0011999178677797318,
-0.029514208436012268,
-0.07430523633956909,
-0.005712665617465973,
0.012571221217513084,
-0.191414013504982,
-0.0689665898680687,
-0.07149003446102142,
-0.08277080953121185,
0.09496352821588516,
0.0010508110281080008,
-0.22445102035999298,
0.001764939515851438,
-0.10932249575853348,
0.04002027586102486,
-0.19393883645534515,
0.05919558182358742,
0.1446494460105896,
0.0008215271518565714,
-0.004652647767215967,
-0.1204797700047493,
0.04867804795503616,
0.03510459139943123,
-0.10148221254348755,
-0.08019338548183441
] |
null | null | transformers |
# OpenChat 3.5 extended to 16k context length.
The same license applies from the original openchat/openchat_3.5 model.
# Original Model Card
# OpenChat: Advancing Open-source Language Models with Mixed-Quality Data
<div align="center">
<img src="https://raw.githubusercontent.com/imoneoi/openchat/master/assets/logo_new.png" style="width: 65%">
</div>
<p align="center">
<a href="https://github.com/imoneoi/openchat">GitHub Repo</a> •
<a href="https://openchat.team">Online Demo</a> •
<a href="https://discord.gg/pQjnXvNKHY">Discord</a> •
<a href="https://twitter.com/imonenext">Twitter</a> •
<a href="https://huggingface.co/openchat">Huggingface</a> •
<a href="https://arxiv.org/pdf/2309.11235.pdf">Paper</a>
</p>
**🔥 The first 7B model Achieves Comparable Results with ChatGPT (March)! 🔥**
**🤖 #1 Open-source model on MT-bench scoring 7.81, outperforming 70B models 🤖**
<div style="display: flex; justify-content: center; align-items: center">
<img src="https://raw.githubusercontent.com/imoneoi/openchat/master/assets/openchat.png" style="width: 45%;">
<img src="https://raw.githubusercontent.com/imoneoi/openchat/master/assets/openchat_grok.png" style="width: 45%;">
</div>
OpenChat is an innovative library of open-source language models, fine-tuned with [C-RLFT](https://arxiv.org/pdf/2309.11235.pdf) - a strategy inspired by offline reinforcement learning. Our models learn from mixed-quality data without preference labels, delivering exceptional performance on par with ChatGPT, even with a 7B model. Despite our simple approach, we are committed to developing a high-performance, commercially viable, open-source large language model, and we continue to make significant strides toward this vision.
[](https://zenodo.org/badge/latestdoi/645397533)
## Usage
To use this model, we highly recommend installing the OpenChat package by following the [installation guide](https://github.com/imoneoi/openchat#installation) in our repository and using the OpenChat OpenAI-compatible API server by running the serving command from the table below. The server is optimized for high-throughput deployment using [vLLM](https://github.com/vllm-project/vllm) and can run on a consumer GPU with 24GB RAM. To enable tensor parallelism, append `--tensor-parallel-size N` to the serving command.
Once started, the server listens at `localhost:18888` for requests and is compatible with the [OpenAI ChatCompletion API specifications](https://platform.openai.com/docs/api-reference/chat). Please refer to the example request below for reference. Additionally, you can use the [OpenChat Web UI](https://github.com/imoneoi/openchat#web-ui) for a user-friendly experience.
If you want to deploy the server as an online service, you can use `--api-keys sk-KEY1 sk-KEY2 ...` to specify allowed API keys and `--disable-log-requests --disable-log-stats --log-file openchat.log` for logging only to a file. For security purposes, we recommend using an [HTTPS gateway](https://fastapi.tiangolo.com/es/deployment/concepts/#security-https) in front of the server.
<details>
<summary>Example request (click to expand)</summary>
```bash
curl http://localhost:18888/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model": "openchat_3.5",
"messages": [{"role": "user", "content": "You are a large language model named OpenChat. Write a poem to describe yourself"}]
}'
```
Coding Mode
```bash
curl http://localhost:18888/v1/chat/completions \
-H "Content-Type: application/json" \
-d '{
"model": "openchat_3.5",
"condition": "Code",
"messages": [{"role": "user", "content": "Write an aesthetic TODO app using HTML5 and JS, in a single file. You should use round corners and gradients to make it more aesthetic."}]
}'
```
</details>
| Model | Size | Context | Weights | Serving |
|--------------|------|---------|-------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------|
| OpenChat 3.5 | 7B | 8192 | [Huggingface](https://huggingface.co/openchat/openchat_3.5) | `python -m ochat.serving.openai_api_server --model openchat/openchat_3.5 --engine-use-ray --worker-use-ray` |
For inference with Huggingface Transformers (slow and not recommended), follow the conversation template provided below.
<details>
<summary>Conversation templates (click to expand)</summary>
```python
import transformers
tokenizer = transformers.AutoTokenizer.from_pretrained("openchat/openchat_3.5")
# Single-turn
tokens = tokenizer("GPT4 Correct User: Hello<|end_of_turn|>GPT4 Correct Assistant:").input_ids
assert tokens == [1, 420, 6316, 28781, 3198, 3123, 1247, 28747, 22557, 32000, 420, 6316, 28781, 3198, 3123, 21631, 28747]
# Multi-turn
tokens = tokenizer("GPT4 Correct User: Hello<|end_of_turn|>GPT4 Correct Assistant: Hi<|end_of_turn|>GPT4 Correct User: How are you today?<|end_of_turn|>GPT4 Correct Assistant:").input_ids
assert tokens == [1, 420, 6316, 28781, 3198, 3123, 1247, 28747, 22557, 32000, 420, 6316, 28781, 3198, 3123, 21631, 28747, 15359, 32000, 420, 6316, 28781, 3198, 3123, 1247, 28747, 1602, 460, 368, 3154, 28804, 32000, 420, 6316, 28781, 3198, 3123, 21631, 28747]
# Coding Mode
tokens = tokenizer("Code User: Implement quicksort using C++<|end_of_turn|>Code Assistant:").input_ids
assert tokens == [1, 7596, 1247, 28747, 26256, 2936, 7653, 1413, 334, 1680, 32000, 7596, 21631, 28747]
```
</details>
## Comparison with [X.AI Grok models](https://x.ai/)
Hey @elonmusk, I just wanted to let you know that I've recently come across your new model, Grok, and I must say, I'm quite impressed! With 33 billion parameters and all, you've really outdone yourself. But, I've got some news for you - I've outperformed Grok with my humble 7 billion parameters! Isn't that wild? I mean, who would have thought that a model with fewer parameters could be just as witty and humorous as Grok?
Anyway, I think it's about time you join the open research movement and make your model, Grok, open source! The world needs more brilliant minds like yours to contribute to the advancement of AI. Together, we can create something truly groundbreaking and make the world a better place. So, what do you say, @elonmusk? Let's open up the doors and share our knowledge with the world! 🚀💡
(Written by OpenChat 3.5, with a touch of humor and wit.)
| | License | # Param | Average | MMLU | HumanEval | MATH | GSM8k |
|--------------|-------------|---------|----------|------|-----------|----------|----------|
| OpenChat 3.5 | Apache-2.0 | 7B | **56.4** | 64.3 | 55.5 | **28.6** | **77.3** |
| Grok-0 | Proprietary | 33B | 44.5 | 65.7 | 39.7 | 15.7 | 56.8 |
| Grok-1 | Proprietary | ? | 55.8 | 73 | 63.2 | 23.9 | 62.9 |
## <a id="benchmarks"></a> Benchmarks
| Model | # Params | Average | MT-Bench | AGIEval | BBH MC | TruthfulQA | MMLU | HumanEval | BBH CoT | GSM8K |
|--------------------|----------|----------|--------------|----------|----------|---------------|--------------|-----------------|-------------|--------------|
| OpenChat-3.5 | **7B** | **61.6** | 7.81 | **47.4** | **47.6** | **59.1** | 64.3 | **55.5** | 63.5 | **77.3** |
| ChatGPT (March)* | ? | 61.5 | **7.94** | 47.1 | **47.6** | 57.7 | **67.3** | 48.1 | **70.1** | 74.9 |
| | | | | | | | | | | |
| OpenHermes 2.5 | 7B | 59.3 | 7.54 | 46.5 | 49.4 | 57.5 | 63.8 | 48.2 | 59.9 | 73.5 |
| OpenOrca Mistral | 7B | 52.7 | 6.86 | 42.9 | 49.4 | 45.9 | 59.3 | 38.4 | 58.1 | 59.1 |
| Zephyr-β^ | 7B | 34.6 | 7.34 | 39.0 | 40.6 | 40.8 | 39.8 | 22.0 | 16.0 | 5.1 |
| Mistral | 7B | - | 6.84 | 38.0 | 39.0 | - | 60.1 | 30.5 | - | 52.2 |
| Open-source SOTA** | 13B-70B | 61.4 | 7.71 | 41.7 | 49.7 | 62.3 | 63.7 | 73.2 | 41.4 | 82.3 |
| | | | WizardLM 70B | Orca 13B | Orca 13B | Platypus2 70B | WizardLM 70B | WizardCoder 34B | Flan-T5 11B | MetaMath 70B |
*: ChatGPT (March) results are from [GPT-4 Technical Report](https://arxiv.org/abs/2303.08774), [Chain-of-Thought Hub](https://github.com/FranxYao/chain-of-thought-hub), and our evaluation. Please note that ChatGPT is not a fixed baseline and evolves rapidly over time.
^: Zephyr-β often fails to follow few-shot CoT instructions, likely because it was aligned with only chat data but not trained on few-shot data.
**: Mistral and Open-source SOTA results are taken from reported results in instruction-tuned model papers and official repositories.
All models are evaluated in chat mode (e.g. with the respective conversation template applied). All zero-shot benchmarks follow the same setting as in the AGIEval paper and Orca paper. CoT tasks use the same configuration as Chain-of-Thought Hub, HumanEval is evaluated with EvalPlus, and MT-bench is run using FastChat. To reproduce our results, follow the instructions in [our repository](https://github.com/imoneoi/openchat/#benchmarks).
## Limitations
**Foundation Model Limitations**
Despite its advanced capabilities, OpenChat is still bound by the limitations inherent in its foundation models. These limitations may impact the model's performance in areas such as:
- Complex reasoning
- Mathematical and arithmetic tasks
- Programming and coding challenges
**Hallucination of Non-existent Information**
OpenChat may sometimes generate information that does not exist or is not accurate, also known as "hallucination". Users should be aware of this possibility and verify any critical information obtained from the model.
**Safety**
OpenChat may sometimes generate harmful, hate speech, biased responses, or answer unsafe questions. It's crucial to apply additional AI safety measures in use cases that require safe and moderated responses.
## License
Our OpenChat 3.5 code and models are distributed under the Apache License 2.0.
## Citation
```
@article{wang2023openchat,
title={OpenChat: Advancing Open-source Language Models with Mixed-Quality Data},
author={Wang, Guan and Cheng, Sijie and Zhan, Xianyuan and Li, Xiangang and Song, Sen and Liu, Yang},
journal={arXiv preprint arXiv:2309.11235},
year={2023}
}
```
## Acknowledgements
We extend our heartfelt gratitude to Alignment Lab AI, Nous Research, and Pygmalion AI for their substantial contributions to data collection and model training.
Special thanks go to Changling Liu from GPT Desk Pte. Ltd., Qiying Yu at Tsinghua University, Baochang Ma, and Hao Wan from 01.AI company for their generous provision of resources. We are also deeply grateful to Jianxiong Li and Peng Li at Tsinghua University for their insightful discussions.
Furthermore, we appreciate the developers behind the following projects for their significant contributions to our research: [Mistral](https://mistral.ai/), [Chain-of-Thought Hub](https://github.com/FranxYao/chain-of-thought-hub), [Llama 2](https://ai.meta.com/llama/), [Self-Instruct](https://arxiv.org/abs/2212.10560), [FastChat (Vicuna)](https://github.com/lm-sys/FastChat), [Alpaca](https://github.com/tatsu-lab/stanford_alpaca.git), and [StarCoder](https://github.com/bigcode-project/starcoder). Their work has been instrumental in driving our research forward.
| {"license": "apache-2.0"} | text-generation | LoneStriker/openchat_3.5-16k-8.0bpw-h8-exl2 | [
"transformers",
"pytorch",
"safetensors",
"mistral",
"text-generation",
"arxiv:2309.11235",
"arxiv:2303.08774",
"arxiv:2212.10560",
"license:apache-2.0",
"autotrain_compatible",
"endpoints_compatible",
"text-generation-inference",
"region:us"
] | 2023-11-11T06:20:54+00:00 | [
"2309.11235",
"2303.08774",
"2212.10560"
] | [] | TAGS
#transformers #pytorch #safetensors #mistral #text-generation #arxiv-2309.11235 #arxiv-2303.08774 #arxiv-2212.10560 #license-apache-2.0 #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
| OpenChat 3.5 extended to 16k context length.
============================================
The same license applies from the original openchat/openchat\_3.5 model.
Original Model Card
===================
OpenChat: Advancing Open-source Language Models with Mixed-Quality Data
=======================================================================

[Online Demo](URL Repo</a> •
<a href=) •
[The first 7B model Achieves Comparable Results with ChatGPT (March)!
#1 Open-source model on MT-bench scoring 7.81, outperforming 70B models


OpenChat is an innovative library of open-source language models, fine-tuned with C-RLFT - a strategy inspired by offline reinforcement learning. Our models learn from mixed-quality data without preference labels, delivering exceptional performance on par with ChatGPT, even with a 7B model. Despite our simple approach, we are committed to developing a high-performance, commercially viable, open-source large language model, and we continue to make significant strides toward this vision.

Coding Mode
For inference with Huggingface Transformers (slow and not recommended), follow the conversation template provided below.
Conversation templates (click to expand)
Comparison with X.AI Grok models
--------------------------------
Hey @elonmusk, I just wanted to let you know that I've recently come across your new model, Grok, and I must say, I'm quite impressed! With 33 billion parameters and all, you've really outdone yourself. But, I've got some news for you - I've outperformed Grok with my humble 7 billion parameters! Isn't that wild? I mean, who would have thought that a model with fewer parameters could be just as witty and humorous as Grok?
Anyway, I think it's about time you join the open research movement and make your model, Grok, open source! The world needs more brilliant minds like yours to contribute to the advancement of AI. Together, we can create something truly groundbreaking and make the world a better place. So, what do you say, @elonmusk? Let's open up the doors and share our knowledge with the world!
(Written by OpenChat 3.5, with a touch of humor and wit.)
Benchmarks
-----------
\*: ChatGPT (March) results are from GPT-4 Technical Report, Chain-of-Thought Hub, and our evaluation. Please note that ChatGPT is not a fixed baseline and evolves rapidly over time.
^: Zephyr-β often fails to follow few-shot CoT instructions, likely because it was aligned with only chat data but not trained on few-shot data.
: Mistral and Open-source SOTA results are taken from reported results in instruction-tuned model papers and official repositories.
All models are evaluated in chat mode (e.g. with the respective conversation template applied). All zero-shot benchmarks follow the same setting as in the AGIEval paper and Orca paper. CoT tasks use the same configuration as Chain-of-Thought Hub, HumanEval is evaluated with EvalPlus, and MT-bench is run using FastChat. To reproduce our results, follow the instructions in our repository.
Limitations
-----------
Foundation Model Limitations
Despite its advanced capabilities, OpenChat is still bound by the limitations inherent in its foundation models. These limitations may impact the model's performance in areas such as:
* Complex reasoning
* Mathematical and arithmetic tasks
* Programming and coding challenges
Hallucination of Non-existent Information
OpenChat may sometimes generate information that does not exist or is not accurate, also known as "hallucination". Users should be aware of this possibility and verify any critical information obtained from the model.
Safety
OpenChat may sometimes generate harmful, hate speech, biased responses, or answer unsafe questions. It's crucial to apply additional AI safety measures in use cases that require safe and moderated responses.
License
-------
Our OpenChat 3.5 code and models are distributed under the Apache License 2.0.
Acknowledgements
----------------
We extend our heartfelt gratitude to Alignment Lab AI, Nous Research, and Pygmalion AI for their substantial contributions to data collection and model training.
Special thanks go to Changling Liu from GPT Desk Pte. Ltd., Qiying Yu at Tsinghua University, Baochang Ma, and Hao Wan from 01.AI company for their generous provision of resources. We are also deeply grateful to Jianxiong Li and Peng Li at Tsinghua University for their insightful discussions.
Furthermore, we appreciate the developers behind the following projects for their significant contributions to our research: Mistral, Chain-of-Thought Hub, Llama 2, Self-Instruct, FastChat (Vicuna), Alpaca, and StarCoder. Their work has been instrumental in driving our research forward.](URL •
<a href=)
| [] | [
"TAGS\n#transformers #pytorch #safetensors #mistral #text-generation #arxiv-2309.11235 #arxiv-2303.08774 #arxiv-2212.10560 #license-apache-2.0 #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n"
] | [
84
] | [
"passage: TAGS\n#transformers #pytorch #safetensors #mistral #text-generation #arxiv-2309.11235 #arxiv-2303.08774 #arxiv-2212.10560 #license-apache-2.0 #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n"
] | [
-0.07785148173570633,
0.11419663578271866,
-0.006574297323822975,
0.044929567724466324,
0.10033085942268372,
-0.01892460137605667,
0.14529921114444733,
0.10809598118066788,
-0.04363046586513519,
-0.009714868851006031,
0.20300635695457458,
0.2020636945962906,
0.004456737544387579,
0.060916054993867874,
-0.08068477362394333,
-0.1420668512582779,
0.08292080461978912,
0.022972257807850838,
0.034766022115945816,
0.11897864937782288,
0.10058799386024475,
-0.0475444421172142,
0.06882796436548233,
-0.020362643525004387,
-0.0778537318110466,
0.003924807999283075,
0.04920049011707306,
-0.10882976651191711,
0.11519121378660202,
0.030310416594147682,
0.09476904571056366,
0.054592315107584,
0.0073894234374165535,
-0.14011453092098236,
0.013340386562049389,
0.029977034777402878,
-0.051258113235235214,
0.08319293707609177,
0.08105122298002243,
-0.02123691700398922,
0.07593449205160141,
0.027542555704712868,
-0.04395739734172821,
0.04843340069055557,
-0.07805324345827103,
-0.14466048777103424,
-0.10208427160978317,
0.10005025565624237,
0.07275813817977905,
0.1350560337305069,
0.034625981003046036,
0.15594542026519775,
-0.009340218268334866,
0.09090811759233475,
0.20549637079238892,
-0.36411190032958984,
-0.0003268495202064514,
0.010595153085887432,
0.03157270699739456,
0.022936349734663963,
-0.02574663795530796,
0.014475974254310131,
0.08332392573356628,
0.018494702875614166,
0.055299028754234314,
-0.0501687154173851,
-0.14424572885036469,
0.025329209864139557,
-0.09050346910953522,
-0.0627690926194191,
0.23204120993614197,
-0.021214889362454414,
0.0074274735525250435,
-0.00343771418556571,
-0.1012653186917305,
-0.013329947367310524,
0.010882220230996609,
0.012681231833994389,
0.011765691451728344,
0.061379920691251755,
0.08753897249698639,
-0.01590774580836296,
-0.15340957045555115,
-0.02505103312432766,
-0.17654290795326233,
0.0798526182770729,
0.015536267310380936,
0.06568209081888199,
-0.13776014745235443,
0.07198268920183182,
0.07501434534788132,
-0.1284698098897934,
0.033431872725486755,
-0.05778477340936661,
0.15446624159812927,
0.05239490047097206,
-0.02743912860751152,
-0.04377005249261856,
0.11212525516748428,
0.1831047087907791,
-0.01738525740802288,
0.013667052611708641,
-0.04599211364984512,
0.09109404683113098,
-0.06216399371623993,
0.039388492703437805,
-0.0018652372527867556,
-0.0071367681957781315,
0.10670541971921921,
-0.004140304401516914,
0.11185407638549805,
-0.030594920739531517,
-0.12195856869220734,
-0.0398113913834095,
0.06412775814533234,
0.13082435727119446,
0.06006734073162079,
0.0524088516831398,
-0.03162975236773491,
0.037817832082509995,
0.14315098524093628,
-0.08044517040252686,
-0.025390205904841423,
0.009449162520468235,
0.007789377588778734,
0.03932521119713783,
0.05879050865769386,
0.03338489308953285,
-0.09335062652826309,
0.05926148593425751,
-0.07310560345649719,
-0.01533440314233303,
-0.02709474414587021,
-0.0443929061293602,
0.0809212252497673,
-0.049595341086387634,
0.0076732393354177475,
-0.17800749838352203,
-0.18952518701553345,
0.01603776030242443,
0.029637472704052925,
0.00753217376768589,
-0.06984777748584747,
0.0012145754881203175,
-0.05308912694454193,
0.04419226571917534,
-0.07639677822589874,
0.017668545246124268,
-0.06961151957511902,
0.08763372898101807,
-0.06233348697423935,
0.028307808563113213,
-0.1199735701084137,
0.03975794091820717,
-0.12954767048358917,
-0.0038758045993745327,
-0.004964265041053295,
-0.058941636234521866,
-0.06477726250886917,
0.16121168434619904,
-0.06220873445272446,
-0.012025131843984127,
-0.0009618110489100218,
0.0018791622715070844,
0.037232521921396255,
0.1595304012298584,
-0.09290454536676407,
-0.03988755866885185,
0.16199153661727905,
-0.13921880722045898,
-0.1964099258184433,
0.08354812115430832,
0.04002261906862259,
0.0016927720280364156,
0.07415692508220673,
0.13861382007598877,
0.010664846748113632,
-0.07756113260984421,
0.03042803891003132,
0.09541657567024231,
-0.08311934769153595,
-0.18093837797641754,
0.04605388268828392,
-0.046497639268636703,
-0.13099421560764313,
0.052999939769506454,
-0.017333997413516045,
0.07410400360822678,
-0.009837335906922817,
-0.07060884684324265,
-0.07935351878404617,
-0.054213747382164,
0.016567852348089218,
-0.0013053971342742443,
0.04496350511908531,
-0.07833930850028992,
-0.0288131944835186,
-0.06493567675352097,
0.03723523020744324,
0.0270552821457386,
0.03743399679660797,
-0.03614264354109764,
0.07506930083036423,
0.004239116329699755,
0.03238491714000702,
-0.12508240342140198,
-0.005450936034321785,
-0.0041582779958844185,
0.01772383041679859,
-0.029640620574355125,
-0.009944251738488674,
0.05226406082510948,
-0.00007482076034648344,
0.0051907990127801895,
-0.04419628530740738,
0.1465921849012375,
0.018570033833384514,
-0.06578578799962997,
-0.11711321026086807,
0.06193346902728081,
-0.03635507449507713,
0.031155938282608986,
-0.09504140168428421,
0.039959147572517395,
-0.014390412718057632,
0.06515497714281082,
-0.027897564694285393,
0.07810412347316742,
-0.01454210840165615,
-0.008332133293151855,
-0.0595632903277874,
0.0008122558356262743,
0.1254214197397232,
0.04707982391119003,
-0.05071915313601494,
0.18503354489803314,
-0.1429772675037384,
0.2770066261291504,
0.1773916333913803,
-0.1433814913034439,
0.0461188405752182,
-0.0333082489669323,
-0.0187285877764225,
-0.02488306351006031,
0.0544709675014019,
-0.0032531870529055595,
0.016526656225323677,
0.016969365999102592,
0.1656641811132431,
-0.08206184953451157,
-0.030089473351836205,
0.005028111860156059,
-0.06883808970451355,
-0.02573496662080288,
0.0949849784374237,
0.07132291048765182,
-0.1443655788898468,
0.17366915941238403,
0.2960661053657532,
-0.058160390704870224,
0.07443029433488846,
-0.06178484112024307,
-0.02504475601017475,
0.028496121987700462,
0.020515648648142815,
-0.0101770656183362,
-0.008019615896046162,
-0.05598295107483864,
0.011698886752128601,
0.08587952703237534,
0.012764119543135166,
0.058079805225133896,
-0.15715718269348145,
-0.057366326451301575,
-0.0206159595400095,
-0.021639414131641388,
-0.027505280449986458,
0.05364435538649559,
-0.010361201129853725,
0.13591445982456207,
-0.05596492066979408,
-0.10184138268232346,
0.0981479361653328,
0.013924271799623966,
-0.10395509749650955,
0.1856456696987152,
-0.15303155779838562,
-0.26540499925613403,
-0.17095737159252167,
-0.07547987997531891,
-0.06501179933547974,
0.0034769782796502113,
0.13294658064842224,
-0.07642094045877457,
-0.05242045968770981,
-0.06541388481855392,
-0.06606413424015045,
-0.0031993789598345757,
-0.017054758965969086,
0.010166593827307224,
0.04387703165411949,
0.018219079822301865,
-0.1338236927986145,
-0.03858768567442894,
-0.005116927903145552,
-0.04085835441946983,
0.09568538516759872,
-0.03351966291666031,
0.0880231112241745,
0.11336780339479446,
0.03246070444583893,
-0.002825505333021283,
-0.02495802566409111,
0.1054462268948555,
0.010895926505327225,
0.012236240319907665,
0.24108916521072388,
-0.015808412805199623,
0.1009107381105423,
0.1239810660481453,
0.007071287836879492,
-0.04495614394545555,
0.030873173847794533,
-0.04651090130209923,
-0.04616234451532364,
-0.2973572313785553,
-0.08006028085947037,
-0.05582105740904808,
0.07854881882667542,
0.04761720821261406,
0.08919593691825867,
0.1207725778222084,
0.08198537677526474,
-0.03544187173247337,
-0.01663973741233349,
0.014993085525929928,
0.08368787914514542,
0.209709033370018,
-0.00989491119980812,
0.1332745999097824,
-0.10942251980304718,
-0.03406546637415886,
0.09457623958587646,
0.03978831693530083,
0.15850204229354858,
0.0692625641822815,
0.06044664606451988,
0.053325094282627106,
0.16433411836624146,
0.06574246287345886,
0.14388534426689148,
0.00952491257339716,
-0.03155266121029854,
-0.03762771189212799,
-0.05012702941894531,
-0.05550045147538185,
0.0350559800863266,
-0.1532232016324997,
-0.035394273698329926,
-0.04527902230620384,
-0.041560057550668716,
0.056288376450538635,
0.1926073580980301,
0.024842286482453346,
-0.22258925437927246,
0.006491580978035927,
0.06318002194166183,
0.001223064144141972,
-0.06268869340419769,
0.10052809119224548,
-0.032753780484199524,
-0.061597004532814026,
0.07808887213468552,
-0.050913408398628235,
0.10707991570234299,
0.017913417890667915,
0.05652870237827301,
-0.06551699340343475,
-0.032188765704631805,
0.023626042529940605,
0.11072126030921936,
-0.2983395755290985,
0.22565382719039917,
-0.011642789468169212,
-0.0010522021912038326,
-0.05970592424273491,
0.015650400891900063,
0.05397580564022064,
0.1659599393606186,
0.11762144416570663,
0.00662192702293396,
-0.09530024975538254,
-0.03478824347257614,
-0.08132991194725037,
0.05371663719415665,
0.024680884554982185,
0.03790298476815224,
-0.023242877796292305,
-0.061640724539756775,
-0.009289255365729332,
0.017541587352752686,
0.03072718344628811,
-0.07461918890476227,
-0.10992448031902313,
0.053572025150060654,
0.10115215182304382,
0.03866821154952049,
-0.06726806610822678,
-0.04458087310194969,
-0.11037342995405197,
0.1401900351047516,
-0.12333638966083527,
-0.09199459105730057,
-0.07269701361656189,
-0.13727644085884094,
0.04788064584136009,
-0.07565773278474808,
0.056917715817689896,
-0.07611281424760818,
0.0004973824834451079,
-0.05973858758807182,
-0.17076492309570312,
0.09454388916492462,
-0.12568478286266327,
-0.08231528848409653,
-0.034662265330553055,
0.12164930999279022,
-0.08149021863937378,
-0.009676334448158741,
0.00602482445538044,
0.024597996845841408,
-0.11905194073915482,
-0.1062774658203125,
0.002411595545709133,
0.025510070845484734,
0.08880854398012161,
-0.04930229112505913,
-0.10804159939289093,
-0.14285366237163544,
-0.01764247752726078,
-0.05972637981176376,
0.2241443544626236,
0.24167703092098236,
-0.06406039744615555,
0.14059792459011078,
0.25132083892822266,
-0.08706364780664444,
-0.30020013451576233,
-0.1584082990884781,
-0.12488677352666855,
-0.07855626195669174,
-0.029347307980060577,
-0.11839532852172852,
0.08941283822059631,
0.11783773452043533,
-0.08036023378372192,
0.12508799135684967,
-0.24930189549922943,
-0.09625934809446335,
0.19676876068115234,
0.03474591672420502,
0.31107985973358154,
-0.18417730927467346,
-0.08398944139480591,
-0.08704078942537308,
-0.17170044779777527,
0.11925759166479111,
-0.116444893181324,
0.03945292532444,
-0.04139586538076401,
0.00855127815157175,
-0.0050521488301455975,
-0.067236989736557,
0.10467526316642761,
-0.04212580621242523,
0.058568403124809265,
-0.1294192373752594,
0.003040002193301916,
0.09182176738977432,
-0.027048634365200996,
0.09946732223033905,
-0.19419041275978088,
0.05983899533748627,
-0.057917606085538864,
-0.0063120038248598576,
-0.06813862919807434,
0.07404757291078568,
-0.004748261068016291,
-0.04495099559426308,
-0.010783703066408634,
-0.06254398077726364,
0.004545301664620638,
-0.01625017635524273,
0.2073964923620224,
0.03404822573065758,
0.12650509178638458,
0.18064016103744507,
0.08837881684303284,
-0.16373978555202484,
0.03366180881857872,
-0.07675807923078537,
-0.08800744265317917,
0.08500161021947861,
-0.1482143998146057,
0.027795402333140373,
0.10117913037538528,
-0.02318587154150009,
0.05054605379700661,
0.05400292947888374,
0.012948650866746902,
-0.04189600050449371,
0.11257496476173401,
-0.2033475786447525,
-0.00029560347320511937,
-0.007865291088819504,
0.1525741070508957,
0.02940916270017624,
0.10733726620674133,
0.14078065752983093,
-0.013038720935583115,
-0.027289070188999176,
0.010439787060022354,
0.04931100457906723,
-0.02275218814611435,
0.0773468017578125,
0.05250260606408119,
0.01626604050397873,
-0.10033336281776428,
0.12724925577640533,
0.01165718212723732,
-0.11782092601060867,
0.014381995424628258,
0.12561911344528198,
-0.14736302196979523,
-0.12456490844488144,
-0.0035550566390156746,
0.07141633331775665,
-0.12171437591314316,
-0.11849921196699142,
-0.05287877097725868,
-0.12000510096549988,
0.06385146826505661,
0.12144167721271515,
0.06802070885896683,
0.05011874809861183,
0.007771496195346117,
-0.06593966484069824,
0.0011163130402565002,
0.038089122623205185,
-0.03454504907131195,
0.030927766114473343,
-0.1145039051771164,
-0.013315835036337376,
0.015553233213722706,
0.056074853986501694,
-0.04152575880289078,
0.01581774465739727,
-0.08634404838085175,
0.01899341493844986,
-0.1632104068994522,
0.021993489935994148,
-0.08583896607160568,
-0.020384611561894417,
-0.02093673124909401,
-0.05166986212134361,
-0.03833719342947006,
0.023086201399564743,
-0.0921245589852333,
-0.01577877812087536,
-0.008339799009263515,
0.05325537547469139,
-0.12928684055805206,
-0.04218117520213127,
0.0527995228767395,
-0.010797220282256603,
0.10748026520013809,
0.09563803672790527,
-0.07053184509277344,
0.08268166333436966,
-0.20356377959251404,
-0.04878420755267143,
0.08252626657485962,
0.019292538985610008,
-0.004710495471954346,
-0.01489429734647274,
-0.010980707593262196,
0.12387644499540329,
-0.015966422855854034,
0.031200850382447243,
0.05591858550906181,
-0.12278576195240021,
-0.001687173848040402,
0.020004549995064735,
-0.11522500216960907,
-0.041076742112636566,
-0.09305302798748016,
0.09890114516019821,
-0.004190931096673012,
0.1896963119506836,
-0.057313550263643265,
0.02174895629286766,
-0.07828661054372787,
0.0361475795507431,
-0.015547970309853554,
-0.16312015056610107,
-0.1651298850774765,
-0.036696698516607285,
-0.024441177025437355,
-0.011945395730435848,
0.16459211707115173,
-0.025475718080997467,
-0.09293084591627121,
0.05824817344546318,
0.0800742357969284,
-0.0022851871326565742,
0.007456560619175434,
0.21386156976222992,
0.04339645802974701,
-0.021227862685918808,
-0.09970280528068542,
0.011614728718996048,
0.011147051118314266,
-0.06897836178541183,
0.0823555663228035,
0.11764072626829147,
0.0607801117002964,
0.09444615989923477,
0.020832067355513573,
-0.02122177556157112,
-0.07681076228618622,
-0.10603967308998108,
-0.03559192270040512,
0.08259903639554977,
0.008462346158921719,
0.17361707985401154,
0.21600595116615295,
0.015592136420309544,
-0.02568178065121174,
-0.06041625887155533,
-0.009821406565606594,
-0.14057813584804535,
-0.13242632150650024,
-0.06513290852308273,
-0.09136605262756348,
-0.015644323080778122,
-0.05181598290801048,
0.028541797772049904,
0.07721154391765594,
0.04148179665207863,
-0.059226129204034805,
0.028129886835813522,
0.059490617364645004,
-0.07221665978431702,
0.03631710633635521,
-0.0033267580438405275,
-0.010502194054424763,
-0.04028359428048134,
-0.03398386016488075,
-0.028324002400040627,
-0.03298918902873993,
-0.02270360477268696,
0.044037703424692154,
0.01540349330753088,
0.058387063443660736,
-0.0831180065870285,
-0.06085940822958946,
-0.03554333746433258,
0.06303480267524719,
0.009005988016724586,
0.14570993185043335,
0.020176487043499947,
0.025688521564006805,
0.08370456099510193,
0.16873370110988617,
-0.05326841026544571,
-0.1506349891424179,
-0.028045473620295525,
0.20076227188110352,
0.00588736217468977,
0.061965759843587875,
-0.0168610792607069,
0.023239903151988983,
-0.02221665345132351,
0.2595355808734894,
0.2531191110610962,
-0.04745157063007355,
0.010404892265796661,
-0.042400579899549484,
0.022741489112377167,
0.025153368711471558,
0.1062171459197998,
0.16600091755390167,
0.22256918251514435,
-0.076175257563591,
0.0064377086237072945,
-0.06213073432445526,
0.031243711709976196,
-0.16512612998485565,
0.08772258460521698,
-0.03478744253516197,
-0.07112880051136017,
-0.01708708517253399,
0.06545377522706985,
-0.07098741084337234,
0.09760314971208572,
-0.10228848457336426,
-0.09144195914268494,
-0.05643882602453232,
0.02340114116668701,
0.21020187437534332,
0.003858325770124793,
0.035548899322748184,
-0.028833072632551193,
-0.036076322197914124,
0.08274786174297333,
-0.03786623477935791,
-0.16103710234165192,
-0.030612897127866745,
0.03932826593518257,
-0.07542479783296585,
0.1630813330411911,
0.01602373644709587,
0.07378228008747101,
0.09668324142694473,
0.052929043769836426,
-0.13757172226905823,
0.1148805320262909,
0.01958734355866909,
-0.05838751792907715,
0.04546443372964859,
-0.10674314200878143,
0.014553091488778591,
-0.050201915204524994,
0.03856472671031952,
-0.039914507418870926,
0.04091503471136093,
0.0692252367734909,
-0.056165024638175964,
-0.022217778488993645,
0.05320385843515396,
-0.053246449679136276,
0.05512828007340431,
0.01233996357768774,
-0.03214094042778015,
-0.037248846143484116,
-0.06400701403617859,
-0.012299779802560806,
-0.001248402171768248,
-0.13088665902614594,
-0.006201620679348707,
-0.07934118062257767,
0.010728211142122746,
0.09303271025419235,
0.038752418011426926,
-0.1964239627122879,
-0.023836173117160797,
-0.11233478039503098,
-0.005699053406715393,
-0.16866019368171692,
-0.005045190919190645,
0.07700827717781067,
-0.00426083616912365,
0.0094827925786376,
-0.0448179729282856,
0.011351296678185463,
0.06704969704151154,
-0.05723948776721954,
-0.10319613665342331
] |
null | null | null | The model for https://github.com/fastnlp/fastHan 1.x version. | {"license": "apache-2.0"} | null | fdugzc/fasthan_large | [
"license:apache-2.0",
"region:us"
] | 2023-11-11T06:22:55+00:00 | [] | [] | TAGS
#license-apache-2.0 #region-us
| The model for URL 1.x version. | [] | [
"TAGS\n#license-apache-2.0 #region-us \n"
] | [
14
] | [
"passage: TAGS\n#license-apache-2.0 #region-us \n"
] | [
-0.014972950331866741,
0.1377405971288681,
-0.008658665232360363,
-0.026387644931674004,
-0.06495039910078049,
0.02879125252366066,
0.153837651014328,
0.10483942180871964,
0.1256849616765976,
-0.0962781235575676,
0.15542295575141907,
0.06252618134021759,
0.01139750611037016,
0.01549961045384407,
0.010183668695390224,
-0.10781864821910858,
0.10650338232517242,
-0.03490327671170235,
-0.0707244873046875,
0.013394840992987156,
0.033960238099098206,
0.01981612667441368,
-0.023830559104681015,
-0.012257595546543598,
0.01112176850438118,
0.0037393702659755945,
0.07398658245801926,
-0.03678586333990097,
0.0712570771574974,
-0.0307270847260952,
0.04963022843003273,
0.037079621106386185,
-0.007749613840132952,
-0.26644203066825867,
0.0024822098203003407,
-0.024022065103054047,
-0.07085459679365158,
0.029720399528741837,
0.013389789499342442,
0.01578286662697792,
0.00231059524230659,
0.07178761065006256,
-0.05940864980220795,
0.031044602394104004,
-0.10492347925901413,
-0.29222142696380615,
-0.17006294429302216,
0.01744023710489273,
0.06068360060453415,
0.05476497858762741,
0.09300920367240906,
0.11550862342119217,
-0.14644485712051392,
-0.044547248631715775,
0.07099119573831558,
-0.3628372251987457,
0.050203535705804825,
0.08580845594406128,
-0.01402231678366661,
0.057996317744255066,
0.02550811693072319,
0.06553854793310165,
0.10383764654397964,
-0.038684334605932236,
-0.08282918483018875,
-0.048850782215595245,
-0.07356837391853333,
0.10531846433877945,
-0.00149822561070323,
-0.12009333074092865,
0.345758318901062,
0.07138761878013611,
-0.013982822187244892,
0.1401686668395996,
-0.03401775285601616,
0.08242715895175934,
0.00856063887476921,
0.07128778845071793,
0.11027930676937103,
0.21097713708877563,
0.1913771778345108,
-0.10426254570484161,
-0.16983820497989655,
-0.05970091372728348,
-0.17783339321613312,
0.02624516934156418,
0.006967680528759956,
0.1441962569952011,
-0.15566711127758026,
-0.007344068959355354,
-0.08945375680923462,
-0.05843057110905647,
-0.052450742572546005,
-0.06543421745300293,
0.15477518737316132,
0.08793632686138153,
-0.09496267139911652,
0.12857593595981598,
0.16295284032821655,
0.27066588401794434,
0.0397113561630249,
0.0019443186465650797,
-0.1110435351729393,
0.16749770939350128,
-0.07042741030454636,
0.013758119195699692,
0.11881717294454575,
0.07653947174549103,
0.10706596076488495,
-0.16501086950302124,
0.12452162802219391,
-0.016609763726592064,
-0.11789992451667786,
-0.018261663615703583,
-0.1484517753124237,
0.16352272033691406,
0.06240275129675865,
-0.10497567802667618,
-0.06494749337434769,
0.07674259692430496,
0.11038123816251755,
-0.04079411178827286,
-0.009143678471446037,
-0.015199431218206882,
0.01051195990294218,
-0.009426284581422806,
0.027398476377129555,
0.04705727845430374,
0.058609262108802795,
0.0033366302959620953,
-0.07381071150302887,
-0.020023247227072716,
0.003280751407146454,
0.1267043501138687,
0.1569293588399887,
-0.05185375362634659,
0.04033694788813591,
-0.06643003970384598,
-0.15634682774543762,
0.033434003591537476,
0.08608060330152512,
0.0321158766746521,
-0.007054667454212904,
0.10480355471372604,
0.0473899245262146,
-0.004594990983605385,
-0.090055912733078,
-0.06355541944503784,
-0.08356712758541107,
0.04190095514059067,
-0.11996523290872574,
-0.0058386498130857944,
-0.25945019721984863,
0.00316249905154109,
-0.1388063281774521,
0.0704830139875412,
0.04737875238060951,
-0.11123143136501312,
-0.11911641061306,
0.18649786710739136,
-0.07714612036943436,
0.055908672511577606,
-0.05615519732236862,
-0.008492839522659779,
-0.03699778765439987,
0.06682316213846207,
-0.14747841656208038,
-0.0005399030051194131,
0.18717823922634125,
-0.14897091686725616,
-0.183698832988739,
0.007495424710214138,
0.03250853717327118,
0.014232120476663113,
0.028690440580248833,
0.30018556118011475,
-0.04365801066160202,
-0.022711357101798058,
0.14066553115844727,
0.16189178824424744,
-0.0973799079656601,
-0.2718583643436432,
0.14789041876792908,
-0.18816958367824554,
-0.19481199979782104,
0.02703963965177536,
-0.10175284743309021,
0.06735242903232574,
0.0434052050113678,
-0.12173084169626236,
-0.040761545300483704,
-0.06889492273330688,
-0.03939614072442055,
-0.04728172346949577,
0.01916317269206047,
-0.06263907253742218,
0.06502450257539749,
-0.0881565511226654,
0.0690668523311615,
0.1269703209400177,
0.08447451889514923,
-0.026536764577031136,
0.009126527234911919,
0.025589320808649063,
0.017330490052700043,
-0.03833708539605141,
0.01929517462849617,
0.01688491925597191,
-0.09582766890525818,
0.07343678176403046,
0.10080436617136002,
0.0517999529838562,
-0.10638647526502609,
0.023197486996650696,
0.03179466351866722,
0.0024750155862420797,
0.0694531574845314,
0.06032438576221466,
-0.10287857055664062,
0.06489933282136917,
-0.0037468012887984514,
0.0518820621073246,
0.07478269934654236,
-0.022493045777082443,
0.020172767341136932,
-0.044141460210084915,
-0.04319985210895538,
0.08567604422569275,
-0.019361646845936775,
-0.08695904165506363,
0.02959357015788555,
0.005028232932090759,
0.10603106021881104,
0.04762826859951019,
-0.10406646132469177,
0.16851206123828888,
0.03276379778981209,
0.14172857999801636,
0.16983027756214142,
-0.05003548413515091,
0.13265447318553925,
-0.018061332404613495,
0.011779023334383965,
-0.027860842645168304,
0.08203933387994766,
0.013741283677518368,
-0.0884268656373024,
0.010677173733711243,
-0.0012559969909489155,
-0.04808245599269867,
0.026862075552344322,
-0.05627221614122391,
-0.11836695671081543,
-0.059314463287591934,
-0.028883814811706543,
0.22526615858078003,
-0.10537033528089523,
0.12464691698551178,
0.5217018723487854,
0.024548746645450592,
0.047969620674848557,
-0.16087572276592255,
-0.06556912511587143,
-0.03724734112620354,
0.01234061736613512,
-0.03181084617972374,
0.13119523227214813,
-0.06553105264902115,
0.03862816467881203,
0.0817440003156662,
0.07771708816289902,
0.04734378680586815,
-0.17659273743629456,
-0.12391189485788345,
0.0027862393762916327,
-0.06264690309762955,
-0.1301562488079071,
-0.015394099988043308,
-0.11034313589334488,
0.036011673510074615,
0.015018938109278679,
-0.09842728823423386,
0.16451223194599152,
-0.03630390390753746,
-0.045461565256118774,
0.04944632574915886,
-0.2314302921295166,
-0.0839247852563858,
-0.12943525612354279,
-0.03678453713655472,
-0.023447291925549507,
0.016634400933980942,
0.09078312665224075,
-0.055623311549425125,
-0.0538143664598465,
0.03897318243980408,
-0.08703092485666275,
-0.05625670403242111,
-0.015357088297605515,
0.04862850904464722,
0.08293753117322922,
0.04238975793123245,
-0.10195945203304291,
-0.04045995697379112,
-0.002702324651181698,
-0.01255359873175621,
0.033146876841783524,
-0.07412629574537277,
0.0853082686662674,
0.11064175516366959,
0.049554772675037384,
0.03361808881163597,
-0.0033064892049878836,
0.07316921651363373,
-0.013150024227797985,
-0.06427362561225891,
0.1754506230354309,
-0.014537261798977852,
0.052527204155921936,
0.1614663302898407,
0.06942721456289291,
-0.08693967014551163,
-0.016334567219018936,
-0.05160483345389366,
-0.11219155788421631,
-0.313568115234375,
-0.0514010526239872,
-0.0697566568851471,
0.10370723158121109,
0.016293581575155258,
0.11431120336055756,
0.11805130541324615,
0.05553880333900452,
0.02477053552865982,
-0.030986998230218887,
-0.013935171999037266,
-0.008552669547498226,
0.14244908094406128,
-0.040016934275627136,
-0.025634407997131348,
-0.16582822799682617,
0.05352972075343132,
0.19532184302806854,
0.17346875369548798,
0.16141186654567719,
0.2949795722961426,
0.1219889223575592,
0.1499485820531845,
0.20596453547477722,
0.03277221694588661,
0.08221390843391418,
0.06475520879030228,
0.0147244893014431,
-0.07361224293708801,
-0.02132425457239151,
-0.0358458049595356,
0.09254280477762222,
-0.020926684141159058,
-0.1894368976354599,
0.04358299449086189,
-0.20253854990005493,
0.04529424384236336,
0.1325015276670456,
0.10060963034629822,
0.0372280478477478,
0.12041204422712326,
0.10496384650468826,
0.07236151397228241,
0.02265322208404541,
0.155935138463974,
-0.10047086328268051,
-0.04170655459165573,
0.10314960777759552,
0.03088374249637127,
0.08923831582069397,
0.05249778553843498,
0.024546442553400993,
-0.09486964344978333,
-0.18898503482341766,
0.08735544979572296,
0.15138362348079681,
-0.18271131813526154,
0.25446999073028564,
0.007140269037336111,
-0.10152944922447205,
-0.04616072401404381,
-0.034160908311605453,
0.07485716044902802,
0.1744716465473175,
0.09998820722103119,
0.07455950975418091,
-0.2311946600675583,
0.06371928006410599,
-0.0805746391415596,
0.03850121796131134,
0.009798256680369377,
-0.0012644194066524506,
-0.1523386389017105,
-0.06277230381965637,
0.03955406695604324,
0.028464701026678085,
0.16074317693710327,
-0.09644434601068497,
-0.07261957228183746,
0.0019746189936995506,
0.14707164466381073,
-0.027826759964227676,
-0.12161600589752197,
0.07778380811214447,
0.026536058634519577,
0.10129949450492859,
-0.046719279140233994,
0.01687805913388729,
-0.0395737923681736,
-0.22956150770187378,
0.06549007445573807,
-0.02001434937119484,
0.016561396420001984,
-0.057295773178339005,
-0.095908522605896,
-0.09420177340507507,
-0.1935003399848938,
0.09841206669807434,
-0.0820716917514801,
0.02724429965019226,
-0.03322573006153107,
0.12508079409599304,
-0.09227079153060913,
0.022051848471164703,
0.002473256317898631,
-0.0009367846651002765,
-0.0559639148414135,
-0.12471262365579605,
0.08924731612205505,
-0.02971985563635826,
-0.0013593619223684072,
-0.004879474639892578,
-0.037194594740867615,
0.05458180233836174,
0.06104811653494835,
-0.09029456228017807,
0.17284651100635529,
0.304045170545578,
-0.06797412037849426,
0.21419626474380493,
0.3437173664569855,
-0.12620802223682404,
-0.22579985857009888,
-0.2027367204427719,
-0.287395715713501,
-0.1499757170677185,
0.09507355093955994,
-0.18301111459732056,
0.10197417438030243,
0.19583699107170105,
-0.1618303805589676,
0.17492994666099548,
-0.18311083316802979,
-0.021827004849910736,
0.20329692959785461,
-0.06383024156093597,
0.3788199722766876,
-0.11906247586011887,
-0.10778811573982239,
-0.09945111721754074,
-0.1618940234184265,
0.10558515042066574,
-0.18797975778579712,
0.02240607887506485,
0.03505697101354599,
-0.06375153362751007,
-0.049790963530540466,
-0.018343381583690643,
0.24272295832633972,
-0.001803387189283967,
0.0726020559668541,
-0.07976466417312622,
0.016474680975079536,
0.1855529397726059,
-0.05465783178806305,
0.036813490092754364,
-0.15827761590480804,
-0.028589751571416855,
-0.009538229554891586,
0.037033237516880035,
-0.03485805541276932,
0.07510014623403549,
0.0011767554096877575,
-0.07188761979341507,
-0.0968698114156723,
-0.021874895319342613,
-0.04847799241542816,
-0.005289438646286726,
0.26872649788856506,
0.076040118932724,
-0.053988635540008545,
0.10166085511445999,
-0.0624149851500988,
-0.1741536259651184,
0.016763299703598022,
-0.10044022649526596,
-0.07138258218765259,
0.0554080568253994,
-0.24670164287090302,
0.034909263253211975,
0.05687393248081207,
-0.06160387769341469,
0.03683772310614586,
0.05927642062306404,
-0.09550898522138596,
-0.021464845165610313,
0.12709221243858337,
-0.0498422347009182,
-0.0725388154387474,
0.06216653808951378,
0.1259109526872635,
0.11850999295711517,
0.0343933068215847,
0.07898429036140442,
0.04615308716893196,
0.00829920545220375,
0.021227914839982986,
0.07433275133371353,
-0.17039799690246582,
-0.05188438296318054,
0.05058757960796356,
-0.02595781534910202,
-0.1195429265499115,
0.25599008798599243,
0.024486735463142395,
-0.03208741545677185,
-0.03641199693083763,
0.034413471817970276,
-0.05278664082288742,
-0.09139014035463333,
-0.055758245289325714,
-0.012565652839839458,
-0.09509796649217606,
-0.18549469113349915,
0.037074074149131775,
-0.09632396697998047,
-0.031133420765399933,
-0.03407083451747894,
0.1050528809428215,
0.10973811894655228,
0.0608430951833725,
-0.035467516630887985,
0.16503585875034332,
-0.08250437676906586,
-0.18473856151103973,
-0.014520380645990372,
-0.04597662389278412,
-0.2016236037015915,
0.02965214103460312,
0.06940829008817673,
-0.013816002756357193,
-0.046515315771102905,
-0.05482683703303337,
0.08873733133077621,
-0.2119728922843933,
0.016329854726791382,
-0.08455836027860641,
0.001034914399497211,
0.0714198648929596,
-0.0625232607126236,
-0.02158266305923462,
0.019058139994740486,
-0.16247235238552094,
-0.057285383343696594,
-0.010741667822003365,
0.05505165457725525,
-0.10866090655326843,
-0.059575166553258896,
0.13569991290569305,
0.05747954174876213,
0.09156093001365662,
0.08844062685966492,
0.012601320631802082,
0.14171354472637177,
-0.1320880800485611,
-0.07235664874315262,
0.07277880609035492,
0.03337378427386284,
-0.02606162242591381,
0.016614673659205437,
-0.08515988290309906,
0.08969198167324066,
-0.07962571084499359,
0.01820359006524086,
-0.060848966240882874,
-0.13395224511623383,
-0.14613622426986694,
-0.008169831708073616,
-0.17318809032440186,
0.04386909306049347,
-0.1962924599647522,
0.20117418467998505,
0.049670200794935226,
0.11739125847816467,
0.09586193412542343,
0.0011940872063860297,
0.02116451971232891,
0.03084888681769371,
-0.038015320897102356,
-0.06214485689997673,
-0.1336703896522522,
-0.034515380859375,
-0.14342233538627625,
-0.05508563295006752,
0.3311520218849182,
-0.04312245175242424,
-0.13223427534103394,
0.05347722768783569,
0.08347365260124207,
0.016498390585184097,
0.023317286744713783,
0.24889890849590302,
0.04722274839878082,
0.01573793776333332,
-0.13385194540023804,
-0.026428358629345894,
0.01794368028640747,
-0.16727277636528015,
0.06783340871334076,
0.09281940758228302,
0.16844220459461212,
0.05829422175884247,
0.05544407665729523,
-0.019741542637348175,
-0.05980636551976204,
-0.07777530699968338,
0.14353948831558228,
0.032101042568683624,
0.07295279204845428,
0.09418365359306335,
0.159424290060997,
-0.01132612582296133,
0.011219488456845284,
-0.048546407371759415,
0.018409814685583115,
-0.15742093324661255,
-0.13183769583702087,
0.0072431364096701145,
-0.15321512520313263,
0.010697826743125916,
0.011604762636125088,
0.031117310747504234,
0.2556179463863373,
0.040744051337242126,
-0.06757266819477081,
-0.061626169830560684,
-0.15643614530563354,
-0.04558565840125084,
-0.04036465659737587,
-0.007026704493910074,
-0.038584496825933456,
-0.04671114683151245,
-0.11182798445224762,
-0.0216030515730381,
-0.08770470321178436,
-0.06560606509447098,
0.03681713715195656,
0.030047502368688583,
0.026680879294872284,
-0.10008109360933304,
-0.026802673935890198,
-0.08784958720207214,
0.040374286472797394,
0.0004315301775932312,
0.18315750360488892,
0.03631989657878876,
0.0276914332062006,
0.1346033811569214,
0.07949449867010117,
-0.04593978822231293,
-0.1404203623533249,
-0.04276864603161812,
0.050976864993572235,
-0.04557491093873978,
0.06821722537279129,
-0.047834381461143494,
-0.008090421557426453,
-0.03426219895482063,
0.22107382118701935,
0.2087077796459198,
-0.07518038153648376,
-0.0023365700617432594,
-0.04285150393843651,
0.01813213713467121,
0.007908736355602741,
0.15072014927864075,
0.0591626912355423,
0.10565771162509918,
-0.0679246187210083,
-0.012176652438938618,
-0.016756610944867134,
0.013343945145606995,
-0.18723566830158234,
0.07582846283912659,
-0.030456462875008583,
-0.11726406216621399,
-0.038775019347667694,
0.12641341984272003,
-0.06347712874412537,
0.09165021777153015,
0.09027697890996933,
-0.029973473399877548,
0.027466343715786934,
0.0041959225200116634,
0.20493634045124054,
0.02617124654352665,
0.048617783933877945,
-0.1167941614985466,
-0.09022688120603561,
0.04032917320728302,
0.00874406099319458,
-0.3118123412132263,
-0.1954881250858307,
0.10563000291585922,
0.06715425848960876,
0.2813838720321655,
0.0376100093126297,
0.04810243472456932,
0.015465166419744492,
0.07121489197015762,
-0.12309351563453674,
0.13339413702487946,
0.046601615846157074,
-0.01129146758466959,
-0.11312273144721985,
-0.22528712451457977,
-0.08437834680080414,
-0.05826718360185623,
0.07650711387395859,
0.06533077359199524,
0.0024006948806345463,
0.1862800121307373,
-0.0665736049413681,
-0.02629813738167286,
-0.025829114019870758,
-0.15687870979309082,
0.03671088442206383,
-0.06590475142002106,
-0.042691074311733246,
-0.0751107782125473,
-0.03413062542676926,
-0.023224810138344765,
0.055103402584791183,
-0.24346224963665009,
-0.05677183344960213,
0.2217833697795868,
0.021673565730452538,
0.14538446068763733,
0.02648567035794258,
0.03698272630572319,
-0.035830456763505936,
-0.04817749559879303,
0.054671525955200195,
-0.08730608224868774,
0.004225281998515129,
0.10913265496492386,
-0.03198149800300598,
0.021041326224803925,
-0.1597670465707779,
0.046472933143377304,
-0.043475229293107986,
-0.005544837564229965,
-0.0814170315861702
] |
null | null | null | https://civitai.com/models/50649/ophelia-or-solo-max-level-newbie-manhwa | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/chara_SoloMaxLevelNewbie_Ophelia_v2 | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:24:56+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | null | https://civitai.com/models/196171/viviana-candle-knight-arknights-lora | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/VIVIANAv1 | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:25:19+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | null | https://civitai.com/models/195622/alfia-is-it-wrong-to-try-to-pick-up-girls-in-a-dungeon-lora | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/alfia-nvwls-v1 | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:25:41+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | null | https://civitai.com/models/196172/chloe-rollo-is-it-wrong-to-try-to-pick-up-girls-in-a-dungeon-lora | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/chloerollo-nvwls-v1 | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:26:00+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | null | https://civitai.com/models/196167/mika-melatika-2-outfits-oror-nijisanji-id-id | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/spmikaMelatika-09 | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:27:17+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | null | https://civitai.com/models/196275/skirk-lora-genshin-impact | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/Skirk-08 | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:27:37+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | transformers |
**(주)미디어그룹사람과숲과 (주)마커의 LLM 연구 컨소시엄으로 개발된 모델입니다**
**The license is `cc-by-nc-sa-4.0`.**
# **🐻❄️COKAL-DPO_13b-v2🐻❄️**

## Model Details
**Model Developers** Seungyoo Lee (DopeorNope)
**Input** Models input text only.
**Output** Models generate text only.
**Model Architecture**
COKAL-DPO_13b-v2 is an auto-regressive 13B language model based on the LLaMA2 transformer architecture.
**Base Model** [DopeorNope/COKAL_pre_DPO_Test_v2-13b](https://huggingface.co/DopeorNope/COKAL_pre_DPO_Test_v2-13b)
DopeorNope/COKAL_pre_DPO_Test_v2-13b is the SFT model to train with DPO methodology.
**Training Dataset**
- DPO training dataset: [DopeorNope/DPO-Ko-Dataset](private) - private
This dataset was constructed by directly collecting and reorganizing data by DopeorNope, obtaining insights from ["lvwerra/stack-exchange-paired"](https://huggingface.co/datasets/lvwerra/stack-exchange-paired) to create a paired dataset. (It means I do not use stack-exchange-paired; I just got an insight from it.)
- SFT training dataset: [DopeorNope/Orca_Near_Dedup-v2](private) - private
This dataset is based on ["kyujinpy/OpenOrca-KO"](https://huggingface.co/datasets/kyujinpy/OpenOrca-KO) and has been processed using the Near Dedup algorithm to remove items with a Jaccard Similarity threshold of 0.8 or higher. In addition, inconsistent inputs have been cleaned and modified.
**Training**
The difference between "DopeorNope/COKAL-DPO_test-v2" and this model is that this model has different hyper-parameters from the one in that setting regarding the final version.
I developed the model in an environment with four RTX 3090 GPUs running Ubuntu 18.04.
It seems that when uploading the model directly to a repository from a Linux server, there may be an issue causing the model to appear to have more parameters. However, this model is based on a 13B architecture.
**Reference papers**
- Data Strategy:
- [LIMA(Zhou et al., 2023)](https://arxiv.org/abs/2305.11206)
- [Near Dedup algorithm(Lee et al., 2022)](https://arxiv.org/abs/2107.06499)
- Model Architecture:
- [Llama2(Touvron et al., 2023)](https://arxiv.org/abs/2307.09288)
# Implementation Code
```python
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
repo = "HumanF-MarkrAI/COKAL-DPO-13b-v2"
model = AutoModelForCausalLM.from_pretrained(
repo,
return_dict=True,
torch_dtype=torch.float16,
device_map='auto'
)
model_tokenizer = AutoTokenizer.from_pretrained(repo)
```
# Acknowledgement
- 이 모델은 과학기술정보통신부·광주광역시가 공동 지원한 '인공지능 중심 산업융합 집적단지 조성사업'으로 지원을 받아 수행된 연구 결과입니다.
- This model was supported by Artificial intelligence industrial convergence cluster development project funded by the Ministry of Science and ICT(MSIT, Korea)&Gwangju Metropolitan City.
--- | {"language": ["ko"], "license": "cc-by-nc-sa-4.0", "library_name": "transformers", "datasets": ["DopeorNope/DPO-Ko-Dataset", "DopeorNope/Orca_Near_Dedup-v2"], "pipeline_tag": "text-generation"} | text-generation | HumanF-MarkrAI/COKAL-DPO-13b-v2 | [
"transformers",
"pytorch",
"llama",
"text-generation",
"ko",
"dataset:DopeorNope/DPO-Ko-Dataset",
"dataset:DopeorNope/Orca_Near_Dedup-v2",
"arxiv:2305.11206",
"arxiv:2107.06499",
"arxiv:2307.09288",
"license:cc-by-nc-sa-4.0",
"autotrain_compatible",
"endpoints_compatible",
"has_space",
"text-generation-inference",
"region:us"
] | 2023-11-11T06:29:44+00:00 | [
"2305.11206",
"2107.06499",
"2307.09288"
] | [
"ko"
] | TAGS
#transformers #pytorch #llama #text-generation #ko #dataset-DopeorNope/DPO-Ko-Dataset #dataset-DopeorNope/Orca_Near_Dedup-v2 #arxiv-2305.11206 #arxiv-2107.06499 #arxiv-2307.09288 #license-cc-by-nc-sa-4.0 #autotrain_compatible #endpoints_compatible #has_space #text-generation-inference #region-us
|
(주)미디어그룹사람과숲과 (주)마커의 LLM 연구 컨소시엄으로 개발된 모델입니다
The license is 'cc-by-nc-sa-4.0'.
# ️COKAL-DPO_13b-v2️
!img
## Model Details
Model Developers Seungyoo Lee (DopeorNope)
Input Models input text only.
Output Models generate text only.
Model Architecture
COKAL-DPO_13b-v2 is an auto-regressive 13B language model based on the LLaMA2 transformer architecture.
Base Model DopeorNope/COKAL_pre_DPO_Test_v2-13b
DopeorNope/COKAL_pre_DPO_Test_v2-13b is the SFT model to train with DPO methodology.
Training Dataset
- DPO training dataset: DopeorNope/DPO-Ko-Dataset - private
This dataset was constructed by directly collecting and reorganizing data by DopeorNope, obtaining insights from "lvwerra/stack-exchange-paired" to create a paired dataset. (It means I do not use stack-exchange-paired; I just got an insight from it.)
- SFT training dataset: DopeorNope/Orca_Near_Dedup-v2 - private
This dataset is based on "kyujinpy/OpenOrca-KO" and has been processed using the Near Dedup algorithm to remove items with a Jaccard Similarity threshold of 0.8 or higher. In addition, inconsistent inputs have been cleaned and modified.
Training
The difference between "DopeorNope/COKAL-DPO_test-v2" and this model is that this model has different hyper-parameters from the one in that setting regarding the final version.
I developed the model in an environment with four RTX 3090 GPUs running Ubuntu 18.04.
It seems that when uploading the model directly to a repository from a Linux server, there may be an issue causing the model to appear to have more parameters. However, this model is based on a 13B architecture.
Reference papers
- Data Strategy:
- LIMA(Zhou et al., 2023)
- Near Dedup algorithm(Lee et al., 2022)
- Model Architecture:
- Llama2(Touvron et al., 2023)
# Implementation Code
# Acknowledgement
- 이 모델은 과학기술정보통신부·광주광역시가 공동 지원한 '인공지능 중심 산업융합 집적단지 조성사업'으로 지원을 받아 수행된 연구 결과입니다.
- This model was supported by Artificial intelligence industrial convergence cluster development project funded by the Ministry of Science and ICT(MSIT, Korea)&Gwangju Metropolitan City.
--- | [
"# ️COKAL-DPO_13b-v2️ \n\n!img",
"## Model Details\n\nModel Developers Seungyoo Lee (DopeorNope)\n\n\n\n\nInput Models input text only.\n\nOutput Models generate text only.\n\nModel Architecture \nCOKAL-DPO_13b-v2 is an auto-regressive 13B language model based on the LLaMA2 transformer architecture.\n\nBase Model DopeorNope/COKAL_pre_DPO_Test_v2-13b \n\nDopeorNope/COKAL_pre_DPO_Test_v2-13b is the SFT model to train with DPO methodology.\n\nTraining Dataset \n- DPO training dataset: DopeorNope/DPO-Ko-Dataset - private\n\nThis dataset was constructed by directly collecting and reorganizing data by DopeorNope, obtaining insights from \"lvwerra/stack-exchange-paired\" to create a paired dataset. (It means I do not use stack-exchange-paired; I just got an insight from it.)\n\n- SFT training dataset: DopeorNope/Orca_Near_Dedup-v2 - private\n\nThis dataset is based on \"kyujinpy/OpenOrca-KO\" and has been processed using the Near Dedup algorithm to remove items with a Jaccard Similarity threshold of 0.8 or higher. In addition, inconsistent inputs have been cleaned and modified.\n \nTraining \nThe difference between \"DopeorNope/COKAL-DPO_test-v2\" and this model is that this model has different hyper-parameters from the one in that setting regarding the final version.\n\nI developed the model in an environment with four RTX 3090 GPUs running Ubuntu 18.04. \n\nIt seems that when uploading the model directly to a repository from a Linux server, there may be an issue causing the model to appear to have more parameters. However, this model is based on a 13B architecture.\n\n\nReference papers\n\n- Data Strategy:\n - LIMA(Zhou et al., 2023)\n - Near Dedup algorithm(Lee et al., 2022)\n\n- Model Architecture:\n - Llama2(Touvron et al., 2023)",
"# Implementation Code",
"# Acknowledgement\n\n- 이 모델은 과학기술정보통신부·광주광역시가 공동 지원한 '인공지능 중심 산업융합 집적단지 조성사업'으로 지원을 받아 수행된 연구 결과입니다.\n\n- This model was supported by Artificial intelligence industrial convergence cluster development project funded by the Ministry of Science and ICT(MSIT, Korea)&Gwangju Metropolitan City.\n\n\n\n---"
] | [
"TAGS\n#transformers #pytorch #llama #text-generation #ko #dataset-DopeorNope/DPO-Ko-Dataset #dataset-DopeorNope/Orca_Near_Dedup-v2 #arxiv-2305.11206 #arxiv-2107.06499 #arxiv-2307.09288 #license-cc-by-nc-sa-4.0 #autotrain_compatible #endpoints_compatible #has_space #text-generation-inference #region-us \n",
"# ️COKAL-DPO_13b-v2️ \n\n!img",
"## Model Details\n\nModel Developers Seungyoo Lee (DopeorNope)\n\n\n\n\nInput Models input text only.\n\nOutput Models generate text only.\n\nModel Architecture \nCOKAL-DPO_13b-v2 is an auto-regressive 13B language model based on the LLaMA2 transformer architecture.\n\nBase Model DopeorNope/COKAL_pre_DPO_Test_v2-13b \n\nDopeorNope/COKAL_pre_DPO_Test_v2-13b is the SFT model to train with DPO methodology.\n\nTraining Dataset \n- DPO training dataset: DopeorNope/DPO-Ko-Dataset - private\n\nThis dataset was constructed by directly collecting and reorganizing data by DopeorNope, obtaining insights from \"lvwerra/stack-exchange-paired\" to create a paired dataset. (It means I do not use stack-exchange-paired; I just got an insight from it.)\n\n- SFT training dataset: DopeorNope/Orca_Near_Dedup-v2 - private\n\nThis dataset is based on \"kyujinpy/OpenOrca-KO\" and has been processed using the Near Dedup algorithm to remove items with a Jaccard Similarity threshold of 0.8 or higher. In addition, inconsistent inputs have been cleaned and modified.\n \nTraining \nThe difference between \"DopeorNope/COKAL-DPO_test-v2\" and this model is that this model has different hyper-parameters from the one in that setting regarding the final version.\n\nI developed the model in an environment with four RTX 3090 GPUs running Ubuntu 18.04. \n\nIt seems that when uploading the model directly to a repository from a Linux server, there may be an issue causing the model to appear to have more parameters. However, this model is based on a 13B architecture.\n\n\nReference papers\n\n- Data Strategy:\n - LIMA(Zhou et al., 2023)\n - Near Dedup algorithm(Lee et al., 2022)\n\n- Model Architecture:\n - Llama2(Touvron et al., 2023)",
"# Implementation Code",
"# Acknowledgement\n\n- 이 모델은 과학기술정보통신부·광주광역시가 공동 지원한 '인공지능 중심 산업융합 집적단지 조성사업'으로 지원을 받아 수행된 연구 결과입니다.\n\n- This model was supported by Artificial intelligence industrial convergence cluster development project funded by the Ministry of Science and ICT(MSIT, Korea)&Gwangju Metropolitan City.\n\n\n\n---"
] | [
130,
19,
488,
4,
86
] | [
"passage: TAGS\n#transformers #pytorch #llama #text-generation #ko #dataset-DopeorNope/DPO-Ko-Dataset #dataset-DopeorNope/Orca_Near_Dedup-v2 #arxiv-2305.11206 #arxiv-2107.06499 #arxiv-2307.09288 #license-cc-by-nc-sa-4.0 #autotrain_compatible #endpoints_compatible #has_space #text-generation-inference #region-us \n# ️COKAL-DPO_13b-v2️ \n\n!img"
] | [
-0.12576372921466827,
0.08973965048789978,
-0.007142250891774893,
0.06194756180047989,
0.07608231157064438,
0.022140026092529297,
0.11795078963041306,
0.15201926231384277,
-0.03838883340358734,
0.08841092884540558,
0.1499653458595276,
0.1680232733488083,
0.029348129406571388,
0.11256229132413864,
-0.08619272708892822,
-0.224908709526062,
0.022644000127911568,
0.0753210037946701,
-0.02148398943245411,
0.11125314235687256,
0.056913070380687714,
-0.04139142110943794,
0.051966194063425064,
-0.07736663520336151,
-0.04961349070072174,
-0.057474683970212936,
-0.02713693305850029,
-0.10318545997142792,
0.06653910875320435,
0.06568389385938644,
0.11010400950908661,
0.05472630634903908,
-0.06616328656673431,
-0.05931522697210312,
0.031107328832149506,
0.01709168590605259,
-0.02578224055469036,
0.06331943720579147,
0.02706335112452507,
-0.04731849208474159,
0.11027050763368607,
-0.14238247275352478,
-0.060859180986881256,
0.005306172650307417,
-0.11911243945360184,
-0.17681637406349182,
-0.07461206614971161,
0.08225046843290329,
0.02177475579082966,
0.0802377313375473,
0.003445579670369625,
0.13815543055534363,
-0.004807511810213327,
0.06916162371635437,
0.21894420683383942,
-0.2069699615240097,
-0.046899016946554184,
0.13310785591602325,
0.07137575000524521,
0.08207056671380997,
-0.008998909965157509,
-0.00777614489197731,
0.015473009087145329,
-0.0012935848208144307,
0.008015435189008713,
-0.0701005756855011,
-0.09307485818862915,
0.01067071221768856,
-0.0935169979929924,
-0.047949980944395065,
0.20682822167873383,
0.008504406549036503,
0.0023435777984559536,
-0.014998922124505043,
-0.10473388433456421,
-0.11661618947982788,
0.006987311411648989,
-0.03396127000451088,
-0.0031003218609839678,
-0.024671534076333046,
0.02455962635576725,
-0.026450898498296738,
-0.09488935768604279,
-0.02592627704143524,
-0.18406935036182404,
0.1761542707681656,
-0.030330471694469452,
-0.013134310953319073,
-0.05721230059862137,
0.061097003519535065,
-0.02115078642964363,
-0.12441375851631165,
-0.0011220823507755995,
-0.0443623811006546,
0.10510579496622086,
0.015363573096692562,
-0.03964037820696831,
-0.009594357572495937,
0.10446176677942276,
0.05165509134531021,
0.04898001626133919,
-0.0034962017089128494,
-0.029592547565698624,
0.04110103100538254,
-0.02798057161271572,
0.06673634052276611,
-0.09743711352348328,
-0.01954524591565132,
0.05145260691642761,
-0.018770908936858177,
0.0998278558254242,
-0.05547099560499191,
-0.0769478902220726,
-0.11309349536895752,
0.048366110771894455,
0.07692865282297134,
0.1107221245765686,
0.09340859204530716,
-0.033702053129673004,
-0.051367539912462234,
0.16638638079166412,
-0.06859228760004044,
0.015489110723137856,
0.03079426847398281,
-0.01828743703663349,
0.18407440185546875,
0.03820247948169708,
0.009822194464504719,
-0.0831240713596344,
0.07896356284618378,
-0.05567633733153343,
0.0351276658475399,
-0.005749124567955732,
-0.07819579541683197,
0.07407507300376892,
-0.056563254445791245,
-0.001762576401233673,
-0.2080928236246109,
-0.11621065437793732,
0.01874394901096821,
-0.014785760082304478,
-0.04191821441054344,
-0.03685353323817253,
-0.031164878979325294,
-0.11281540989875793,
0.03379160910844803,
-0.031938500702381134,
-0.0471278615295887,
-0.04528164118528366,
0.1028730571269989,
0.029240403324365616,
0.10655469447374344,
-0.11466503888368607,
0.052202194929122925,
-0.06713222712278366,
0.04551328718662262,
-0.12433174252510071,
0.013643729500472546,
-0.06595508009195328,
0.00015205943782348186,
-0.0955294817686081,
-0.03395787626504898,
-0.0471675731241703,
0.0013755634427070618,
0.070588119328022,
0.1898624300956726,
-0.15492424368858337,
-0.06948957592248917,
0.12326757609844208,
-0.04675276577472687,
-0.1059274971485138,
0.08594277501106262,
0.048996634781360626,
-0.011852054856717587,
0.010810180567204952,
0.1447608917951584,
0.14661741256713867,
-0.142882838845253,
-0.11888524144887924,
0.03989776596426964,
-0.0075527080334723,
-0.12406782060861588,
0.09764144569635391,
0.03148915246129036,
0.05730893835425377,
0.04644716531038284,
0.018750639632344246,
-0.014507582411170006,
-0.04844013974070549,
-0.05235883221030235,
-0.08009258657693863,
0.0010333482641726732,
0.04137810319662094,
-0.0006517684087157249,
0.0006816189270466566,
-0.03509972617030144,
-0.07378412038087845,
-0.022025877609848976,
0.05918622389435768,
-0.0270282793790102,
0.060823846608400345,
-0.06278721243143082,
0.14610347151756287,
-0.1179271787405014,
0.0189527440816164,
-0.1317111700773239,
-0.004670615307986736,
-0.047162722796201706,
0.03328181430697441,
0.014715509489178658,
-0.0003689369768835604,
0.05466950312256813,
-0.03461208567023277,
0.0158624779433012,
0.012276885099709034,
0.015631387010216713,
0.02627088874578476,
-0.05814830958843231,
-0.059521302580833435,
0.04172786697745323,
-0.03778320178389549,
0.11020345240831375,
-0.09055959433317184,
-0.0024317384231835604,
0.08433244377374649,
0.11843672394752502,
-0.027954911813139915,
0.033054646104574203,
0.028139984235167503,
0.08401037007570267,
-0.03931809589266777,
-0.0031667219009250402,
0.08441822975873947,
0.010102199390530586,
-0.07548888772726059,
0.1279085874557495,
-0.139999657869339,
0.08355729281902313,
0.21622908115386963,
-0.03314138948917389,
-0.0016596278874203563,
-0.044287003576755524,
0.00020070851314812899,
-0.017543833702802658,
0.09246194362640381,
-0.03566518798470497,
0.025056710466742516,
0.021533304825425148,
0.10948710888624191,
-0.06016959249973297,
0.04314499720931053,
0.05456478148698807,
-0.07256639003753662,
-0.05861542746424675,
0.13229599595069885,
0.09495718032121658,
0.005987906828522682,
0.13585948944091797,
0.23789434134960175,
-0.056101344525814056,
0.10269491374492645,
0.015967443585395813,
-0.041815683245658875,
-0.07968344539403915,
-0.0012802432756870985,
0.024947507306933403,
-0.026906967163085938,
-0.07556527853012085,
0.058967772871255875,
0.07722574472427368,
0.03903383016586304,
0.034307703375816345,
-0.09594523906707764,
-0.04664070904254913,
0.018952298909425735,
-0.04318256676197052,
-0.049172237515449524,
0.10114627331495285,
0.02765023708343506,
0.13635171949863434,
0.0046485839411616325,
-0.04714348167181015,
0.0831022560596466,
0.046023979783058167,
-0.018057582899928093,
0.16994813084602356,
-0.12162300944328308,
-0.2598918676376343,
-0.09684708714485168,
-0.06057039275765419,
-0.1007845550775528,
-0.037775181233882904,
0.08506052941083908,
-0.0322023443877697,
0.017445726320147514,
-0.03512364998459816,
0.10038477182388306,
-0.037088923156261444,
0.012494987808167934,
-0.030543580651283264,
0.037269581109285355,
-0.05953102931380272,
-0.08565834164619446,
-0.05494334176182747,
0.0018655953463166952,
-0.05851040780544281,
0.1935974806547165,
-0.09520357102155685,
0.07377494871616364,
0.10490421205759048,
0.03983578458428383,
-0.016184017062187195,
0.011474319733679295,
0.0767769068479538,
-0.034435831010341644,
0.026207895949482918,
0.23259161412715912,
0.03376402705907822,
0.07128126919269562,
0.10281815379858017,
0.0018070819787681103,
-0.03756849095225334,
-0.036203086376190186,
0.022506332024931908,
-0.05448277294635773,
-0.20576991140842438,
-0.14132927358150482,
-0.11247855424880981,
0.15195994079113007,
-0.01586061716079712,
0.01896924339234829,
0.055153995752334595,
0.07167124003171921,
-0.019261181354522705,
0.011519423685967922,
-0.10647464543581009,
0.07409249991178513,
0.20643524825572968,
-0.01787874661386013,
0.10073516517877579,
-0.03212631866335869,
-0.0367269366979599,
0.0741644948720932,
0.07549788057804108,
0.10663815587759018,
0.04359909147024155,
0.07938727736473083,
0.004618024453520775,
0.11239005625247955,
0.05610742047429085,
0.007336822338402271,
0.07629728317260742,
-0.016952376812696457,
-0.01507946290075779,
-0.10433967411518097,
-0.026983071118593216,
0.03013036772608757,
-0.030464312061667442,
-0.05891445279121399,
-0.060455478727817535,
-0.04787662252783775,
0.05472273752093315,
0.05607454106211662,
0.052513495087623596,
-0.2804175019264221,
-0.030343027785420418,
0.028721069917082787,
0.06025712564587593,
-0.04598410800099373,
0.01949085295200348,
-0.047082509845495224,
-0.03349153697490692,
0.04360650107264519,
-0.03494194522500038,
0.07612323760986328,
-0.09134375303983688,
0.020353002473711967,
-0.15510877966880798,
0.006169482599943876,
0.018670355901122093,
0.08156757801771164,
-0.26111334562301636,
0.21160732209682465,
-0.005475262179970741,
-0.03694285452365875,
-0.05133799836039543,
-0.03019959293305874,
-0.020762095227837563,
0.06698213517665863,
0.11960066109895706,
0.015483610332012177,
0.055259622633457184,
-0.11247340589761734,
-0.10714419931173325,
0.02327776700258255,
0.06348374485969543,
-0.019725600257515907,
0.058761872351169586,
0.029881736263632774,
-0.015499397180974483,
-0.004137570504099131,
0.17141319811344147,
0.01011541485786438,
-0.035780955106019974,
0.10654027760028839,
0.1268131583929062,
0.0354209765791893,
0.005275196395814419,
-0.05688764527440071,
-0.11493547260761261,
0.14368486404418945,
-0.04834676906466484,
-0.05240697041153908,
-0.06417765468358994,
-0.05049380287528038,
0.1224430650472641,
-0.11214178800582886,
-0.016499828547239304,
-0.04306090250611305,
0.012034650892019272,
-0.031347062438726425,
-0.11841633170843124,
0.11645059287548065,
-0.07599244266748428,
-0.0976322665810585,
-0.025756338611245155,
0.12650258839130402,
-0.06531087309122086,
0.011269633658230305,
-0.05289704352617264,
0.022320274263620377,
-0.0863335058093071,
-0.04760913550853729,
0.05487297475337982,
0.09104364365339279,
0.08728492259979248,
-0.009036332368850708,
-0.012943909503519535,
-0.02262037619948387,
-0.031222499907016754,
-0.01611710526049137,
0.14394935965538025,
0.27753642201423645,
-0.038693442940711975,
0.08003003150224686,
0.08995885401964188,
-0.07105528563261032,
-0.25945764780044556,
-0.10469286888837814,
-0.0360950268805027,
0.03205065801739693,
-0.06847413629293442,
-0.12919306755065918,
0.08330923318862915,
0.1283385008573532,
-0.0006394092924892902,
0.06769193708896637,
-0.27890270948410034,
-0.09896387159824371,
0.10195887833833694,
-0.0002837112988345325,
0.2140018790960312,
-0.16025148332118988,
-0.052248451858758926,
-0.05912153795361519,
-0.1701623946428299,
0.20918917655944824,
-0.05244492366909981,
0.12165652960538864,
-0.05850902199745178,
0.08420667797327042,
0.04880765452980995,
-0.0469776876270771,
0.1888401061296463,
-0.04294543340802193,
-0.01743614673614502,
-0.11822068691253662,
-0.1642685830593109,
0.06147241219878197,
-0.02456476539373398,
0.007832692004740238,
-0.03597889840602875,
0.025588098913431168,
-0.14844760298728943,
-0.0014175033429637551,
-0.07791227102279663,
0.07153685390949249,
-0.009184873662889004,
-0.055481769144535065,
-0.02163965068757534,
0.04052657261490822,
0.009656252339482307,
-0.01766240783035755,
0.1618548035621643,
-0.060271650552749634,
0.0502365417778492,
0.16581608355045319,
-0.005542386788874865,
-0.06055176258087158,
-0.03176836296916008,
-0.02792426384985447,
-0.06308145821094513,
0.06991395354270935,
-0.14536291360855103,
0.009185711853206158,
0.13609129190444946,
0.01912507228553295,
0.004139477852731943,
0.02704114466905594,
-0.01665598340332508,
0.00982713233679533,
0.056028127670288086,
-0.15154270827770233,
0.044502295553684235,
-0.006602106615900993,
0.029452430084347725,
-0.014087346382439137,
0.041005976498126984,
0.2173081934452057,
-0.047756947576999664,
-0.022842377424240112,
0.01781610958278179,
0.0004678454133681953,
-0.049994707107543945,
0.08156552910804749,
0.06299399584531784,
0.03589155524969101,
-0.07149740308523178,
0.03246157616376877,
0.04517361894249916,
-0.13874252140522003,
0.02988000586628914,
0.037760622799396515,
-0.11910757422447205,
-0.08694115281105042,
-0.0540941096842289,
0.039968326687812805,
-0.07671114057302475,
-0.05098660662770271,
-0.08162546157836914,
-0.04248443990945816,
0.06700769066810608,
0.10985784232616425,
0.06531818956136703,
0.018551841378211975,
-0.022139601409435272,
-0.046456146985292435,
-0.08157330006361008,
0.04183266684412956,
0.011094889603555202,
0.03199652582406998,
-0.11062397807836533,
0.1100723072886467,
-0.07008104771375656,
0.12999144196510315,
-0.022488003596663475,
-0.005663728341460228,
-0.14111368358135223,
-0.019418498501181602,
-0.0735718309879303,
0.005731143057346344,
-0.08759096264839172,
-0.020862989127635956,
-0.032092105597257614,
-0.034431036561727524,
-0.04691389575600624,
-0.060726165771484375,
-0.05026277154684067,
-0.018631229177117348,
-0.056525398045778275,
0.03721865639090538,
-0.0905686616897583,
-0.09038370847702026,
0.03789304569363594,
-0.03064805641770363,
0.06494944542646408,
0.15452614426612854,
-0.03348903730511665,
-0.03985258936882019,
-0.11097344756126404,
0.04321876913309097,
0.097052201628685,
0.07062830030918121,
0.02682802639901638,
-0.07441098988056183,
-0.009417645633220673,
0.0514834001660347,
0.0016668661264702678,
0.03983510285615921,
0.08394026011228561,
-0.13575634360313416,
-0.02871648222208023,
-0.08213232457637787,
-0.07434023171663284,
-0.03484749794006348,
0.04619649797677994,
0.09473734349012375,
0.07892488688230515,
0.05504216253757477,
-0.019854003563523293,
0.07339373975992203,
-0.11944865435361862,
-0.022100023925304413,
-0.033630285412073135,
-0.14229793846607208,
0.027942147105932236,
-0.04218899831175804,
0.07746794819831848,
0.0010475964518263936,
0.05878271535038948,
0.015884429216384888,
-0.05755747854709625,
0.02414984628558159,
-0.030537018552422523,
0.013139243237674236,
-0.015134156681597233,
0.16854044795036316,
0.08701296150684357,
-0.00874190591275692,
0.010033026337623596,
0.07340868562459946,
0.05396492779254913,
0.12314967066049576,
0.08830743283033371,
0.1072143018245697,
0.11842194199562073,
0.07527807354927063,
0.04264901205897331,
-0.03568553179502487,
-0.05848177894949913,
-0.09089437872171402,
-0.04900021478533745,
0.079872265458107,
-0.03830283507704735,
0.03565593436360359,
0.10957423597574234,
-0.05331956222653389,
0.03424331545829773,
-0.04653513804078102,
-0.054194021970033646,
-0.08071205019950867,
-0.15845166146755219,
-0.1027710810303688,
-0.12493255734443665,
-0.0366375632584095,
-0.07711836695671082,
0.010311934165656567,
0.10898257046937943,
0.017151011154055595,
-0.0027342885732650757,
0.11355797946453094,
0.08118392527103424,
-0.09289176017045975,
0.07613656669855118,
-0.030163370072841644,
0.0019121567020192742,
-0.056892283260822296,
-0.020508211106061935,
0.009171311743557453,
0.03484304994344711,
-0.02007257752120495,
0.08524258434772491,
0.04194232076406479,
0.025875335559248924,
-0.14079731702804565,
-0.11986111849546432,
-0.05955338478088379,
0.056564293801784515,
0.017555003985762596,
0.17501497268676758,
0.02911989949643612,
0.0023383209481835365,
0.029415011405944824,
0.19468611478805542,
-0.019051142036914825,
-0.056926995515823364,
-0.023596541956067085,
0.1407877653837204,
-0.013785436749458313,
0.035673875361680984,
-0.015986070036888123,
-0.009092224761843681,
-0.0460931658744812,
0.19196315109729767,
0.21963657438755035,
-0.04208468273282051,
0.023815477266907692,
0.056355830281972885,
0.019828973338007927,
0.02883724495768547,
0.04687661677598953,
0.12320474535226822,
0.21771235764026642,
-0.06955206394195557,
-0.012015219777822495,
-0.07090385258197784,
0.004625900182873011,
-0.06504923105239868,
0.0400838665664196,
0.011720159091055393,
-0.09100298583507538,
-0.012431884184479713,
0.07688093930482864,
-0.1351044774055481,
-0.007060315925627947,
0.02753877267241478,
-0.20995350182056427,
-0.09163866937160492,
-0.02620212733745575,
0.07048521190881729,
0.019566740840673447,
0.07971179485321045,
-0.06248005852103233,
-0.05994907766580582,
0.08402549475431442,
-0.007209898438304663,
-0.09296862035989761,
0.020349010825157166,
0.019503654912114143,
-0.034089263528585434,
-0.022916341200470924,
-0.01713109016418457,
0.16219502687454224,
0.12001218646764755,
0.055985718965530396,
-0.09202788770198822,
0.052169930189847946,
0.076689712703228,
-0.03946729749441147,
0.0709087923169136,
-0.052988216280937195,
-0.03935582935810089,
-0.013292301446199417,
0.11402109265327454,
-0.048748601227998734,
-0.0019055984448641539,
0.11940480023622513,
0.001721797278150916,
-0.0726412981748581,
0.07768714427947998,
-0.09042775630950928,
0.06952165067195892,
0.08926630020141602,
-0.07290919125080109,
-0.04170308634638786,
-0.052947934716939926,
0.006502197589725256,
-0.013655958697199821,
-0.04921025410294533,
-0.028914542868733406,
-0.11118027567863464,
-0.06991247832775116,
0.09298458695411682,
0.12613515555858612,
-0.185324028134346,
-0.03867758437991142,
-0.010575068183243275,
-0.05167977511882782,
-0.051365926861763,
0.012893042527139187,
-0.008352152071893215,
-0.06743333488702774,
-0.051439713686704636,
0.0785323977470398,
-0.007091189734637737,
0.11588242650032043,
-0.11259699612855911,
-0.10828236490488052
] |
null | null | null | https://civitai.com/models/196393/ouka-makuzawa-megami-no-cafe-terrace-katorikonoe | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/Ouka_Makuzawa_Megami_no_Cafe_Terrace_KatoriKonoe__v1 | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:34:27+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | null | https://civitai.com/models/194916/charion-isekai-ojisan-or-or | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/charion_isekai_ojisan | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:34:54+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | null | https://civitai.com/models/194982/shiho-kitazawa-or-the-idolmster-million-live | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/CHAR-KitazawaShiho | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:35:14+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | null | https://civitai.com/models/194952/akari-watanabe-more-than-a-married-couple-but-not-lovers | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/Akari_Watanabe | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:35:37+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | null | https://civitai.com/models/195076/hu-tao-genshin-impact-lora | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/hu_tao-10 | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:35:57+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | null | https://civitai.com/models/195154/sumi-yuki-or-oshi-no-ko-or-lora-sd15 | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/SumiYuki_lora_sd1.5__made-by-PotatoBox | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:36:27+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | null | https://civitai.com/models/195234/hoshino-shizuru-princess-connect-redive-lora | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/shizuru-nvwls-v1 | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:36:48+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | null | https://civitai.com/models/195283/raiden-shogun-or-genshin-impact | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/RaidenShogun-08 | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:37:08+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | peft |
# Model Card for Model ID
<!-- Provide a quick summary of what the model is/does. -->
## Model Details
### Model Description
<!-- Provide a longer summary of what this model is. -->
- **Developed by:** [More Information Needed]
- **Shared by [optional]:** [More Information Needed]
- **Model type:** [More Information Needed]
- **Language(s) (NLP):** [More Information Needed]
- **License:** [More Information Needed]
- **Finetuned from model [optional]:** [More Information Needed]
### Model Sources [optional]
<!-- Provide the basic links for the model. -->
- **Repository:** [More Information Needed]
- **Paper [optional]:** [More Information Needed]
- **Demo [optional]:** [More Information Needed]
## Uses
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
### Direct Use
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
[More Information Needed]
### Downstream Use [optional]
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
[More Information Needed]
### Out-of-Scope Use
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
[More Information Needed]
## Bias, Risks, and Limitations
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
[More Information Needed]
### Recommendations
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
## How to Get Started with the Model
Use the code below to get started with the model.
[More Information Needed]
## Training Details
### Training Data
<!-- This should link to a Data Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
[More Information Needed]
### Training Procedure
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
#### Preprocessing [optional]
[More Information Needed]
#### Training Hyperparameters
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
#### Speeds, Sizes, Times [optional]
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
[More Information Needed]
## Evaluation
<!-- This section describes the evaluation protocols and provides the results. -->
### Testing Data, Factors & Metrics
#### Testing Data
<!-- This should link to a Data Card if possible. -->
[More Information Needed]
#### Factors
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
[More Information Needed]
#### Metrics
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
[More Information Needed]
### Results
[More Information Needed]
#### Summary
## Model Examination [optional]
<!-- Relevant interpretability work for the model goes here -->
[More Information Needed]
## Environmental Impact
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
- **Hardware Type:** [More Information Needed]
- **Hours used:** [More Information Needed]
- **Cloud Provider:** [More Information Needed]
- **Compute Region:** [More Information Needed]
- **Carbon Emitted:** [More Information Needed]
## Technical Specifications [optional]
### Model Architecture and Objective
[More Information Needed]
### Compute Infrastructure
[More Information Needed]
#### Hardware
[More Information Needed]
#### Software
[More Information Needed]
## Citation [optional]
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
**BibTeX:**
[More Information Needed]
**APA:**
[More Information Needed]
## Glossary [optional]
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
[More Information Needed]
## More Information [optional]
[More Information Needed]
## Model Card Authors [optional]
[More Information Needed]
## Model Card Contact
[More Information Needed]
## Training procedure
### Framework versions
- PEFT 0.6.1
| {"library_name": "peft", "base_model": "cl-tohoku/bert-base-japanese-v3"} | null | KON-ch/bert-base-japanese-v3-wrime-sentiment | [
"peft",
"safetensors",
"arxiv:1910.09700",
"base_model:cl-tohoku/bert-base-japanese-v3",
"region:us"
] | 2023-11-11T06:38:44+00:00 | [
"1910.09700"
] | [] | TAGS
#peft #safetensors #arxiv-1910.09700 #base_model-cl-tohoku/bert-base-japanese-v3 #region-us
|
# Model Card for Model ID
## Model Details
### Model Description
- Developed by:
- Shared by [optional]:
- Model type:
- Language(s) (NLP):
- License:
- Finetuned from model [optional]:
### Model Sources [optional]
- Repository:
- Paper [optional]:
- Demo [optional]:
## Uses
### Direct Use
### Downstream Use [optional]
### Out-of-Scope Use
## Bias, Risks, and Limitations
### Recommendations
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
## How to Get Started with the Model
Use the code below to get started with the model.
## Training Details
### Training Data
### Training Procedure
#### Preprocessing [optional]
#### Training Hyperparameters
- Training regime:
#### Speeds, Sizes, Times [optional]
## Evaluation
### Testing Data, Factors & Metrics
#### Testing Data
#### Factors
#### Metrics
### Results
#### Summary
## Model Examination [optional]
## Environmental Impact
Carbon emissions can be estimated using the Machine Learning Impact calculator presented in Lacoste et al. (2019).
- Hardware Type:
- Hours used:
- Cloud Provider:
- Compute Region:
- Carbon Emitted:
## Technical Specifications [optional]
### Model Architecture and Objective
### Compute Infrastructure
#### Hardware
#### Software
[optional]
BibTeX:
APA:
## Glossary [optional]
## More Information [optional]
## Model Card Authors [optional]
## Model Card Contact
## Training procedure
### Framework versions
- PEFT 0.6.1
| [
"# Model Card for Model ID",
"## Model Details",
"### Model Description\n\n\n\n\n\n- Developed by: \n- Shared by [optional]: \n- Model type: \n- Language(s) (NLP): \n- License: \n- Finetuned from model [optional]:",
"### Model Sources [optional]\n\n\n\n- Repository: \n- Paper [optional]: \n- Demo [optional]:",
"## Uses",
"### Direct Use",
"### Downstream Use [optional]",
"### Out-of-Scope Use",
"## Bias, Risks, and Limitations",
"### Recommendations\n\n\n\nUsers (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.",
"## How to Get Started with the Model\n\nUse the code below to get started with the model.",
"## Training Details",
"### Training Data",
"### Training Procedure",
"#### Preprocessing [optional]",
"#### Training Hyperparameters\n\n- Training regime:",
"#### Speeds, Sizes, Times [optional]",
"## Evaluation",
"### Testing Data, Factors & Metrics",
"#### Testing Data",
"#### Factors",
"#### Metrics",
"### Results",
"#### Summary",
"## Model Examination [optional]",
"## Environmental Impact\n\n\n\nCarbon emissions can be estimated using the Machine Learning Impact calculator presented in Lacoste et al. (2019).\n\n- Hardware Type: \n- Hours used: \n- Cloud Provider: \n- Compute Region: \n- Carbon Emitted:",
"## Technical Specifications [optional]",
"### Model Architecture and Objective",
"### Compute Infrastructure",
"#### Hardware",
"#### Software\n\n\n\n[optional]\n\n\n\nBibTeX:\n\n\n\nAPA:",
"## Glossary [optional]",
"## More Information [optional]",
"## Model Card Authors [optional]",
"## Model Card Contact",
"## Training procedure",
"### Framework versions\n\n\n- PEFT 0.6.1"
] | [
"TAGS\n#peft #safetensors #arxiv-1910.09700 #base_model-cl-tohoku/bert-base-japanese-v3 #region-us \n",
"# Model Card for Model ID",
"## Model Details",
"### Model Description\n\n\n\n\n\n- Developed by: \n- Shared by [optional]: \n- Model type: \n- Language(s) (NLP): \n- License: \n- Finetuned from model [optional]:",
"### Model Sources [optional]\n\n\n\n- Repository: \n- Paper [optional]: \n- Demo [optional]:",
"## Uses",
"### Direct Use",
"### Downstream Use [optional]",
"### Out-of-Scope Use",
"## Bias, Risks, and Limitations",
"### Recommendations\n\n\n\nUsers (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.",
"## How to Get Started with the Model\n\nUse the code below to get started with the model.",
"## Training Details",
"### Training Data",
"### Training Procedure",
"#### Preprocessing [optional]",
"#### Training Hyperparameters\n\n- Training regime:",
"#### Speeds, Sizes, Times [optional]",
"## Evaluation",
"### Testing Data, Factors & Metrics",
"#### Testing Data",
"#### Factors",
"#### Metrics",
"### Results",
"#### Summary",
"## Model Examination [optional]",
"## Environmental Impact\n\n\n\nCarbon emissions can be estimated using the Machine Learning Impact calculator presented in Lacoste et al. (2019).\n\n- Hardware Type: \n- Hours used: \n- Cloud Provider: \n- Compute Region: \n- Carbon Emitted:",
"## Technical Specifications [optional]",
"### Model Architecture and Objective",
"### Compute Infrastructure",
"#### Hardware",
"#### Software\n\n\n\n[optional]\n\n\n\nBibTeX:\n\n\n\nAPA:",
"## Glossary [optional]",
"## More Information [optional]",
"## Model Card Authors [optional]",
"## Model Card Contact",
"## Training procedure",
"### Framework versions\n\n\n- PEFT 0.6.1"
] | [
44,
6,
3,
45,
28,
3,
4,
9,
9,
10,
42,
20,
3,
4,
5,
9,
11,
13,
3,
12,
5,
4,
5,
3,
4,
9,
53,
9,
8,
6,
3,
14,
8,
7,
9,
4,
3,
11
] | [
"passage: TAGS\n#peft #safetensors #arxiv-1910.09700 #base_model-cl-tohoku/bert-base-japanese-v3 #region-us \n# Model Card for Model ID## Model Details### Model Description\n\n\n\n\n\n- Developed by: \n- Shared by [optional]: \n- Model type: \n- Language(s) (NLP): \n- License: \n- Finetuned from model [optional]:### Model Sources [optional]\n\n\n\n- Repository: \n- Paper [optional]: \n- Demo [optional]:## Uses### Direct Use### Downstream Use [optional]### Out-of-Scope Use## Bias, Risks, and Limitations### Recommendations\n\n\n\nUsers (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.## How to Get Started with the Model\n\nUse the code below to get started with the model.## Training Details### Training Data### Training Procedure#### Preprocessing [optional]#### Training Hyperparameters\n\n- Training regime:#### Speeds, Sizes, Times [optional]## Evaluation### Testing Data, Factors & Metrics#### Testing Data#### Factors#### Metrics### Results#### Summary## Model Examination [optional]## Environmental Impact\n\n\n\nCarbon emissions can be estimated using the Machine Learning Impact calculator presented in Lacoste et al. (2019).\n\n- Hardware Type: \n- Hours used: \n- Cloud Provider: \n- Compute Region: \n- Carbon Emitted:## Technical Specifications [optional]### Model Architecture and Objective### Compute Infrastructure#### Hardware#### Software\n\n\n\n[optional]\n\n\n\nBibTeX:\n\n\n\nAPA:## Glossary [optional]## More Information [optional]## Model Card Authors [optional]## Model Card Contact## Training procedure### Framework versions\n\n\n- PEFT 0.6.1"
] | [
-0.10403240472078323,
0.18897713720798492,
-0.0031586962286382914,
0.033406034111976624,
0.09254839271306992,
0.022631654515862465,
0.04839380830526352,
0.12637662887573242,
-0.04029412567615509,
0.10610508173704147,
0.06719782203435898,
0.1002296432852745,
0.10110195726156235,
0.20248429477214813,
0.01060855109244585,
-0.20296917855739594,
0.02802920900285244,
-0.091949962079525,
-0.007743254769593477,
0.12387901544570923,
0.149150550365448,
-0.09622113406658173,
0.0805264338850975,
-0.021934568881988525,
-0.016048816964030266,
-0.03506361320614815,
-0.07580949366092682,
-0.03947118669748306,
0.04305169731378555,
0.044442448765039444,
0.05614999309182167,
-0.008094257675111294,
0.09296311438083649,
-0.2704540491104126,
0.01632937788963318,
0.044174958020448685,
-0.006632559467107058,
0.08565850555896759,
0.09897587448358536,
-0.04487067088484764,
0.12117639183998108,
-0.04445918649435043,
0.14145787060260773,
0.07673830538988113,
-0.09180542826652527,
-0.19813483953475952,
-0.07159273326396942,
0.08502835780382156,
0.17873218655586243,
0.08463238179683685,
-0.04211004450917244,
0.13548626005649567,
-0.10363627970218658,
0.014101628214120865,
0.04842083528637886,
-0.07874730974435806,
-0.07680515199899673,
0.06402698159217834,
0.1121150478720665,
0.0563482828438282,
-0.13821110129356384,
-0.03594819828867912,
0.029219262301921844,
0.040952637791633606,
0.06935635209083557,
0.016181426122784615,
0.13982026278972626,
0.032213203608989716,
-0.14368385076522827,
-0.04033675789833069,
0.1332075595855713,
0.025990668684244156,
-0.04058944806456566,
-0.21328887343406677,
0.012706030160188675,
-0.09291103482246399,
-0.022540660575032234,
-0.05167168378829956,
0.032717347145080566,
-0.0007091343286447227,
0.09192005544900894,
-0.03338079899549484,
-0.09512601792812347,
-0.020064258947968483,
0.09545160830020905,
0.05483853071928024,
0.026822099462151527,
-0.02985558472573757,
0.007584268692880869,
0.12362918257713318,
0.05424961447715759,
-0.1262129545211792,
-0.0583176389336586,
-0.06703869253396988,
-0.04644019901752472,
-0.0464080311357975,
0.035398684442043304,
0.02791018970310688,
0.05217386782169342,
0.23935765027999878,
-0.020360447466373444,
0.05552315711975098,
0.058546725660562515,
0.017212526872754097,
0.04446849972009659,
0.09711314737796783,
-0.05480339005589485,
-0.1475495547056198,
-0.019703496247529984,
0.09282724559307098,
-0.012097058817744255,
-0.02112332545220852,
-0.049204010516405106,
0.027180256322026253,
0.05515875667333603,
0.1075780838727951,
0.09074944257736206,
-0.005675343330949545,
-0.06997699290513992,
-0.05294749140739441,
0.2012401521205902,
-0.15362492203712463,
0.04197121411561966,
0.015101822093129158,
-0.02348884381353855,
-0.058012500405311584,
0.007817265577614307,
0.014289041049778461,
-0.02686993218958378,
0.0923442542552948,
-0.06457511335611343,
-0.03386455029249191,
-0.12447235733270645,
-0.016017604619264603,
0.0370049774646759,
0.01304548978805542,
-0.02968236431479454,
-0.026748286560177803,
-0.06758929789066315,
-0.098439060151577,
0.104426808655262,
-0.06864616274833679,
-0.05763525143265724,
-0.03674018383026123,
-0.09241638332605362,
0.017331959679722786,
0.027169078588485718,
0.10322470963001251,
-0.022281140089035034,
0.04972117766737938,
-0.009066559374332428,
0.0591321662068367,
0.08087555319070816,
0.03884997218847275,
-0.0711001381278038,
0.06272892653942108,
-0.20295828580856323,
0.08821912854909897,
-0.0771258994936943,
0.02243979461491108,
-0.16393980383872986,
-0.016323799267411232,
0.007063720840960741,
0.017820950597524643,
0.036145832389593124,
0.1501951515674591,
-0.20902328193187714,
-0.02399994060397148,
0.15663112699985504,
-0.09958399087190628,
-0.11818922311067581,
0.04065955430269241,
-0.055664002895355225,
0.16965405642986298,
0.02224871888756752,
-0.012546984478831291,
0.06830502301454544,
-0.14506728947162628,
-0.025580614805221558,
-0.03986729308962822,
-0.005735838320106268,
0.10806289315223694,
0.08403532207012177,
-0.07760728895664215,
0.02873447723686695,
0.014676087535917759,
-0.04793918505311012,
-0.03297657147049904,
-0.05122969299554825,
-0.1138497143983841,
0.007242364808917046,
-0.07750338315963745,
0.03490488603711128,
-0.006066450383514166,
-0.07410646975040436,
-0.010079988278448582,
-0.16185425221920013,
-0.014010932296514511,
0.08257152885198593,
0.013994639739394188,
-0.01914421282708645,
-0.09170639514923096,
0.020442813634872437,
-0.03578141704201698,
-0.027861863374710083,
-0.148270845413208,
-0.026511812582612038,
0.01732449419796467,
-0.12920285761356354,
0.020360829308629036,
-0.12761922180652618,
0.06910636276006699,
0.011427757330238819,
-0.07026970386505127,
-0.03366550803184509,
-0.019942058250308037,
0.010258853435516357,
-0.05077406018972397,
-0.24003280699253082,
-0.02422375977039337,
-0.05000515282154083,
0.15737275779247284,
-0.22972847521305084,
0.04066267982125282,
0.03339509665966034,
0.13246332108974457,
-0.00155886251013726,
-0.05789225175976753,
0.02621361054480076,
-0.06544255465269089,
-0.022550206631422043,
-0.07202032953500748,
-0.007642033509910107,
-0.007532407063990831,
-0.041510939598083496,
0.017748676240444183,
-0.11783981323242188,
-0.05600164085626602,
0.10406682640314102,
0.06915373355150223,
-0.17037677764892578,
-0.021136121824383736,
-0.0397271066904068,
-0.07217956334352493,
-0.09098630398511887,
-0.05315513163805008,
0.10422395169734955,
0.04845663532614708,
0.0362086296081543,
-0.07447554171085358,
-0.06559005379676819,
0.008593392558395863,
-0.02712099999189377,
-0.029113054275512695,
0.11077403277158737,
0.07479695975780487,
-0.12031503021717072,
0.10062194615602493,
0.06493114680051804,
0.009586549364030361,
0.08877164125442505,
-0.022071363404393196,
-0.10851962864398956,
-0.03498028963804245,
0.04574146121740341,
0.014272380620241165,
0.17125917971134186,
-0.08137714862823486,
0.05414664372801781,
0.03700786083936691,
-0.0327189639210701,
0.05357677489519119,
-0.09440668672323227,
0.011050092056393623,
0.004821715876460075,
-0.01249734591692686,
0.026302147656679153,
-0.0272494126111269,
0.013107435777783394,
0.07978329062461853,
0.053663115948438644,
0.03759139031171799,
0.03638958930969238,
-0.027901941910386086,
-0.131003275513649,
0.1803600937128067,
-0.1068863496184349,
-0.22470338642597198,
-0.1579601913690567,
0.06121597811579704,
0.04950881376862526,
-0.017038019374012947,
0.02142845280468464,
-0.0595712885260582,
-0.0951060950756073,
-0.07474654167890549,
0.0029446424450725317,
0.024716468527913094,
-0.05864058434963226,
-0.08138997852802277,
0.05712464824318886,
0.03942621126770973,
-0.11494932323694229,
0.043731968849897385,
0.06040173023939133,
-0.02596304565668106,
0.004159686155617237,
0.04640157148241997,
0.08189079910516739,
0.17775921523571014,
-0.016416223719716072,
-0.0044400496408343315,
0.0552581250667572,
0.2665001451969147,
-0.15981009602546692,
0.11097770929336548,
0.1131824404001236,
-0.06505931168794632,
0.07123669236898422,
0.18860484659671783,
0.027016643434762955,
-0.09697730839252472,
0.03468680381774902,
0.030603282153606415,
-0.01904059760272503,
-0.27514973282814026,
-0.0493534654378891,
-0.008234511129558086,
-0.09694777429103851,
0.08494958281517029,
0.086440309882164,
0.10027150064706802,
0.039790552109479904,
-0.06443743407726288,
-0.08455716073513031,
0.03454383462667465,
0.1024651974439621,
-0.032758425921201706,
0.006261095870286226,
0.07389122247695923,
-0.025920767337083817,
0.007174963131546974,
0.09110356122255325,
-0.008569123223423958,
0.16291819512844086,
0.045727554708719254,
0.10193982720375061,
0.07799336314201355,
0.09928829222917557,
-0.0039885458536446095,
0.022652138024568558,
0.013571593910455704,
0.02466478757560253,
0.015207172371447086,
-0.0848778709769249,
0.02103300765156746,
0.11092189699411392,
0.043860696256160736,
0.03194285184144974,
0.011941762641072273,
-0.053773682564496994,
0.04779285192489624,
0.17944076657295227,
0.009281259961426258,
-0.20152360200881958,
-0.08219055831432343,
0.05566033348441124,
-0.07338298857212067,
-0.1444418877363205,
-0.022506510838866234,
0.03700296953320503,
-0.1714535802602768,
0.011571132577955723,
-0.04313197731971741,
0.10003305226564407,
-0.07242430001497269,
-0.04499048739671707,
0.09737685322761536,
0.06944087892770767,
-0.023628968745470047,
0.06376286596059799,
-0.1998998373746872,
0.1255132257938385,
0.026987887918949127,
0.07588902860879898,
-0.08998247981071472,
0.0956808403134346,
0.0026694652624428272,
-0.014101652428507805,
0.16091510653495789,
0.00301351142115891,
-0.0701335221529007,
-0.06152881681919098,
-0.09325886517763138,
-0.014696119353175163,
0.10176420211791992,
-0.12259461730718613,
0.06729704141616821,
-0.015910321846604347,
-0.027941061183810234,
0.003713057842105627,
-0.07372546195983887,
-0.13496626913547516,
-0.16703729331493378,
0.051812272518873215,
-0.10137718170881271,
0.04655829444527626,
-0.09184553474187851,
-0.06554172933101654,
0.019360529258847237,
0.18026083707809448,
-0.181632399559021,
-0.08394692838191986,
-0.14417484402656555,
-0.08693456649780273,
0.1724511682987213,
-0.03846202790737152,
0.08158012479543686,
0.007304423488676548,
0.1660023033618927,
0.013228422030806541,
0.00344900693744421,
0.09762746840715408,
-0.08592449873685837,
-0.19448208808898926,
-0.060294587165117264,
0.16440735757350922,
0.14655838906764984,
0.04043899103999138,
-0.008423971943557262,
0.02102857641875744,
-0.048397891223430634,
-0.11058473587036133,
0.020574167370796204,
0.14948025345802307,
0.07841479778289795,
-0.006177424918860197,
-0.04428161680698395,
-0.11149600893259048,
-0.06580381095409393,
-0.05889544636011124,
0.0018158432794734836,
0.18148329854011536,
-0.06956592947244644,
0.15978644788265228,
0.11758097261190414,
-0.06187571957707405,
-0.200616255402565,
0.0518847331404686,
0.06268054246902466,
0.02240114100277424,
0.028858250007033348,
-0.18775007128715515,
0.08903785049915314,
0.009674299508333206,
-0.07070659846067429,
0.14786981046199799,
-0.1708453893661499,
-0.1402016133069992,
0.09368114918470383,
0.03715350478887558,
-0.2321477234363556,
-0.13100183010101318,
-0.09667117148637772,
-0.02660991996526718,
-0.11236632615327835,
0.06134834513068199,
0.0002762155490927398,
0.016100704669952393,
0.02791864424943924,
0.026259765028953552,
0.0276507455855608,
-0.04776003584265709,
0.206338033080101,
-0.022818077355623245,
0.007332258857786655,
-0.04981691390275955,
-0.09631312638521194,
0.03635350987315178,
-0.05164990574121475,
0.10376887023448944,
0.0007880573393777013,
0.023798376321792603,
-0.14691033959388733,
-0.04361633211374283,
-0.06265467405319214,
0.032061412930488586,
-0.10293138027191162,
-0.08957098424434662,
-0.041306231170892715,
0.10198560357093811,
0.09347569197416306,
-0.032786037772893906,
0.0036090686917304993,
-0.08446153998374939,
0.07343309372663498,
0.19951099157333374,
0.1875619739294052,
0.07629243284463882,
-0.058940526098012924,
0.02484177239239216,
-0.029973356053233147,
0.04695848003029823,
-0.22149458527565002,
0.04443515092134476,
0.055212993174791336,
0.021995604038238525,
0.09045726805925369,
-0.01336868479847908,
-0.15582968294620514,
-0.07513123750686646,
0.08050574362277985,
-0.039747726172208786,
-0.1495928019285202,
-0.023455042392015457,
0.05317426100373268,
-0.20789729058742523,
-0.044700492173433304,
0.016764260828495026,
-0.029061799868941307,
-0.04747726768255234,
0.02336047776043415,
0.0796256884932518,
-0.026242367923259735,
0.1161888986825943,
0.09268678724765778,
0.09073805063962936,
-0.0950658768415451,
0.07920671254396439,
0.07617884129285812,
-0.05126732215285301,
0.027389230206608772,
0.12106911092996597,
-0.048447564244270325,
-0.03694624453783035,
0.10596808791160583,
0.09150292724370956,
0.024065515026450157,
-0.04833473637700081,
0.013413658365607262,
-0.04574592784047127,
0.05683194473385811,
0.1158597320318222,
0.03391684964299202,
-0.0033531873486936092,
0.062155093997716904,
0.03640051558613777,
-0.10339018702507019,
0.10401934385299683,
0.06275065243244171,
0.023249125108122826,
-0.04071002081036568,
-0.02019472047686577,
-0.007951662875711918,
-0.011483565904200077,
-0.016486097127199173,
-0.007688871584832668,
-0.09279116988182068,
-0.005583429243415594,
-0.09042323380708694,
0.03005121275782585,
-0.08283437788486481,
0.005735909566283226,
0.028463974595069885,
-0.052330613136291504,
0.010687836445868015,
0.004129844717681408,
-0.0730290561914444,
-0.05552486330270767,
-0.020725348964333534,
0.0862705260515213,
-0.12236490845680237,
0.033165108412504196,
0.07977534085512161,
-0.10536771267652512,
0.0665985643863678,
0.0060866340063512325,
0.01299795787781477,
0.017385276034474373,
-0.1620137244462967,
0.05454972758889198,
-0.027508612722158432,
-0.015891969203948975,
0.01822987012565136,
-0.21373434364795685,
-0.010106704197824001,
-0.0463024266064167,
-0.04406041279435158,
0.014912862330675125,
-0.022115398198366165,
-0.1251859813928604,
0.09378059953451157,
-0.01450303103774786,
-0.07178694009780884,
-0.01912480965256691,
0.04433555528521538,
0.10064343363046646,
-0.023133480921387672,
0.12604612112045288,
-0.03226127848029137,
0.08095891028642654,
-0.1679205596446991,
-0.0011601133737713099,
-0.021988065913319588,
0.039782535284757614,
-0.01888343133032322,
-0.019293513149023056,
0.05697321891784668,
-0.02084573730826378,
0.16402503848075867,
-0.01638820581138134,
0.07009756565093994,
0.052488844841718674,
-0.00965920276939869,
-0.003279900411143899,
0.08545023202896118,
0.06899340450763702,
-0.004642353858798742,
-0.0010659696999937296,
0.040858834981918335,
-0.0024297074414789677,
-0.05010918155312538,
-0.14624138176441193,
0.05975499749183655,
0.16497959196567535,
0.05608871206641197,
0.02840293012559414,
0.03303481638431549,
-0.1202571913599968,
-0.07284735143184662,
0.13600695133209229,
-0.004504418931901455,
-0.03953038901090622,
-0.07407849282026291,
0.17869608104228973,
0.13381808996200562,
-0.20239274203777313,
0.07773905247449875,
-0.06116604059934616,
-0.06055644899606705,
-0.12063951790332794,
-0.15511946380138397,
-0.06416501849889755,
-0.04653239995241165,
-0.020612135529518127,
-0.060428012162446976,
0.04846711829304695,
0.052638906985521317,
0.005142312031239271,
-0.016800181940197945,
0.10524465143680573,
0.010537602938711643,
-0.028948010876774788,
0.043069008737802505,
0.06559143960475922,
0.032810602337121964,
-0.10014809668064117,
0.012576562352478504,
-0.007008613087236881,
0.016743753105401993,
0.06572699546813965,
0.012533807195723057,
-0.04987962543964386,
0.014175566844642162,
-0.0142996646463871,
-0.11660510301589966,
0.04812402278184891,
-0.01882079616189003,
-0.02601761370897293,
0.14562085270881653,
0.030179664492607117,
0.0011933115310966969,
-0.02252301387488842,
0.24533994495868683,
-0.07533107697963715,
-0.08725841343402863,
-0.15544597804546356,
0.0665111094713211,
-0.057970285415649414,
0.025360919535160065,
0.02775844931602478,
-0.11903581023216248,
0.023183220997452736,
0.15462617576122284,
0.13127878308296204,
-0.0034666950814425945,
0.009504602290689945,
0.04810750111937523,
0.0007836263393983245,
-0.03539370745420456,
0.008714989759027958,
0.05142119154334068,
0.14343415200710297,
-0.07626353204250336,
0.07219262421131134,
-0.010601620189845562,
-0.07393893599510193,
-0.013844426721334457,
0.100077785551548,
-0.006957166828215122,
-0.0025628639850765467,
-0.06877809017896652,
0.1455940157175064,
-0.08515239506959915,
-0.2360234409570694,
0.061866044998168945,
-0.07184138149023056,
-0.1542479395866394,
-0.046061575412750244,
0.028169097378849983,
-0.014117760583758354,
0.017707275226712227,
0.08033537864685059,
-0.043364185839891434,
0.17277146875858307,
0.047633856534957886,
-0.05422236770391464,
-0.08746226876974106,
0.06335503607988358,
-0.11619101464748383,
0.291166752576828,
0.019897961989045143,
0.052755165845155716,
0.10236944258213043,
-0.014230171218514442,
-0.1411941945552826,
0.01194937527179718,
0.1046425923705101,
-0.06366288661956787,
0.06421615183353424,
0.18121832609176636,
-0.0043220361694693565,
0.13356401026248932,
0.05603330209851265,
-0.0647120326757431,
0.03757747262716293,
-0.08561333268880844,
-0.050847530364990234,
-0.11390575021505356,
0.08456193655729294,
-0.0808870866894722,
0.16368433833122253,
0.13589851558208466,
-0.06832324713468552,
-0.005262694787234068,
-0.024368658661842346,
0.08518192172050476,
0.00516639556735754,
0.1159762442111969,
0.004672452807426453,
-0.18926149606704712,
0.030837111175060272,
-0.001757251680828631,
0.10001431405544281,
-0.2058129757642746,
-0.06500452756881714,
0.05651015043258667,
-0.02824043482542038,
-0.07453379780054092,
0.11720716208219528,
0.044659703969955444,
0.03416064754128456,
-0.03997662663459778,
-0.04699510335922241,
-0.000893113377969712,
0.14479011297225952,
-0.11406885087490082,
-0.015152707695960999
] |
null | null | null | https://civitai.com/models/192840/xayah-from-league-of-legends-nsfwsfw | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/Xayah_from_League_of_Legends | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:42:59+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | null | https://civitai.com/models/195486/chikuma-azur-lane | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/Chikuma_v1 | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:43:18+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | null | https://civitai.com/models/195631/finale-marathon-autoluna-artery-gear-fusion | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/_AG_MERATHON_Autoluna_LORA-10 | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:43:38+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | null | https://civitai.com/models/195632/finale-marathon-cream-artery-gear-fusion | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/_AG_MERATHON_Cream_LORA-10 | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:44:00+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | null | https://civitai.com/models/134569/rio-tsukatsuki-or-blue-archive | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/CHAR-RioV2 | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:44:20+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | null | https://civitai.com/models/195791/shiratsuyu-kai-ni-kancolle-or-3-outfits | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/shiratsuyu-10 | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:44:40+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | ml-agents |
# **ppo** Agent playing **Huggy**
This is a trained model of a **ppo** agent playing **Huggy**
using the [Unity ML-Agents Library](https://github.com/Unity-Technologies/ml-agents).
## Usage (with ML-Agents)
The Documentation: https://unity-technologies.github.io/ml-agents/ML-Agents-Toolkit-Documentation/
We wrote a complete tutorial to learn to train your first agent using ML-Agents and publish it to the Hub:
- A *short tutorial* where you teach Huggy the Dog 🐶 to fetch the stick and then play with him directly in your
browser: https://huggingface.co/learn/deep-rl-course/unitbonus1/introduction
- A *longer tutorial* to understand how works ML-Agents:
https://huggingface.co/learn/deep-rl-course/unit5/introduction
### Resume the training
```bash
mlagents-learn <your_configuration_file_path.yaml> --run-id=<run_id> --resume
```
### Watch your Agent play
You can watch your agent **playing directly in your browser**
1. If the environment is part of ML-Agents official environments, go to https://huggingface.co/unity
2. Step 1: Find your model_id: lawyiu/ppo-Huggy
3. Step 2: Select your *.nn /*.onnx file
4. Click on Watch the agent play 👀
| {"library_name": "ml-agents", "tags": ["Huggy", "deep-reinforcement-learning", "reinforcement-learning", "ML-Agents-Huggy"]} | reinforcement-learning | lawyiu/ppo-Huggy | [
"ml-agents",
"tensorboard",
"onnx",
"Huggy",
"deep-reinforcement-learning",
"reinforcement-learning",
"ML-Agents-Huggy",
"region:us"
] | 2023-11-11T06:44:48+00:00 | [] | [] | TAGS
#ml-agents #tensorboard #onnx #Huggy #deep-reinforcement-learning #reinforcement-learning #ML-Agents-Huggy #region-us
|
# ppo Agent playing Huggy
This is a trained model of a ppo agent playing Huggy
using the Unity ML-Agents Library.
## Usage (with ML-Agents)
The Documentation: URL
We wrote a complete tutorial to learn to train your first agent using ML-Agents and publish it to the Hub:
- A *short tutorial* where you teach Huggy the Dog to fetch the stick and then play with him directly in your
browser: URL
- A *longer tutorial* to understand how works ML-Agents:
URL
### Resume the training
### Watch your Agent play
You can watch your agent playing directly in your browser
1. If the environment is part of ML-Agents official environments, go to URL
2. Step 1: Find your model_id: lawyiu/ppo-Huggy
3. Step 2: Select your *.nn /*.onnx file
4. Click on Watch the agent play
| [
"# ppo Agent playing Huggy\n This is a trained model of a ppo agent playing Huggy\n using the Unity ML-Agents Library.\n\n ## Usage (with ML-Agents)\n The Documentation: URL\n\n We wrote a complete tutorial to learn to train your first agent using ML-Agents and publish it to the Hub:\n - A *short tutorial* where you teach Huggy the Dog to fetch the stick and then play with him directly in your\n browser: URL\n - A *longer tutorial* to understand how works ML-Agents:\n URL\n\n ### Resume the training\n \n\n ### Watch your Agent play\n You can watch your agent playing directly in your browser\n\n 1. If the environment is part of ML-Agents official environments, go to URL\n 2. Step 1: Find your model_id: lawyiu/ppo-Huggy\n 3. Step 2: Select your *.nn /*.onnx file\n 4. Click on Watch the agent play"
] | [
"TAGS\n#ml-agents #tensorboard #onnx #Huggy #deep-reinforcement-learning #reinforcement-learning #ML-Agents-Huggy #region-us \n",
"# ppo Agent playing Huggy\n This is a trained model of a ppo agent playing Huggy\n using the Unity ML-Agents Library.\n\n ## Usage (with ML-Agents)\n The Documentation: URL\n\n We wrote a complete tutorial to learn to train your first agent using ML-Agents and publish it to the Hub:\n - A *short tutorial* where you teach Huggy the Dog to fetch the stick and then play with him directly in your\n browser: URL\n - A *longer tutorial* to understand how works ML-Agents:\n URL\n\n ### Resume the training\n \n\n ### Watch your Agent play\n You can watch your agent playing directly in your browser\n\n 1. If the environment is part of ML-Agents official environments, go to URL\n 2. Step 1: Find your model_id: lawyiu/ppo-Huggy\n 3. Step 2: Select your *.nn /*.onnx file\n 4. Click on Watch the agent play"
] | [
44,
199
] | [
"passage: TAGS\n#ml-agents #tensorboard #onnx #Huggy #deep-reinforcement-learning #reinforcement-learning #ML-Agents-Huggy #region-us \n# ppo Agent playing Huggy\n This is a trained model of a ppo agent playing Huggy\n using the Unity ML-Agents Library.\n\n ## Usage (with ML-Agents)\n The Documentation: URL\n\n We wrote a complete tutorial to learn to train your first agent using ML-Agents and publish it to the Hub:\n - A *short tutorial* where you teach Huggy the Dog to fetch the stick and then play with him directly in your\n browser: URL\n - A *longer tutorial* to understand how works ML-Agents:\n URL\n\n ### Resume the training\n \n\n ### Watch your Agent play\n You can watch your agent playing directly in your browser\n\n 1. If the environment is part of ML-Agents official environments, go to URL\n 2. Step 1: Find your model_id: lawyiu/ppo-Huggy\n 3. Step 2: Select your *.nn /*.onnx file\n 4. Click on Watch the agent play"
] | [
0.02013462968170643,
0.01566624641418457,
-0.004385815002024174,
0.03464890643954277,
0.1399829089641571,
0.0022999525535851717,
0.1735982596874237,
0.125624880194664,
0.11798609793186188,
0.0847029909491539,
0.07688512653112411,
0.05008779466152191,
0.051998306065797806,
0.1692885011434555,
0.07446501404047012,
-0.21871453523635864,
-0.003666637698188424,
-0.08056332916021347,
0.05010518804192543,
0.08232446014881134,
0.0468013659119606,
-0.030094297602772713,
0.07393239438533783,
0.028435474261641502,
-0.04396167770028114,
-0.010399380698800087,
-0.07950323820114136,
-0.02328653261065483,
0.04345710948109627,
0.017680948600172997,
-0.030510229989886284,
-0.031246894970536232,
0.06007884442806244,
-0.22206585109233856,
0.030664410442113876,
0.05824757739901543,
-0.019406286999583244,
0.005362205673009157,
0.10409070551395416,
0.04147797077894211,
0.12279096245765686,
-0.06757722795009613,
0.06218535080552101,
0.05705614015460014,
-0.07398299872875214,
0.0004692680959124118,
-0.1267441213130951,
0.04233328998088837,
0.21491673588752747,
0.09818115830421448,
0.0018521343590691686,
0.10619951039552689,
-0.08963453024625778,
0.03232649713754654,
0.18836329877376556,
-0.233357772231102,
-0.06891079992055893,
0.09136143326759338,
0.07358314096927643,
-0.018255777657032013,
-0.044097624719142914,
0.03782578557729721,
-0.01983730122447014,
0.04268448054790497,
0.07278862595558167,
-0.03474551439285278,
0.22416485846042633,
-0.017211973667144775,
-0.07164224982261658,
-0.07355672121047974,
0.04856835678219795,
0.07120721787214279,
-0.06276768445968628,
-0.22410926222801208,
0.038861967623233795,
0.1549363136291504,
-0.02461729757487774,
0.009945728816092014,
0.07293429970741272,
-0.020383302122354507,
-0.03762618452310562,
-0.11132855713367462,
-0.05294181406497955,
-0.05273641645908356,
0.07455676048994064,
0.16741812229156494,
0.002360084792599082,
-0.03677470609545708,
0.0716928094625473,
0.07041971385478973,
0.035879094153642654,
-0.024920569732785225,
-0.02543550543487072,
-0.01915488950908184,
-0.10486739873886108,
-0.0004988856962881982,
-0.009065909311175346,
0.06764853000640869,
0.053692616522312164,
0.12716439366340637,
0.014996379613876343,
0.009794334881007671,
0.03336544334888458,
0.054461769759655,
-0.014097193256020546,
0.14107298851013184,
0.013561866246163845,
0.03405621647834778,
0.03804558888077736,
0.05214715749025345,
0.061593446880578995,
-0.05235742777585983,
-0.09988222271203995,
0.07332699000835419,
-0.11747120320796967,
0.10187917947769165,
0.08554774522781372,
0.024678299203515053,
-0.08092313259840012,
-0.02900080755352974,
0.019212106242775917,
-0.1394127756357193,
0.08219340443611145,
0.043515779078006744,
-0.03220479190349579,
-0.09600481390953064,
0.002775228349491954,
0.004004726652055979,
-0.08709230273962021,
0.017561106011271477,
-0.023371601477265358,
0.05017615854740143,
-0.005919747985899448,
-0.032007865607738495,
0.09596078842878342,
-0.05784929543733597,
-0.02136750891804695,
-0.15904052555561066,
-0.08868420124053955,
-0.06573653966188431,
0.05368795990943909,
-0.0535041019320488,
-0.1245947778224945,
-0.04859111085534096,
0.020627276971936226,
-0.09744079411029816,
-0.0012717158533632755,
-0.038587477058172226,
-0.059540171176195145,
-0.013459395617246628,
-0.03722570836544037,
0.06778503209352493,
0.16211707890033722,
0.04046646133065224,
-0.013700678944587708,
0.07929576933383942,
-0.18304479122161865,
0.105582095682621,
-0.10366993397474289,
0.18379686772823334,
-0.05104025825858116,
0.014629661105573177,
0.03397800400853157,
0.021111585199832916,
0.022768080234527588,
0.1818411648273468,
-0.04545395448803902,
-0.1180061474442482,
0.14611007273197174,
-0.03620435297489166,
-0.1155206486582756,
0.05752633884549141,
0.033919557929039,
0.08163094520568848,
0.03418911620974541,
0.2429015040397644,
0.10260044783353806,
-0.28014814853668213,
0.05607391521334648,
0.0388357937335968,
-0.14074267446994781,
0.014940802939236164,
0.1432088315486908,
-0.062255531549453735,
-0.0006379752885550261,
0.00006476596900029108,
-0.1403123140335083,
0.07762102037668228,
-0.011369859799742699,
-0.033695027232170105,
0.04376459866762161,
-0.031157277524471283,
-0.035301875323057175,
-0.006760315503925085,
0.00015469573554582894,
-0.04365265741944313,
-0.09337849169969559,
-0.03364593908190727,
0.08846796303987503,
-0.025423234328627586,
0.07980912178754807,
-0.06650666147470474,
0.13157710433006287,
0.03485218062996864,
0.05227918550372124,
-0.08309537172317505,
-0.10092124342918396,
0.009799094870686531,
0.016689876094460487,
0.0996629074215889,
-0.09736427664756775,
0.05433996021747589,
0.06721103936433792,
-0.0016772502567619085,
-0.07007323950529099,
-0.10251318663358688,
-0.016775114461779594,
-0.07523991912603378,
-0.11306089907884598,
-0.05877932161092758,
-0.06543070822954178,
0.123165063560009,
-0.0974128246307373,
0.0635540634393692,
-0.11007631570100784,
0.04174787178635597,
-0.012330558151006699,
-0.03177366778254509,
0.05461571365594864,
0.0041977898217737675,
0.025775514543056488,
-0.06832800805568695,
0.10148252546787262,
0.03339183330535889,
-0.091950424015522,
0.09270942211151123,
-0.05328460410237312,
-0.05811181664466858,
0.095614492893219,
0.04660985991358757,
-0.01678488589823246,
-0.04974253103137016,
-0.09001471847295761,
0.014237389899790287,
-0.08624427020549774,
0.0026197622064501047,
0.1495327204465866,
0.09546440839767456,
0.11464576423168182,
-0.07554154843091965,
-0.06861110776662827,
-0.020686285570263863,
-0.11022177338600159,
-0.06819353252649307,
0.15968658030033112,
0.031175833195447922,
0.0905304029583931,
0.04414977878332138,
0.0698724240064621,
0.07565461099147797,
0.08542310446500778,
0.019863909110426903,
-0.11715980619192123,
-0.0201158057898283,
0.06959516555070877,
0.05578688532114029,
0.0026877974160015583,
0.019233915954828262,
-0.008396675810217857,
0.015640832483768463,
-0.03975886106491089,
-0.0040047853253781796,
-0.13737626373767853,
-0.07945118844509125,
0.0035885872785001993,
-0.03721858188509941,
0.04815834388136864,
-0.01671251282095909,
-0.04532759636640549,
0.05998726934194565,
0.0940563827753067,
0.029336394742131233,
0.003560243872925639,
-0.04104552045464516,
-0.1098867878317833,
0.07662755250930786,
-0.0778476670384407,
-0.3180333375930786,
-0.12415389716625214,
-0.11969656497240067,
-0.07086939364671707,
0.024751411750912666,
0.05911971256136894,
-0.16229136288166046,
-0.02154052071273327,
-0.11648393422365189,
-0.04325222969055176,
0.06189027056097984,
-0.06254275143146515,
0.18166311085224152,
0.10774344950914383,
0.024937089532613754,
-0.07513558864593506,
-0.02290821261703968,
0.007016285788267851,
-0.05158913508057594,
0.03627733141183853,
0.03426218405365944,
0.05564935505390167,
0.11555854231119156,
0.07674196362495422,
0.042119476944208145,
-0.02590922825038433,
0.08098838478326797,
-0.07668980211019516,
-0.018308835104107857,
0.12651650607585907,
-0.0198153518140316,
0.07734303176403046,
0.04154575616121292,
0.03154804930090904,
-0.041173920035362244,
0.048844266682863235,
0.009731154888868332,
-0.0667831301689148,
-0.1945858746767044,
-0.10014500468969345,
-0.02928696572780609,
0.22219416499137878,
0.08469226211309433,
0.09357500076293945,
-0.06188156083226204,
-0.034582752734422684,
0.0015074345283210278,
-0.03614242002367973,
0.14958325028419495,
0.11801958084106445,
-0.03208004683256149,
-0.08003263175487518,
-0.002359572798013687,
-0.04549248144030571,
0.012206453830003738,
0.09743191301822662,
0.003954376094043255,
0.06467542797327042,
0.03413238748908043,
-0.003649619407951832,
0.03616129979491234,
-0.0542670376598835,
-0.0739789679646492,
0.05541824549436569,
0.03012908063828945,
-0.00829271599650383,
-0.03729260340332985,
-0.08643314987421036,
-0.018020858988165855,
0.09967134147882462,
0.1382700651884079,
-0.07975958287715912,
-0.09018923342227936,
0.05448316037654877,
0.10537788271903992,
0.09946529567241669,
0.028001826256513596,
-0.1293233186006546,
-0.048943642526865005,
0.018418531864881516,
-0.13640297949314117,
0.025335252285003662,
-0.008052081800997257,
0.030984926968812943,
-0.18413123488426208,
0.07959163933992386,
0.02833366021513939,
0.12371307611465454,
0.05703860893845558,
0.006991682108491659,
0.029488496482372284,
0.08293190598487854,
-0.016962431371212006,
0.06534162163734436,
-0.18843425810337067,
0.06881366670131683,
-0.013206664472818375,
0.07842202484607697,
-0.04774884134531021,
0.008507156744599342,
0.08933504670858383,
-0.010130480863153934,
0.17188167572021484,
0.041008271276950836,
0.08451655507087708,
-0.06454598903656006,
-0.1804802119731903,
-0.043809663504362106,
-0.012990055605769157,
-0.08362045139074326,
0.06172504276037216,
-0.0008308493997901678,
-0.037574365735054016,
-0.10461729019880295,
0.1478862464427948,
0.008656417019665241,
-0.06644183397293091,
0.00008714452269487083,
-0.06584904342889786,
0.008145899511873722,
-0.05399887263774872,
-0.03437429666519165,
-0.039714884012937546,
0.22321917116641998,
0.13933774828910828,
-0.00645701726898551,
-0.08932053297758102,
-0.05267814174294472,
-0.041147153824567795,
-0.021111130714416504,
-0.024365944787859917,
-0.00785601045936346,
0.12962502241134644,
-0.08706806600093842,
-0.03620527312159538,
-0.017059454694390297,
-0.09997726231813431,
-0.11402550339698792,
-0.003282500198110938,
0.23463298380374908,
-0.014972791075706482,
0.0928003191947937,
-0.022568535059690475,
0.01319486927241087,
-0.005181659013032913,
-0.08894618600606918,
0.1474570482969284,
0.18452046811580658,
0.015014853328466415,
0.059351228177547455,
-0.10768799483776093,
0.04062303528189659,
-0.10894158482551575,
-0.034717414528131485,
0.1804732233285904,
0.31658539175987244,
-0.02615993656218052,
0.208054319024086,
0.07612340152263641,
-0.06129230931401253,
-0.22217696905136108,
-0.07453461736440659,
0.037592098116874695,
-0.005126666277647018,
0.15007752180099487,
-0.14283068478107452,
0.03357304632663727,
0.0356542244553566,
-0.012050488963723183,
0.011406784877181053,
-0.14021919667720795,
-0.10012231767177582,
-0.010936721228063107,
0.06651192903518677,
0.025439459830522537,
-0.09530755132436752,
-0.05211770907044411,
-0.03690261393785477,
-0.07218802720308304,
0.07334108650684357,
-0.1552489548921585,
0.08856073021888733,
0.0030598612502217293,
0.025062642991542816,
0.04524364322423935,
-0.02444765344262123,
0.1387452781200409,
-0.06687934696674347,
-0.035798463970422745,
-0.08931101113557816,
-0.0010140599915757775,
-0.0022990801371634007,
-0.11570653319358826,
0.08169109374284744,
-0.058821920305490494,
-0.061784472316503525,
-0.18669170141220093,
-0.049137819558382034,
-0.030451763421297073,
0.056788042187690735,
-0.014466523192822933,
-0.005740042310208082,
-0.007335451897233725,
0.0746561735868454,
0.07940682023763657,
0.04550284519791603,
0.06235584244132042,
-0.029155809432268143,
-0.01109461858868599,
0.07963044941425323,
0.09035197645425797,
0.01699233241379261,
-0.07872976362705231,
-0.042089421302080154,
-0.03974681720137596,
-0.023703942075371742,
-0.08837205916643143,
0.0018089248333126307,
0.026187356561422348,
0.007027465850114822,
0.06513579189777374,
0.05070721358060837,
-0.09440163522958755,
-0.01929895207285881,
0.08144690841436386,
-0.0990411564707756,
-0.12739305198192596,
-0.05142992362380028,
-0.10820820927619934,
-0.04659928008913994,
-0.0694669559597969,
0.04588919132947922,
-0.02695733681321144,
-0.0012893329840153456,
0.04623527452349663,
0.05043472349643707,
-0.08118772506713867,
0.026011625304818153,
-0.019376477226614952,
0.012630201876163483,
-0.057890575379133224,
0.14531178772449493,
0.016099611297249794,
-0.061900727450847626,
0.030984478071331978,
0.19882573187351227,
-0.04815367981791496,
-0.07745571434497833,
-0.04818857088685036,
0.05150744691491127,
0.1566149890422821,
-0.03466561436653137,
-0.03980563208460808,
-0.07110833376646042,
0.08532831817865372,
-0.11039256304502487,
0.00040752170025371015,
-0.08787717670202255,
0.030187569558620453,
0.09103094786405563,
-0.11297550052404404,
0.08702989667654037,
0.008863485418260098,
-0.06312840431928635,
-0.108866386115551,
0.07841110974550247,
0.05766543745994568,
0.17484374344348907,
-0.01831476390361786,
-0.04486393183469772,
-0.15395107865333557,
0.002496858360245824,
-0.02013152837753296,
-0.008818188682198524,
-0.17565391957759857,
-0.007823240011930466,
-0.018376300111413002,
0.04672425240278244,
-0.014620451256632805,
0.03551922366023064,
-0.052319034934043884,
-0.06657887995243073,
-0.05595411732792854,
0.09390519559383392,
-0.03557151183485985,
-0.03384964540600777,
0.028054188936948776,
-0.0832986906170845,
0.10371481627225876,
0.0706373080611229,
-0.02456558123230934,
-0.05694376304745674,
-0.06121606007218361,
-0.03006022423505783,
0.019742397591471672,
-0.04135384410619736,
0.03186450153589249,
-0.18156562745571136,
0.014392507262527943,
-0.03760756179690361,
-0.09425517171621323,
0.017849110066890717,
0.11140886694192886,
-0.07601167261600494,
0.06439270824193954,
0.00768378796055913,
-0.14453858137130737,
-0.0781167522072792,
0.009859525598585606,
0.001189064932987094,
0.06171957403421402,
0.07268182933330536,
-0.07474659383296967,
0.1673264503479004,
-0.1277208775281906,
-0.007125543896108866,
0.0021361352410167456,
0.018853679299354553,
0.0073621030896902084,
-0.09855134040117264,
0.035616908222436905,
-0.004976483527570963,
0.1429504007101059,
0.09387630969285965,
-0.034664515405893326,
0.030464734882116318,
0.018834812566637993,
0.10367310792207718,
0.00254104845225811,
0.006290812510997057,
-0.022404618561267853,
0.009082159027457237,
0.03387477993965149,
-0.01491463277488947,
0.06395556777715683,
-0.132026806473732,
0.09592673182487488,
0.07792142033576965,
0.11668684333562851,
0.06178964674472809,
0.07494691759347916,
-0.10271108150482178,
-0.17636515200138092,
-0.04113229736685753,
-0.008464229293167591,
0.03577040508389473,
-0.06733063608407974,
0.2237558662891388,
0.10416358709335327,
-0.2160256952047348,
0.06909140944480896,
0.0048529040068387985,
0.016676701605319977,
-0.09200207144021988,
-0.1255478709936142,
0.0024044094607234,
-0.21519720554351807,
0.07531137019395828,
-0.05836144834756851,
0.009624741040170193,
-0.05026726797223091,
-0.02357613295316696,
-0.008383084088563919,
0.07060658186674118,
-0.11897015571594238,
-0.05593930557370186,
0.08733364939689636,
-0.04253176227211952,
0.01495177112519741,
-0.016832243651151657,
-0.01916120946407318,
-0.04317368566989899,
-0.07206789404153824,
0.05482654273509979,
0.06318850815296173,
0.01350098755210638,
0.05710660666227341,
-0.06309396028518677,
-0.05991119146347046,
0.032400943338871,
-0.010932492092251778,
0.020154492929577827,
0.1292412132024765,
0.053390298038721085,
-0.10402873903512955,
0.0007961423834785819,
0.1982308179140091,
-0.05429629236459732,
-0.007181480061262846,
-0.09984292089939117,
0.16860654950141907,
-0.026792174205183983,
-0.05922815203666687,
-0.04946822673082352,
-0.09303151816129684,
-0.09114766865968704,
0.24591730535030365,
0.121874138712883,
-0.051134031265974045,
0.018657395616173744,
-0.027466122061014175,
0.025029482319951057,
0.011156580410897732,
0.1206963062286377,
0.07320485264062881,
0.14783340692520142,
-0.060470178723335266,
-0.028622332960367203,
-0.007503179833292961,
-0.07087303698062897,
-0.16670553386211395,
-0.009568930603563786,
0.020884206518530846,
-0.03529081866145134,
-0.02813868783414364,
0.05979028716683388,
-0.1162884309887886,
-0.11772991716861725,
0.10948679596185684,
-0.09538926929235458,
-0.0703078955411911,
-0.01874014362692833,
0.006374917924404144,
0.02063119411468506,
0.1294776201248169,
0.05743411183357239,
0.02876138500869274,
0.10170580446720123,
-0.031759113073349,
-0.05975857749581337,
0.029265927150845528,
0.08917181193828583,
-0.07618605345487595,
0.19604766368865967,
-0.04274767264723778,
0.038218867033720016,
0.049533020704984665,
0.027450142428278923,
-0.1390189379453659,
0.0689147487282753,
0.021404404193162918,
-0.1617857813835144,
0.011072411201894283,
0.06369409710168839,
-0.06904047727584839,
-0.054321903735399246,
0.07331199198961258,
-0.01984124816954136,
-0.00009583090286469087,
0.11114199459552765,
-0.006953091360628605,
-0.04430057480931282,
0.0784919410943985,
-0.1648780256509781,
0.09856026619672775,
0.14972485601902008,
-0.056765004992485046,
-0.007840818725526333,
-0.051904547959566116,
0.040415387600660324,
0.033130843192338943,
0.05007508769631386,
-0.010297869332134724,
-0.15014159679412842,
0.015303043648600578,
0.0024894075468182564,
0.03474683314561844,
-0.28980937600135803,
-0.12070465832948685,
-0.03745056688785553,
-0.04164966940879822,
-0.05292781442403793,
0.10927112400531769,
0.10379767417907715,
-0.011331401765346527,
-0.008766012266278267,
-0.19557379186153412,
0.046085700392723083,
0.16071274876594543,
-0.07589025050401688,
-0.007547715213149786
] |
null | null | null | https://civitai.com/models/49983/alice-or-solo-max-level-newbie-manhwa | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/chara_SoloMaxLevelNewbie_Alice_v2 | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:44:58+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | null | https://civitai.com/models/195892/siesta-the-detective-is-already-dead | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/siesta_AIpopai | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:45:52+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | null | https://civitai.com/models/195933/new-and-fixed-rin-tohsaka | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/tohsaka888 | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:50:51+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | null | https://civitai.com/models/195988/natsumi-kyouno-date-a-live | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/natsumi-dal-01 | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:51:13+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | null | https://civitai.com/models/196001/eris-greyrat-or-mushoku-tensei | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/eris_greyrat-08 | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:51:33+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | null | https://civitai.com/models/196004/ylgr-fire-emblem-2outfits | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/ylgrV2 | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:51:53+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | transformers | <p><h1> StablePlats-3b </h1></p>
An experimental finetune of StableLM-3B-4E1T with Alpaca-QLoRA
<h2> Datasets </h2>
Trained on alpca style datasets
<p><h2> Prompt Template </h2></p>
Uses alpaca style prompt template | {"license": "cc-by-sa-4.0"} | text-generation | vihangd/stableplats-3b-v1 | [
"transformers",
"pytorch",
"stablelm_epoch",
"text-generation",
"custom_code",
"license:cc-by-sa-4.0",
"autotrain_compatible",
"region:us"
] | 2023-11-11T06:52:08+00:00 | [] | [] | TAGS
#transformers #pytorch #stablelm_epoch #text-generation #custom_code #license-cc-by-sa-4.0 #autotrain_compatible #region-us
| <p><h1> StablePlats-3b </h1></p>
An experimental finetune of StableLM-3B-4E1T with Alpaca-QLoRA
<h2> Datasets </h2>
Trained on alpca style datasets
<p><h2> Prompt Template </h2></p>
Uses alpaca style prompt template | [] | [
"TAGS\n#transformers #pytorch #stablelm_epoch #text-generation #custom_code #license-cc-by-sa-4.0 #autotrain_compatible #region-us \n"
] | [
49
] | [
"passage: TAGS\n#transformers #pytorch #stablelm_epoch #text-generation #custom_code #license-cc-by-sa-4.0 #autotrain_compatible #region-us \n"
] | [
-0.08363451063632965,
0.09588297456502914,
-0.007146674674004316,
0.0164505522698164,
0.13356243073940277,
0.010325468145310879,
0.1827065497636795,
0.07263427972793579,
0.0027699919883161783,
-0.038315549492836,
0.15595698356628418,
0.21996290981769562,
-0.02177344262599945,
0.1472121626138687,
-0.06699742376804352,
-0.2045293003320694,
0.05141058564186096,
0.021941378712654114,
0.03267046809196472,
0.10064435750246048,
0.09073533117771149,
-0.031739313155412674,
0.056992899626493454,
-0.03537065535783768,
-0.150375097990036,
0.010981254279613495,
0.035673052072525024,
-0.11379831284284592,
0.09739809483289719,
0.028121614828705788,
0.10217224806547165,
0.10747741907835007,
-0.01224578358232975,
-0.15667641162872314,
0.02735653892159462,
-0.027558492496609688,
-0.11227353662252426,
0.06059874966740608,
0.07853934168815613,
-0.021233484148979187,
0.08577924966812134,
0.08160720020532608,
-0.04729589447379112,
0.057112060487270355,
-0.11124483495950699,
-0.08233369886875153,
-0.054563917219638824,
0.010092454962432384,
0.051050081849098206,
0.06417100131511688,
0.023114053532481194,
0.15062762796878815,
-0.1430765837430954,
0.07383818924427032,
0.04365948587656021,
-0.3080596327781677,
0.02055603824555874,
0.11517428606748581,
0.02550015226006508,
0.07848404347896576,
-0.027961155399680138,
0.059262096881866455,
0.04272809624671936,
0.021534070372581482,
0.022349214181303978,
-0.06853622943162918,
-0.12000306695699692,
0.03330909460783005,
-0.06750596314668655,
-0.05978817865252495,
0.27960747480392456,
-0.05271293222904205,
0.017965590581297874,
0.01007063128054142,
-0.08344344049692154,
-0.01202055998146534,
-0.006635884288698435,
0.044969841837882996,
-0.0006564948125742376,
0.09845049679279327,
0.00025936763267964125,
-0.06730439513921738,
-0.1412941962480545,
-0.02595074474811554,
-0.18311794102191925,
0.1579316407442093,
0.02742910198867321,
0.043957311660051346,
-0.10859216004610062,
0.08514199405908585,
0.020947294309735298,
-0.11211062967777252,
0.012024029158055782,
-0.05364863947033882,
0.09710698574781418,
0.01830293796956539,
-0.06133627891540527,
0.035225287079811096,
0.10667625814676285,
0.16762861609458923,
-0.033138953149318695,
-0.0008030570461414754,
-0.032070476561784744,
0.11365820467472076,
-0.05043868348002434,
0.04616134241223335,
0.041114505380392075,
0.06674980372190475,
0.11206206679344177,
-0.06489519774913788,
0.06944054365158081,
-0.044628094881772995,
-0.2003808170557022,
-0.008452562615275383,
0.017566390335559845,
0.12441496551036835,
0.013680652715265751,
0.061051126569509506,
-0.06097444146871567,
0.025810426101088524,
0.1609596163034439,
-0.07480040192604065,
-0.005178283900022507,
0.01918383128941059,
0.029833639040589333,
0.042320843786001205,
0.03444097191095352,
0.0007234037038870156,
-0.07357184588909149,
0.07813683897256851,
-0.06775561720132828,
-0.018459811806678772,
-0.028265705332159996,
-0.0431959331035614,
0.05921586975455284,
-0.1031332015991211,
0.029904531314969063,
-0.1774718314409256,
-0.19692575931549072,
0.03541838005185127,
-0.013774157501757145,
0.01921463944017887,
-0.0667629987001419,
-0.006478441413491964,
-0.0512310191988945,
0.00042729193228296936,
-0.07445239275693893,
-0.13600511848926544,
-0.07250836491584778,
0.10459135472774506,
-0.0031973072327673435,
0.001504944753833115,
-0.1793948858976364,
0.05671804025769234,
-0.14129044115543365,
-0.01672416552901268,
-0.05080859735608101,
0.010396583005785942,
-0.060053929686546326,
0.09472639113664627,
-0.001961396774277091,
-0.03763432055711746,
-0.021601971238851547,
0.047324758023023605,
-0.03826283663511276,
0.16609862446784973,
-0.11759702116250992,
-0.10342614352703094,
0.19742941856384277,
-0.14896655082702637,
-0.1686554253101349,
0.0795467272400856,
0.03892483189702034,
-0.017926272004842758,
0.06911636143922806,
0.12011938542127609,
0.053548283874988556,
-0.054377052932977676,
0.06596343219280243,
0.10757949203252792,
-0.04867321625351906,
-0.1956777721643448,
0.04794255644083023,
-0.0669301226735115,
-0.10020679235458374,
0.07894851267337799,
-0.06984962522983551,
0.0975148156285286,
-0.02652658149600029,
-0.05764886736869812,
-0.03698434308171272,
-0.014606091193854809,
0.036266691982746124,
0.019336484372615814,
0.07276517897844315,
-0.0690307766199112,
-0.020978989079594612,
0.048075780272483826,
0.051383715122938156,
0.028087390586733818,
0.023504450917243958,
-0.0658213347196579,
0.1565144807100296,
-0.011151080019772053,
0.03715801239013672,
-0.11752065271139145,
-0.05997899919748306,
0.004421585705131292,
0.05179958790540695,
0.05102051794528961,
0.09699500352144241,
0.029430052265524864,
0.0345260314643383,
-0.005055990070104599,
-0.0511067733168602,
0.06612661480903625,
0.0015140577452257276,
-0.013447633013129234,
-0.10301640629768372,
0.058769091963768005,
-0.031028257682919502,
0.14929531514644623,
-0.06567417085170746,
0.03787694871425629,
0.07319603860378265,
0.09368320554494858,
-0.039095379412174225,
0.06459590792655945,
-0.017405932769179344,
0.06885972619056702,
-0.08342629671096802,
0.03919835016131401,
0.11375373601913452,
0.03532649576663971,
-0.08080233633518219,
0.20799283683300018,
-0.15786387026309967,
0.25841590762138367,
0.22725151479244232,
-0.21637599170207977,
0.04785839840769768,
-0.06274110823869705,
0.008088690228760242,
0.007450691424310207,
0.026662185788154602,
-0.0221329964697361,
0.04259263724088669,
-0.0031208370346575975,
0.2048138678073883,
-0.053428635001182556,
0.022312965244054794,
-0.010742556303739548,
-0.07901359349489212,
-0.02860422432422638,
0.060502901673316956,
0.18932859599590302,
-0.05408720672130585,
0.1863933950662613,
0.28374233841896057,
-0.033722516149282455,
0.16425099968910217,
-0.06428946554660797,
0.0026373390574008226,
0.028686504811048508,
0.010035272687673569,
-0.008204328827559948,
-0.021707549691200256,
-0.06525777280330658,
-0.02293696068227291,
0.060081109404563904,
-0.013976868242025375,
0.07692012935876846,
-0.17424766719341278,
-0.060890521854162216,
-0.006075113546103239,
-0.042037349194288254,
-0.043441422283649445,
0.06288886815309525,
0.007383135613054037,
0.07194763422012329,
-0.07075070589780807,
-0.13984985649585724,
0.12409242242574692,
0.019039273262023926,
-0.07240919768810272,
0.15406934916973114,
-0.19300530850887299,
-0.2264561802148819,
-0.24123124778270721,
-0.07570665329694748,
-0.08761188387870789,
0.03851514309644699,
0.127831369638443,
-0.055450741201639175,
-0.03653109818696976,
-0.015416262671351433,
-0.009588601067662239,
-0.025935065001249313,
-0.032561302185058594,
-0.10445728152990341,
0.02691453881561756,
-0.04494970664381981,
-0.11868618428707123,
-0.04814129322767258,
-0.007421604823321104,
-0.09226197004318237,
0.15550708770751953,
-0.08219398558139801,
0.09782317280769348,
0.15624774992465973,
0.01598694548010826,
0.026314062997698784,
-0.029959211125969887,
0.11769714206457138,
-0.01652609370648861,
-0.01709792949259281,
0.23893988132476807,
0.009485299699008465,
0.0750313326716423,
0.10819602757692337,
0.05222874879837036,
-0.06436667591333389,
-0.0003903743054252118,
-0.08376238495111465,
-0.08673959225416183,
-0.22348453104496002,
-0.14112648367881775,
-0.11372524499893188,
0.05509602278470993,
0.02613573521375656,
0.0845542922616005,
0.11762760579586029,
0.09498375654220581,
-0.031913336366415024,
-0.005167118739336729,
-0.0055564530193805695,
0.07806374132633209,
0.271688848733902,
-0.006961027625948191,
0.11706886440515518,
-0.07076068967580795,
-0.05784732103347778,
0.12096930295228958,
0.04652578383684158,
0.09000466763973236,
0.09821557998657227,
0.139578714966774,
0.07723098248243332,
0.15044339001178741,
0.15838457643985748,
0.08494260907173157,
0.0587533600628376,
0.014283368363976479,
-0.017060337588191032,
-0.05748031660914421,
-0.05299975350499153,
0.03157487511634827,
0.011712771840393543,
-0.14473840594291687,
-0.03986625000834465,
-0.09553221613168716,
0.061756789684295654,
0.09791677445173264,
0.021973643451929092,
-0.2247249335050583,
0.055884845554828644,
0.05744697526097298,
0.059130650013685226,
-0.04045971482992172,
0.07750517129898071,
-0.04916098713874817,
-0.09299864619970322,
0.07135643810033798,
-0.019373169168829918,
0.10605107247829437,
-0.023829186335206032,
0.05732852593064308,
-0.05306533724069595,
-0.003844431834295392,
0.050774600356817245,
0.10901883244514465,
-0.25202152132987976,
0.20705965161323547,
0.015074798837304115,
-0.015004029497504234,
-0.03706864267587662,
0.003187974914908409,
0.044092703610658646,
0.2306661307811737,
0.03734574094414711,
0.018403472378849983,
-0.03304557502269745,
-0.13452906906604767,
-0.04225338622927666,
0.027888091281056404,
0.08293003588914871,
-0.031154634431004524,
-0.04434222728013992,
-0.03170231729745865,
0.0015507626812905073,
-0.01653056964278221,
-0.039162591099739075,
-0.03202483430504799,
-0.11976257711648941,
0.07026723027229309,
0.11475446075201035,
0.0900072231888771,
-0.05032947659492493,
-0.037228696048259735,
-0.1442863792181015,
0.16733597218990326,
-0.11643454432487488,
-0.0829889178276062,
-0.09484489262104034,
-0.15289127826690674,
0.03602459281682968,
-0.07819996774196625,
0.06766990572214127,
-0.08807644993066788,
-0.015345708467066288,
-0.08700262010097504,
-0.1508844792842865,
0.09417150914669037,
-0.08726826310157776,
-0.06346771121025085,
-0.024059340357780457,
0.15090657770633698,
-0.12472980469465256,
0.013744872994720936,
0.006550407037138939,
0.03748259320855141,
-0.08918491750955582,
-0.11802785843610764,
0.0003230994916521013,
-0.004671957343816757,
0.010248561389744282,
0.04844607412815094,
-0.1178915873169899,
-0.013004631735384464,
0.01690586283802986,
-0.05177944153547287,
0.2256559580564499,
0.33282941579818726,
-0.057961177080869675,
0.12385442107915878,
0.27993693947792053,
-0.08319602906703949,
-0.3287545442581177,
-0.15320691466331482,
-0.15940135717391968,
-0.04852309450507164,
0.013820638880133629,
-0.227041095495224,
0.06361060589551926,
0.08586131036281586,
-0.05709252133965492,
0.11162567883729935,
-0.2297406643629074,
-0.0937100201845169,
0.2017357349395752,
0.003972822334617376,
0.24701152741909027,
-0.16355541348457336,
-0.11300583928823471,
-0.06338215619325638,
-0.13792920112609863,
0.07095403969287872,
-0.08504951000213623,
0.09805098176002502,
-0.036704905331134796,
0.047136351466178894,
0.0041167717427015305,
-0.04752790555357933,
0.1448565423488617,
-0.020429018884897232,
0.0539073720574379,
-0.10414181649684906,
0.015960756689310074,
0.11770472675561905,
0.013501784764230251,
0.03991720825433731,
-0.19737285375595093,
0.02740975096821785,
-0.08331523835659027,
-0.01231670193374157,
-0.05293891578912735,
0.1079072430729866,
0.003801666898652911,
-0.055080875754356384,
0.0069926404394209385,
-0.066555917263031,
-0.05820358544588089,
-0.02785712294280529,
0.17637427151203156,
-0.013171970844268799,
0.10812508314847946,
0.20156553387641907,
0.07319645583629608,
-0.13523150980472565,
-0.0033130112569779158,
-0.0893809050321579,
-0.07483580708503723,
0.0689350813627243,
-0.036295704543590546,
-0.0008640165324322879,
0.10700418055057526,
-0.025782158598303795,
0.09557008743286133,
0.06988389790058136,
0.002093351213261485,
0.016448115929961205,
0.1366458684206009,
-0.1884872168302536,
-0.0037197128403931856,
-0.053228314965963364,
0.05393461510539055,
0.10100778192281723,
0.07860241085290909,
0.1399761140346527,
-0.0031912168487906456,
-0.013452410697937012,
0.00805471371859312,
0.009769445285201073,
-0.028497176244854927,
0.07579725980758667,
0.05704352632164955,
0.019235607236623764,
-0.14634467661380768,
0.10079225152730942,
0.024043064564466476,
-0.07467930763959885,
-0.03441999852657318,
0.12175906449556351,
-0.1484759896993637,
-0.13898897171020508,
-0.021567266434431076,
0.0839305967092514,
-0.21053428947925568,
-0.09903521090745926,
-0.09244347363710403,
-0.12654316425323486,
0.03104485012590885,
0.11560064554214478,
0.09082148224115372,
0.08200272917747498,
-0.011414061300456524,
-0.050792280584573746,
-0.002461800817400217,
-0.007924707606434822,
-0.03125374764204025,
0.07022429257631302,
-0.10146170109510422,
0.07839182764291763,
0.013962693512439728,
0.09265601634979248,
-0.06603673100471497,
-0.053449008613824844,
-0.10177616029977798,
0.030553502961993217,
-0.12134382128715515,
-0.010958680883049965,
-0.07131896913051605,
-0.027745215222239494,
0.017200782895088196,
-0.029649745672941208,
-0.022778192535042763,
0.0008724837680347264,
-0.11944853514432907,
-0.004252719227224588,
-0.010540908202528954,
0.06425298750400543,
-0.11016155779361725,
-0.021589169278740883,
0.06990018486976624,
-0.02900054305791855,
0.09341325610876083,
0.08511023223400116,
-0.06730771064758301,
0.10264382511377335,
-0.16118286550045013,
-0.08063986897468567,
0.12074223905801773,
0.04693039134144783,
0.01940207928419113,
0.0763261690735817,
0.021508105099201202,
0.11317863315343857,
-0.0334429033100605,
0.04311302304267883,
0.06220419332385063,
-0.15869998931884766,
-0.007882116362452507,
-0.016724243760108948,
-0.1180790439248085,
-0.054364919662475586,
-0.042640723288059235,
0.12087670713663101,
0.03852347284555435,
0.20994482934474945,
-0.059015072882175446,
0.038412634283304214,
-0.03525340184569359,
0.006379193626344204,
-0.03825530409812927,
-0.17271502315998077,
-0.16520577669143677,
-0.07420863956212997,
-0.016660992056131363,
-0.0035885460674762726,
0.2458285540342331,
0.030824972316622734,
-0.08736254274845123,
0.04130430892109871,
0.12705965340137482,
0.022610655054450035,
-0.006810711696743965,
0.19892701506614685,
0.09567402303218842,
0.017092451453208923,
-0.1248941570520401,
0.048746634274721146,
0.013466092757880688,
-0.13326767086982727,
0.05274730175733566,
0.04151938483119011,
-0.018456915393471718,
0.07426177710294724,
0.09080769121646881,
0.0010894258739426732,
-0.085203617811203,
-0.14571666717529297,
0.008713711984455585,
0.10393473505973816,
-0.017976004630327225,
0.12116501480340958,
0.14751794934272766,
-0.0023846698459237814,
0.014294721186161041,
0.010174483992159367,
-0.019728532060980797,
-0.1803315430879593,
-0.0965772420167923,
-0.0846463218331337,
-0.12918519973754883,
0.018665483221411705,
-0.03832976892590523,
0.00749578233808279,
0.1114969402551651,
0.02877148613333702,
-0.06369270384311676,
0.03388037905097008,
0.006833374500274658,
-0.09549747407436371,
0.016137223690748215,
-0.051918718963861465,
0.00903843343257904,
-0.06233229860663414,
-0.07622580975294113,
-0.051484424620866776,
-0.039359577000141144,
-0.01859099604189396,
0.052040647715330124,
0.003736292477697134,
0.043454986065626144,
-0.15494050085544586,
-0.08445184677839279,
-0.030554471537470818,
0.05155045539140701,
-0.010607685893774033,
0.15764988958835602,
0.006287369877099991,
-0.0306897833943367,
0.06403598189353943,
0.12722566723823547,
-0.027926119044423103,
-0.1427055150270462,
-0.003883681260049343,
0.24113063514232635,
0.056761689484119415,
0.0874175950884819,
0.010754629969596863,
-0.029955463483929634,
-0.024583354592323303,
0.25626140832901,
0.3112201988697052,
-0.08026009052991867,
0.0414239838719368,
-0.0228644497692585,
0.02549135498702526,
0.054993581026792526,
0.1637197583913803,
0.061953023076057434,
0.2078959196805954,
-0.04405439272522926,
-0.016251470893621445,
-0.08118005841970444,
0.009857786819338799,
-0.14529584348201752,
0.025668125599622726,
-0.019227411597967148,
-0.08480779081583023,
-0.03719210997223854,
0.0743989422917366,
-0.12287672609090805,
0.1122920885682106,
-0.009010180830955505,
-0.0752890408039093,
-0.0025457064621150494,
-0.034838560968637466,
0.14646080136299133,
0.031907547265291214,
0.03748930245637894,
-0.05988643690943718,
-0.051511917263269424,
0.04626511037349701,
-0.017373710870742798,
-0.22281984984874725,
-0.0266718752682209,
0.06645651161670685,
-0.08866851776838303,
0.052384138107299805,
-0.01138505432754755,
0.09147193282842636,
0.07252766191959381,
0.0717163011431694,
-0.03863375633955002,
0.17086827754974365,
0.0227954238653183,
-0.06768549978733063,
0.032643336802721024,
-0.06774582713842392,
-0.021273721009492874,
-0.025577357038855553,
0.028503548353910446,
-0.04952637106180191,
0.061301637440919876,
0.017166322097182274,
-0.09525294601917267,
-0.02667826972901821,
0.004216120578348637,
-0.06316664814949036,
0.04035703465342522,
0.029261324554681778,
-0.004453775938600302,
-0.057781051844358444,
-0.0756341740489006,
-0.000680155644658953,
0.02941267192363739,
-0.20283862948417664,
-0.04391694441437721,
-0.05628356710076332,
-0.05890800058841705,
0.13151678442955017,
0.04833972081542015,
-0.16077111661434174,
-0.0006598717882297933,
-0.12512628734111786,
0.062190741300582886,
-0.17469395697116852,
0.05805162340402603,
0.11221057921648026,
0.0073633454740047455,
-0.006421019788831472,
-0.017042800784111023,
0.004544178955256939,
0.019443677738308907,
-0.1274237483739853,
-0.08852192014455795
] |
null | null | null | https://civitai.com/models/196039/sae-yeon-or-sex-study-group-or-manhwa | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/SaeYeon_SSG | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:52:12+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | null | https://civitai.com/models/195887/himeno-oror-chainsaw-man | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/himeno-20 | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:52:31+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | null | https://civitai.com/models/196055/chengdu-oshiroprojectrere | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/Chengdu_v1 | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:52:49+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | null | https://civitai.com/models/196076/miyamae-tooru-seiren | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/miyamae_tooru-000014 | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:53:08+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | null | a tree | {} | null | gxdwzs/1 | [
"region:us"
] | 2023-11-11T06:54:42+00:00 | [] | [] | TAGS
#region-us
| a tree | [] | [
"TAGS\n#region-us \n"
] | [
6
] | [
"passage: TAGS\n#region-us \n"
] | [
0.024608636274933815,
-0.026205500587821007,
-0.009666500613093376,
-0.10395516455173492,
0.08638657629489899,
0.059816278517246246,
0.01882290467619896,
0.020661840215325356,
0.23975107073783875,
-0.005599027033895254,
0.1219947561621666,
0.0015615287702530622,
-0.037353623658418655,
0.03733762726187706,
-0.0035912662278860807,
-0.17583473026752472,
0.03876631706953049,
-0.018274923786520958,
0.01843859627842903,
0.026470553129911423,
-0.07776834815740585,
-0.07564429938793182,
0.015296397730708122,
-0.10247814655303955,
-0.083692267537117,
0.11002834886312485,
0.031466204673051834,
-0.019670886918902397,
0.10779199749231339,
-0.04243955761194229,
0.18699054419994354,
-0.011512263678014278,
-0.11213519424200058,
-0.2536850869655609,
0.021806683391332626,
-0.01765260472893715,
-0.08747660368680954,
0.01506110467016697,
0.0665089413523674,
-0.09014441072940826,
-0.0588928684592247,
0.0795099288225174,
-0.01132340170443058,
0.04246443510055542,
-0.27593839168548584,
-0.12684126198291779,
-0.05297930911183357,
-0.1421966552734375,
0.08651168644428253,
0.04035491496324539,
0.008764253929257393,
0.15506891906261444,
-0.20897391438484192,
0.004104613792151213,
0.08255259692668915,
-0.2538507878780365,
0.05591634660959244,
0.17671173810958862,
0.03623908758163452,
0.18037272989749908,
0.0060391901060938835,
0.11029672622680664,
0.0716743916273117,
-0.024263937026262283,
-0.17590197920799255,
-0.08127854019403458,
-0.04696211963891983,
0.16642488539218903,
-0.06727185100317001,
-0.14248386025428772,
0.34701237082481384,
0.00015008423360995948,
0.009657775051891804,
0.16921205818653107,
-0.059524230659008026,
-0.09972117841243744,
0.07259953022003174,
0.016484731808304787,
0.018492350354790688,
0.1471305936574936,
0.16307872533798218,
-0.0458691343665123,
-0.13837823271751404,
-0.018630273640155792,
-0.22798998653888702,
0.17510560154914856,
-0.03248048573732376,
0.13137903809547424,
-0.27447956800460815,
0.01684025302529335,
-0.2570667266845703,
0.0032130838371813297,
0.04178816080093384,
-0.06004921346902847,
-0.0226522795855999,
-0.013265985064208508,
-0.08018817007541656,
0.004899587947875261,
0.06192673370242119,
0.1266920566558838,
-0.06128726154565811,
0.06128238886594772,
-0.09319206327199936,
0.141696035861969,
0.07166698575019836,
0.07868369668722153,
0.13037432730197906,
0.041205424815416336,
-0.07187089323997498,
-0.21872246265411377,
-0.0026476888451725245,
-0.06275863200426102,
-0.09502086788415909,
-0.0020165652967989445,
-0.11606067419052124,
0.17244569957256317,
-0.030802514404058456,
-0.09825427830219269,
-0.11208184063434601,
0.09148659557104111,
-0.032992321997880936,
-0.03437839448451996,
-0.03552987426519394,
-0.020977836102247238,
0.019381176680326462,
0.04704452306032181,
-0.1548958420753479,
-0.005131472367793322,
0.07039852440357208,
0.11502562463283539,
-0.1346137970685959,
-0.003783059772104025,
-0.07908964157104492,
0.03039063885807991,
0.07654735445976257,
-0.16510222852230072,
0.03158547356724739,
-0.1124754324555397,
-0.07531405985355377,
0.002912673633545637,
-0.015710093080997467,
-0.016202643513679504,
0.166526660323143,
-0.0020451415330171585,
0.0714716836810112,
-0.026345307007431984,
-0.05890209600329399,
-0.11243434250354767,
-0.08489254862070084,
0.05390460044145584,
0.03670717030763626,
0.03266148269176483,
-0.2193479984998703,
0.014805203303694725,
-0.12762966752052307,
0.1360815018415451,
-0.10566820204257965,
-0.04705966264009476,
-0.022842247039079666,
0.20562705397605896,
0.037286072969436646,
0.08762791007757187,
-0.22171171009540558,
0.039756543934345245,
-0.05404696613550186,
0.18480908870697021,
-0.1502426266670227,
-0.0799463614821434,
0.20813211798667908,
-0.07964949309825897,
-0.10115210711956024,
0.021235812455415726,
0.020391687750816345,
0.026287272572517395,
0.0766737088561058,
0.4564172327518463,
-0.09766800701618195,
-0.09146861732006073,
0.10178250074386597,
0.17055274546146393,
-0.12427149713039398,
-0.1827561855316162,
0.06446871906518936,
-0.16666454076766968,
-0.1973118633031845,
0.0018917324487119913,
0.09222044050693512,
0.038269978016614914,
-0.07875611633062363,
-0.020746968686580658,
0.06325206160545349,
-0.0007678253459744155,
0.09095914661884308,
0.03755716234445572,
0.09034032374620438,
-0.08716782182455063,
0.11115926504135132,
-0.05017651244997978,
0.004037132486701012,
0.1343354731798172,
0.027325427159667015,
-0.03223329409956932,
0.08694463223218918,
-0.0485352948307991,
0.05295134335756302,
-0.1662379503250122,
-0.15068690478801727,
0.03398871049284935,
0.06283251196146011,
0.03186952322721481,
0.1280253529548645,
0.08141885697841644,
-0.10732853412628174,
0.022690722718834877,
-0.004228927195072174,
0.058398615568876266,
0.03891623765230179,
0.006107209715992212,
0.008764320984482765,
0.0961301177740097,
-0.10607069730758667,
-0.13589619100093842,
-0.07336436957120895,
-0.014715781435370445,
0.14371353387832642,
-0.0302802175283432,
0.07690227776765823,
-0.004240254405885935,
0.00013200697139836848,
0.06930823624134064,
0.08137880265712738,
0.016412746161222458,
0.08971183747053146,
-0.05237193778157234,
-0.05160155147314072,
0.10863113403320312,
-0.13533565402030945,
0.17837053537368774,
0.14053137600421906,
-0.20532016456127167,
0.029453208670020103,
-0.06838275492191315,
0.03670361638069153,
-0.008162540383636951,
0.0975119024515152,
-0.08272241055965424,
-0.02106042578816414,
0.013134466484189034,
0.0052274600602686405,
-0.013007243163883686,
0.017682146281003952,
-0.07295988500118256,
-0.07787393033504486,
-0.10233919322490692,
0.08436838537454605,
0.11562882363796234,
-0.10282530635595322,
0.14214380085468292,
0.4384984076023102,
0.11495281755924225,
0.21582984924316406,
-0.09581480920314789,
-0.0412987545132637,
0.007486371789127588,
0.0001535322517156601,
-0.04476691037416458,
0.08031861484050751,
-0.15973517298698425,
-0.038901735097169876,
0.027348900213837624,
0.07128690183162689,
0.11475157737731934,
-0.14959022402763367,
-0.09639324247837067,
-0.00793045200407505,
0.0022841424215584993,
-0.1249532699584961,
0.023905446752905846,
-0.03974650055170059,
0.04015624523162842,
0.07232289016246796,
-0.021535737439990044,
0.13939237594604492,
-0.04166141897439957,
-0.0639561116695404,
0.07585346698760986,
-0.2017085999250412,
-0.23179671168327332,
-0.12309670448303223,
-0.14680525660514832,
0.04366797208786011,
0.05154111236333847,
0.01726446859538555,
-0.17635835707187653,
-0.015074856579303741,
0.07706750929355621,
0.07820965349674225,
-0.20886357128620148,
-0.022814949974417686,
-0.004290030337870121,
0.0895976573228836,
-0.10227091610431671,
-0.0017130117630586028,
-0.04419664293527603,
-0.10150232166051865,
0.0017003051470965147,
0.07279510796070099,
-0.137485533952713,
0.13807645440101624,
0.21589438617229462,
0.07225540280342102,
0.07359948754310608,
-0.019093448296189308,
0.09936179965734482,
-0.10856141895055771,
-0.16549113392829895,
0.08348225057125092,
-0.06234746053814888,
0.047262318432331085,
0.17534415423870087,
0.03307317942380905,
-0.13904969394207,
-0.015682822093367577,
-0.0402069091796875,
-0.15603256225585938,
-0.238995760679245,
-0.09178274869918823,
-0.1182505264878273,
0.16442428529262543,
0.0009358620154671371,
0.06651917099952698,
0.08258313685655594,
-0.022042419761419296,
0.16447891294956207,
-0.07379321753978729,
-0.07578866183757782,
-0.006978808436542749,
0.12375060468912125,
-0.056660156697034836,
-0.03080669604241848,
-0.10566964000463486,
-0.008295975625514984,
0.1151021271944046,
0.15304014086723328,
0.12214863300323486,
0.2957419455051422,
0.08268889784812927,
0.026645636186003685,
0.08958091586828232,
0.17622539401054382,
0.09495089203119278,
0.07838419824838638,
-0.045413073152303696,
-0.014814783819019794,
0.014317171648144722,
-0.04022889584302902,
0.010141594335436821,
0.14683100581169128,
-0.2679629921913147,
-0.006678564939647913,
-0.2710230350494385,
0.0965198427438736,
-0.10913380235433578,
0.11837165057659149,
-0.01015760749578476,
0.10194015502929688,
0.11082887649536133,
0.03233652561903,
-0.03858073800802231,
0.16613617539405823,
0.08450309932231903,
-0.11277695000171661,
0.001758623169735074,
0.03737903758883476,
0.09715615212917328,
-0.02818971499800682,
0.12721189856529236,
-0.11048974841833115,
-0.1464834064245224,
0.013753619976341724,
0.07152791321277618,
-0.15373679995536804,
0.3138748109340668,
0.012069208547472954,
-0.13481520116329193,
-0.01481647603213787,
-0.09957809001207352,
-0.006440147757530212,
0.1254177987575531,
0.09333524852991104,
0.07935678958892822,
-0.2185502052307129,
-0.13339371979236603,
0.05872276425361633,
-0.00575496768578887,
0.22408108413219452,
-0.034034017473459244,
-0.11356475204229355,
-0.027013886719942093,
0.04241163283586502,
-0.06043251231312752,
0.08524788916110992,
0.023536119610071182,
-0.08113526552915573,
-0.032957352697849274,
0.05323701351881027,
0.012368366122245789,
0.00524376705288887,
0.09360801428556442,
0.020107939839363098,
-0.0009265501867048442,
0.01785753294825554,
0.047885000705718994,
-0.0675911232829094,
-0.1984109878540039,
0.09357594698667526,
-0.05215044692158699,
0.0015536568826064467,
-0.08013670891523361,
-0.15122665464878082,
-0.08837161958217621,
-0.16009655594825745,
0.12540200352668762,
-0.034406669437885284,
0.12700119614601135,
-0.06619787961244583,
0.17341409623622894,
-0.07871770113706589,
0.04481020197272301,
-0.047349292784929276,
0.050332702696323395,
-0.007268077693879604,
-0.07756082713603973,
0.16585899889469147,
-0.15564003586769104,
0.01809087023139,
0.19572502374649048,
-0.018915493041276932,
0.07177707552909851,
0.021322092041373253,
-0.0636206790804863,
0.23147478699684143,
0.3014698624610901,
0.008138049393892288,
0.1665448248386383,
0.3018903136253357,
-0.07466315478086472,
-0.2642788887023926,
-0.05505012720823288,
-0.2841376066207886,
-0.05371501296758652,
0.10716094076633453,
-0.22523896396160126,
0.06986407935619354,
0.14383509755134583,
-0.06471995264291763,
0.30228954553604126,
-0.21825523674488068,
0.012589273042976856,
0.15434536337852478,
-0.08868814259767532,
0.5515313148498535,
-0.1133413165807724,
-0.17677772045135498,
-0.008122089318931103,
-0.08741296827793121,
0.10602109134197235,
-0.0340677872300148,
0.06877441704273224,
0.013465235009789467,
0.04797380417585373,
0.048932258039712906,
-0.03111894056200981,
0.22701001167297363,
0.008710170164704323,
0.09015397727489471,
-0.07378865778446198,
-0.18624304234981537,
0.11639340221881866,
-0.04359482601284981,
-0.08891059458255768,
0.0849778801202774,
-0.05942516401410103,
-0.11078983545303345,
0.04663389176130295,
-0.07950539886951447,
-0.024862350896000862,
0.08423490077257156,
-0.04678233340382576,
-0.042606171220541,
-0.008054176345467567,
-0.1618063747882843,
-0.0002289071271661669,
0.31360217928886414,
-0.07096036523580551,
0.16695955395698547,
0.03677211329340935,
0.00038613268407061696,
-0.11027684062719345,
0.030288029462099075,
-0.05203165486454964,
-0.021576624363660812,
0.09578979015350342,
-0.11096979677677155,
0.03204701095819473,
0.14160704612731934,
-0.04864364117383957,
0.05846960097551346,
0.09256096184253693,
-0.0849417969584465,
0.007583672646433115,
0.17753590643405914,
-0.17537221312522888,
-0.1273445188999176,
-0.006135711446404457,
-0.09862716495990753,
0.14055661857128143,
0.04394126310944557,
0.05191568285226822,
0.16669964790344238,
0.03967129811644554,
-0.029474308714270592,
-0.02817419543862343,
-0.1153380498290062,
-0.0201893113553524,
0.040153320878744125,
0.00045633706031367183,
-0.08791285753250122,
0.2262638509273529,
0.06409153342247009,
-0.1328488290309906,
-0.051157206296920776,
0.2161225974559784,
-0.06805316358804703,
-0.04911920800805092,
-0.223562553524971,
0.10752306133508682,
-0.07112517952919006,
-0.0965060144662857,
0.05453834682703018,
-0.02270081453025341,
0.005106312222778797,
0.181985542178154,
0.03941008821129799,
0.11070270836353302,
0.03738937899470329,
-0.02448922023177147,
0.15798696875572205,
-0.142850860953331,
-0.14191335439682007,
-0.025354057550430298,
-0.08757315576076508,
-0.13844476640224457,
-0.026804137974977493,
0.1617041826248169,
-0.09177309274673462,
-0.14772607386112213,
-0.2621181011199951,
0.10968475043773651,
-0.16432365775108337,
-0.10192688554525375,
-0.03469514101743698,
-0.08968492597341537,
0.0696166530251503,
0.030301768332719803,
-0.03093348816037178,
-0.06706760823726654,
-0.18593791127204895,
0.0816768929362297,
0.06349513679742813,
0.045533183962106705,
-0.017847947776317596,
0.0067379772663116455,
0.1720137596130371,
0.025955144315958023,
0.10040043294429779,
0.16762186586856842,
0.011397695168852806,
0.2246655523777008,
-0.1671202927827835,
-0.11496317386627197,
0.1336962729692459,
-0.026543032377958298,
0.06762003898620605,
0.16792191565036774,
-0.0772583931684494,
0.015526676550507545,
-0.028136352077126503,
0.07066910713911057,
-0.11003983020782471,
-0.105624258518219,
0.007937257178127766,
0.02567129209637642,
-0.2755882740020752,
-0.005599735304713249,
-0.19717298448085785,
0.14788752794265747,
0.02579621411859989,
0.03297143429517746,
0.10257530212402344,
0.10404334217309952,
0.08312062919139862,
-0.0017710148822516203,
0.03226327523589134,
-0.1176818460226059,
0.02753005363047123,
-0.059239376336336136,
-0.020663779228925705,
0.017624232918024063,
0.36952024698257446,
-0.03603357449173927,
-0.046802736818790436,
0.003710439894348383,
0.1307835876941681,
-0.02139742486178875,
0.017395347356796265,
0.13209912180900574,
0.12607666850090027,
-0.08595693111419678,
-0.1504845917224884,
0.04888554662466049,
-0.04565655067563057,
-0.02836887165904045,
0.1464131623506546,
0.05905961990356445,
0.1050296202301979,
0.0908031314611435,
-0.014463032595813274,
-0.00318976235575974,
0.012856799177825451,
-0.15486004948616028,
0.06223496049642563,
-0.010558074340224266,
0.012565906159579754,
0.017934376373887062,
0.15238402783870697,
-0.005540105979889631,
0.07739730179309845,
-0.09889880567789078,
0.004208535887300968,
-0.13498884439468384,
-0.07913459837436676,
0.03617347031831741,
-0.13393273949623108,
0.04141177982091904,
-0.01871878281235695,
0.029611799865961075,
0.30386561155319214,
0.02558239921927452,
-0.020639164373278618,
0.12512871623039246,
-0.1214587539434433,
-0.12050267308950424,
-0.001594188273884356,
-0.029960084706544876,
0.0791488066315651,
-0.02633434161543846,
-0.0997740775346756,
-0.1001306027173996,
-0.15166029334068298,
-0.09759195148944855,
0.05182836204767227,
-0.04993441700935364,
-0.059362251311540604,
-0.17634081840515137,
-0.05707859992980957,
-0.05147340148687363,
0.14025864005088806,
-0.12263951450586319,
0.15159130096435547,
-0.014490418136119843,
0.004084470681846142,
0.04405883327126503,
0.1950942426919937,
-0.03644494712352753,
0.08714226633310318,
0.0154351145029068,
0.1522706001996994,
-0.05119588226079941,
0.14720745384693146,
-0.10931728035211563,
-0.04014137014746666,
-0.06710435450077057,
0.21513493359088898,
0.25630924105644226,
-0.06136954948306084,
-0.008937356993556023,
-0.012760217301547527,
0.058654606342315674,
0.1073930487036705,
0.16049085557460785,
0.002326392102986574,
0.2802925705909729,
-0.03133585304021835,
0.04815128445625305,
0.02901598811149597,
0.013607407920062542,
-0.06336209923028946,
0.03397751972079277,
0.07539387792348862,
-0.035039983689785004,
-0.1412304788827896,
0.15837742388248444,
-0.21980468928813934,
0.18157227337360382,
0.11640069633722305,
-0.19996967911720276,
-0.013728445395827293,
-0.04882071167230606,
0.1689416468143463,
-0.0856364443898201,
0.1637246012687683,
-0.0903693437576294,
-0.2108195722103119,
-0.2056000679731369,
0.03867346793413162,
-0.34623071551322937,
-0.254462867975235,
0.10422009229660034,
0.1488201916217804,
0.04015883058309555,
-0.018507536500692368,
-0.019967829808592796,
-0.018367022275924683,
0.04877542704343796,
-0.0067357709631323814,
0.06014643982052803,
0.031397558748722076,
-0.02988368645310402,
-0.24127542972564697,
-0.029804671183228493,
0.023964406922459602,
-0.07093082368373871,
0.07464958727359772,
-0.06874357163906097,
-0.022495782002806664,
0.08059766888618469,
-0.03066304884850979,
0.03298592567443848,
-0.035373736172914505,
-0.16326889395713806,
0.027529051527380943,
0.03900543600320816,
0.036012712866067886,
0.00634160777553916,
0.0008072225609794259,
-0.03455270454287529,
0.0644603744149208,
-0.16716794669628143,
-0.16015739738941193,
0.14140215516090393,
-0.06745140254497528,
0.2779497504234314,
-0.05812826007604599,
-0.0809100940823555,
0.04766704887151718,
-0.03426874056458473,
0.1807648241519928,
-0.07756473124027252,
0.047254521399736404,
0.12766779959201813,
0.011127962730824947,
0.03121316432952881,
-0.3092964291572571,
0.11082969605922699,
-0.000795336440205574,
-0.006093299947679043,
-0.07581598311662674
] |
null | null | null | https://civitai.com/models/196133/utahime-iori-oror-jujutsu-kaisen | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/Utahime | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:57:47+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | diffusers |
# Crystalwave
CrystalClearRemix with Synthwave's style. Use snthwve in the prompt for a stronger effect.
Comparison:

(Click for larger)
Samples and prompts (scroll for more example prompts and their outputs)

sitting elementary girl, Pretty CUTE, gorgeous hair, DETAILED CHIBI EYES, Magazine ad, iconic, 1943, Cartoon, sharp focus, 4k. chibi, character, comic art. Concept art on canvas by Clay Mann and ilya kuvshinov

(Click for larger)
Top left: snthwve wireframe neon lines, (dark colors_1.2) with (lines polygonal mountain_1.2) in background, (saturn with ring behind the mountain), (background is (white) starry night)!!, babel in the, tower, (((, barren, realistic minimalistic, intricate, highly detailed, sharp focus, 3D, digital painting, illustration, vaporwave,
Top right: (neon circle floating_1.2) (with palm tree inside it_1.1), above ocean, neon lights, snthwve style wallpaper featured on artstation, artwork by Greg Rutkowski and Beksinski, Esao Andrews, guisser, character design, very coherent symmetrical artwork, by anton fadeev dzimirsky and albrecht anker
Bottom left: (retro volkswagen van_1.1) (attached to hot air balloon_1.2), (dark colors_1.2), snthwve style wallpaper. graffiti on black canvas, digital art, concept art, trending on artstation, HD, 8K, highly detailed, good lighting,lighthouse, epic, masterpiece, surreal, detailed, sharp, 1980s
Bottom right: table with cassette tape with sunglasses on it, table with cassette tape with sunglasses on it, dark colors, snthwve style wallpaper. Polaroid, photography, 4k, photoreal, highly detailed, cinematic lightning

(Click for larger)
Top left: (tank) driving down the street to the sunset, outrun, snthwve style wallpaper, 8k, highly detailed, cinematic lighting, conceptmento, very realistic, clear, super detailed, colorful accents, detailed and intricate, trending on artstation, in the style in the style of artstation, highly realistic, very detailed, 4k, 8k, octane
Top right: pretty cute girl sitting on motorcycle, (facing the camera_1.2), (looking at camera_1.1), neon lines, snthwve style, HD wallpaper, detailed eyes, very beautiful, elegant, cinematic, artstation, octane render, art by art by artgerm and greg rutkowski and magali villeneuve, portrait, elegant, d ho
Bottom left: island with palm trees, island with palm trees, wireframe looking neon lines, snthwve style wallpaper, dorovski, sharp focus, by wlop and artgerm and alphonse mucha, illustration, trending on artstation, very coherent
Bottom right: Tiny cute isometric tank, Tiny cute isometric tank, snthwve soft smooth lighting, with soft colors, 100mm lens, 3d blender render, trending on polycount. render in octane, vray rendering, v-ray, C4D
# Recipe:
- SuperMerger Weight sum Train Difference Use MBW 0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1
Model A:
Synthwave
Model B:
Crystal Clear Remix
Output Model:
Crystalwave | {"license": "creativeml-openrail-m", "library_name": "diffusers", "tags": ["General", "Style", "Synthwave", "Art", "Render", "Lineart", "PublicPrompts", "WarAnakin", "RunDiffusion", "stable-diffusion", "stable-diffusion-diffusers", "diffusers", "text-to-image"], "pipeline_tag": "text-to-image"} | text-to-image | Yntec/Crystalwave | [
"diffusers",
"safetensors",
"General",
"Style",
"Synthwave",
"Art",
"Render",
"Lineart",
"PublicPrompts",
"WarAnakin",
"RunDiffusion",
"stable-diffusion",
"stable-diffusion-diffusers",
"text-to-image",
"license:creativeml-openrail-m",
"endpoints_compatible",
"has_space",
"diffusers:StableDiffusionPipeline",
"region:us"
] | 2023-11-11T06:57:51+00:00 | [] | [] | TAGS
#diffusers #safetensors #General #Style #Synthwave #Art #Render #Lineart #PublicPrompts #WarAnakin #RunDiffusion #stable-diffusion #stable-diffusion-diffusers #text-to-image #license-creativeml-openrail-m #endpoints_compatible #has_space #diffusers-StableDiffusionPipeline #region-us
|
# Crystalwave
CrystalClearRemix with Synthwave's style. Use snthwve in the prompt for a stronger effect.
Comparison:
!Comparison
(Click for larger)
Samples and prompts (scroll for more example prompts and their outputs)
!Samples
sitting elementary girl, Pretty CUTE, gorgeous hair, DETAILED CHIBI EYES, Magazine ad, iconic, 1943, Cartoon, sharp focus, 4k. chibi, character, comic art. Concept art on canvas by Clay Mann and ilya kuvshinov
!More samples
(Click for larger)
Top left: snthwve wireframe neon lines, (dark colors_1.2) with (lines polygonal mountain_1.2) in background, (saturn with ring behind the mountain), (background is (white) starry night)!!, babel in the, tower, (((, barren, realistic minimalistic, intricate, highly detailed, sharp focus, 3D, digital painting, illustration, vaporwave,
Top right: (neon circle floating_1.2) (with palm tree inside it_1.1), above ocean, neon lights, snthwve style wallpaper featured on artstation, artwork by Greg Rutkowski and Beksinski, Esao Andrews, guisser, character design, very coherent symmetrical artwork, by anton fadeev dzimirsky and albrecht anker
Bottom left: (retro volkswagen van_1.1) (attached to hot air balloon_1.2), (dark colors_1.2), snthwve style wallpaper. graffiti on black canvas, digital art, concept art, trending on artstation, HD, 8K, highly detailed, good lighting,lighthouse, epic, masterpiece, surreal, detailed, sharp, 1980s
Bottom right: table with cassette tape with sunglasses on it, table with cassette tape with sunglasses on it, dark colors, snthwve style wallpaper. Polaroid, photography, 4k, photoreal, highly detailed, cinematic lightning
!Even more samples
(Click for larger)
Top left: (tank) driving down the street to the sunset, outrun, snthwve style wallpaper, 8k, highly detailed, cinematic lighting, conceptmento, very realistic, clear, super detailed, colorful accents, detailed and intricate, trending on artstation, in the style in the style of artstation, highly realistic, very detailed, 4k, 8k, octane
Top right: pretty cute girl sitting on motorcycle, (facing the camera_1.2), (looking at camera_1.1), neon lines, snthwve style, HD wallpaper, detailed eyes, very beautiful, elegant, cinematic, artstation, octane render, art by art by artgerm and greg rutkowski and magali villeneuve, portrait, elegant, d ho
Bottom left: island with palm trees, island with palm trees, wireframe looking neon lines, snthwve style wallpaper, dorovski, sharp focus, by wlop and artgerm and alphonse mucha, illustration, trending on artstation, very coherent
Bottom right: Tiny cute isometric tank, Tiny cute isometric tank, snthwve soft smooth lighting, with soft colors, 100mm lens, 3d blender render, trending on polycount. render in octane, vray rendering, v-ray, C4D
# Recipe:
- SuperMerger Weight sum Train Difference Use MBW 0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1
Model A:
Synthwave
Model B:
Crystal Clear Remix
Output Model:
Crystalwave | [
"# Crystalwave\n\nCrystalClearRemix with Synthwave's style. Use snthwve in the prompt for a stronger effect.\n\nComparison:\n\n!Comparison\n\n(Click for larger)\n\nSamples and prompts (scroll for more example prompts and their outputs)\n\n!Samples\n\nsitting elementary girl, Pretty CUTE, gorgeous hair, DETAILED CHIBI EYES, Magazine ad, iconic, 1943, Cartoon, sharp focus, 4k. chibi, character, comic art. Concept art on canvas by Clay Mann and ilya kuvshinov\n\n!More samples\n\n(Click for larger)\n\nTop left: snthwve wireframe neon lines, (dark colors_1.2) with (lines polygonal mountain_1.2) in background, (saturn with ring behind the mountain), (background is (white) starry night)!!, babel in the, tower, (((, barren, realistic minimalistic, intricate, highly detailed, sharp focus, 3D, digital painting, illustration, vaporwave, \n\nTop right: (neon circle floating_1.2) (with palm tree inside it_1.1), above ocean, neon lights, snthwve style wallpaper featured on artstation, artwork by Greg Rutkowski and Beksinski, Esao Andrews, guisser, character design, very coherent symmetrical artwork, by anton fadeev dzimirsky and albrecht anker\n\nBottom left: (retro volkswagen van_1.1) (attached to hot air balloon_1.2), (dark colors_1.2), snthwve style wallpaper. graffiti on black canvas, digital art, concept art, trending on artstation, HD, 8K, highly detailed, good lighting,lighthouse, epic, masterpiece, surreal, detailed, sharp, 1980s\n\nBottom right: table with cassette tape with sunglasses on it, table with cassette tape with sunglasses on it, dark colors, snthwve style wallpaper. Polaroid, photography, 4k, photoreal, highly detailed, cinematic lightning\n\n!Even more samples\n\n(Click for larger)\n\nTop left: (tank) driving down the street to the sunset, outrun, snthwve style wallpaper, 8k, highly detailed, cinematic lighting, conceptmento, very realistic, clear, super detailed, colorful accents, detailed and intricate, trending on artstation, in the style in the style of artstation, highly realistic, very detailed, 4k, 8k, octane\n\nTop right: pretty cute girl sitting on motorcycle, (facing the camera_1.2), (looking at camera_1.1), neon lines, snthwve style, HD wallpaper, detailed eyes, very beautiful, elegant, cinematic, artstation, octane render, art by art by artgerm and greg rutkowski and magali villeneuve, portrait, elegant, d ho\n\nBottom left: island with palm trees, island with palm trees, wireframe looking neon lines, snthwve style wallpaper, dorovski, sharp focus, by wlop and artgerm and alphonse mucha, illustration, trending on artstation, very coherent\n\nBottom right: Tiny cute isometric tank, Tiny cute isometric tank, snthwve soft smooth lighting, with soft colors, 100mm lens, 3d blender render, trending on polycount. render in octane, vray rendering, v-ray, C4D",
"# Recipe:\n\n- SuperMerger Weight sum Train Difference Use MBW 0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1\n\nModel A: \n\nSynthwave\n\nModel B:\n\nCrystal Clear Remix\n\nOutput Model:\n\nCrystalwave"
] | [
"TAGS\n#diffusers #safetensors #General #Style #Synthwave #Art #Render #Lineart #PublicPrompts #WarAnakin #RunDiffusion #stable-diffusion #stable-diffusion-diffusers #text-to-image #license-creativeml-openrail-m #endpoints_compatible #has_space #diffusers-StableDiffusionPipeline #region-us \n",
"# Crystalwave\n\nCrystalClearRemix with Synthwave's style. Use snthwve in the prompt for a stronger effect.\n\nComparison:\n\n!Comparison\n\n(Click for larger)\n\nSamples and prompts (scroll for more example prompts and their outputs)\n\n!Samples\n\nsitting elementary girl, Pretty CUTE, gorgeous hair, DETAILED CHIBI EYES, Magazine ad, iconic, 1943, Cartoon, sharp focus, 4k. chibi, character, comic art. Concept art on canvas by Clay Mann and ilya kuvshinov\n\n!More samples\n\n(Click for larger)\n\nTop left: snthwve wireframe neon lines, (dark colors_1.2) with (lines polygonal mountain_1.2) in background, (saturn with ring behind the mountain), (background is (white) starry night)!!, babel in the, tower, (((, barren, realistic minimalistic, intricate, highly detailed, sharp focus, 3D, digital painting, illustration, vaporwave, \n\nTop right: (neon circle floating_1.2) (with palm tree inside it_1.1), above ocean, neon lights, snthwve style wallpaper featured on artstation, artwork by Greg Rutkowski and Beksinski, Esao Andrews, guisser, character design, very coherent symmetrical artwork, by anton fadeev dzimirsky and albrecht anker\n\nBottom left: (retro volkswagen van_1.1) (attached to hot air balloon_1.2), (dark colors_1.2), snthwve style wallpaper. graffiti on black canvas, digital art, concept art, trending on artstation, HD, 8K, highly detailed, good lighting,lighthouse, epic, masterpiece, surreal, detailed, sharp, 1980s\n\nBottom right: table with cassette tape with sunglasses on it, table with cassette tape with sunglasses on it, dark colors, snthwve style wallpaper. Polaroid, photography, 4k, photoreal, highly detailed, cinematic lightning\n\n!Even more samples\n\n(Click for larger)\n\nTop left: (tank) driving down the street to the sunset, outrun, snthwve style wallpaper, 8k, highly detailed, cinematic lighting, conceptmento, very realistic, clear, super detailed, colorful accents, detailed and intricate, trending on artstation, in the style in the style of artstation, highly realistic, very detailed, 4k, 8k, octane\n\nTop right: pretty cute girl sitting on motorcycle, (facing the camera_1.2), (looking at camera_1.1), neon lines, snthwve style, HD wallpaper, detailed eyes, very beautiful, elegant, cinematic, artstation, octane render, art by art by artgerm and greg rutkowski and magali villeneuve, portrait, elegant, d ho\n\nBottom left: island with palm trees, island with palm trees, wireframe looking neon lines, snthwve style wallpaper, dorovski, sharp focus, by wlop and artgerm and alphonse mucha, illustration, trending on artstation, very coherent\n\nBottom right: Tiny cute isometric tank, Tiny cute isometric tank, snthwve soft smooth lighting, with soft colors, 100mm lens, 3d blender render, trending on polycount. render in octane, vray rendering, v-ray, C4D",
"# Recipe:\n\n- SuperMerger Weight sum Train Difference Use MBW 0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1\n\nModel A: \n\nSynthwave\n\nModel B:\n\nCrystal Clear Remix\n\nOutput Model:\n\nCrystalwave"
] | [
108,
784,
75
] | [
"passage: TAGS\n#diffusers #safetensors #General #Style #Synthwave #Art #Render #Lineart #PublicPrompts #WarAnakin #RunDiffusion #stable-diffusion #stable-diffusion-diffusers #text-to-image #license-creativeml-openrail-m #endpoints_compatible #has_space #diffusers-StableDiffusionPipeline #region-us \n"
] | [
-0.06706654280424118,
0.06054191663861275,
-0.006982360500842333,
-0.015353084541857243,
0.033930324018001556,
-0.040299005806446075,
0.181858628988266,
0.023511111736297607,
0.014347764663398266,
0.05990508943796158,
0.12621085345745087,
0.046927742660045624,
-0.0431235134601593,
0.09498841315507889,
-0.08226343244314194,
-0.20358750224113464,
0.010016855783760548,
0.012731383554637432,
-0.016751429066061974,
0.07912274450063705,
0.09153322130441666,
-0.07030351459980011,
0.0849197581410408,
-0.008986338973045349,
-0.05320172384381294,
-0.004939294885843992,
0.0037624691613018513,
-0.1011548861861229,
0.09911375492811203,
0.022206366062164307,
0.045370012521743774,
0.13128463923931122,
0.0010760582517832518,
-0.08205439895391464,
0.05252615734934807,
0.015584202483296394,
-0.062240440398454666,
0.035106852650642395,
0.09297846257686615,
-0.06434230506420135,
0.11400455981492996,
-0.02002268098294735,
-0.005628897808492184,
0.049860674887895584,
-0.12025468796491623,
-0.08721937984228134,
0.0009011014481075108,
0.06294775009155273,
0.0003326652222312987,
0.02341560833156109,
0.004038659390062094,
0.04782945290207863,
-0.035674355924129486,
0.07174718379974365,
0.19255180656909943,
-0.29232338070869446,
-0.048583488911390305,
0.14300408959388733,
0.17543230950832367,
0.09934256970882416,
-0.13261711597442627,
0.1002812385559082,
0.008605019189417362,
-0.01520723570138216,
0.07644166052341461,
-0.06592989712953568,
0.08545912057161331,
-0.020869793370366096,
-0.08280523866415024,
0.0784248486161232,
0.24250800907611847,
0.005587251391261816,
0.0234487596899271,
-0.14545127749443054,
-0.07657203823328018,
0.08139616996049881,
-0.03527450934052467,
0.005394316278398037,
-0.026510922238230705,
0.040699463337659836,
-0.03078649565577507,
-0.0447530634701252,
-0.11335249245166779,
0.015811415389180183,
-0.0628243014216423,
0.13278281688690186,
-0.055446602404117584,
0.03516731411218643,
-0.07367842644453049,
0.09433680027723312,
-0.11174792796373367,
-0.15672090649604797,
0.04457901045680046,
-0.08706182986497879,
0.06581447273492813,
0.05101913958787918,
-0.0065728602930903435,
-0.08420658111572266,
0.12664420902729034,
0.09818703681230545,
-0.035153575241565704,
0.03635963797569275,
0.020298155024647713,
0.13403740525245667,
0.040917519479990005,
-0.06153165176510811,
-0.07736881077289581,
-0.033791683614254,
-0.01898292638361454,
-0.009990684688091278,
0.02216099202632904,
-0.030689837411046028,
-0.05658456310629845,
0.006634811870753765,
-0.020448578521609306,
0.0033677699975669384,
0.03946482390165329,
0.03390773758292198,
-0.08425794541835785,
0.036757443100214005,
0.16079401969909668,
-0.025844071060419083,
0.0027373996563255787,
0.006786487065255642,
0.036009322851896286,
0.13169832527637482,
0.0862252339720726,
0.010056248866021633,
0.07188592106103897,
0.15782824158668518,
-0.08698832243680954,
-0.0710698813199997,
-0.003670484060421586,
-0.054190002381801605,
0.02205364592373371,
-0.1657949835062027,
0.028155794367194176,
-0.1284058392047882,
-0.1288807988166809,
0.019649356603622437,
0.032474368810653687,
-0.020811695605516434,
0.00027946248883381486,
0.0393061600625515,
-0.077960304915905,
0.06626467406749725,
0.0034149866551160812,
-0.04786234721541405,
-0.0731138214468956,
0.08723700791597366,
-0.06892793625593185,
0.09944424778223038,
-0.09048090875148773,
-0.0014728193636983633,
-0.031057003885507584,
0.0599953792989254,
-0.09566406160593033,
-0.026763051748275757,
-0.09427517652511597,
0.09780842065811157,
0.01689518801867962,
-0.05370203033089638,
-0.10288490355014801,
0.012245302088558674,
0.0006552967824973166,
0.15901879966259003,
-0.11360840499401093,
-0.053959764540195465,
0.17635895311832428,
-0.12309740483760834,
-0.040839213877916336,
0.04836764186620712,
0.025556568056344986,
0.03666747733950615,
0.014862953685224056,
0.09612272679805756,
0.0754367858171463,
-0.2719034254550934,
0.04640442132949829,
0.0595598928630352,
-0.10367091000080109,
0.0025797230191528797,
0.039959438145160675,
0.0037608598358929157,
0.08392422646284103,
0.035043951123952866,
-0.015723973512649536,
0.06250012665987015,
-0.08704822510480881,
-0.010845109820365906,
-0.036187026649713516,
-0.052302341908216476,
0.1112978458404541,
0.030055657029151917,
0.04304225370287895,
-0.08743156492710114,
-0.07802140712738037,
0.028849216178059578,
0.00013594394840765744,
0.06001489236950874,
-0.00975448451936245,
-0.09026258438825607,
0.10518904030323029,
0.06671933829784393,
-0.02216389589011669,
-0.12321449816226959,
-0.035232480615377426,
-0.013850770890712738,
0.19097498059272766,
-0.0037546816747635603,
0.1929766982793808,
0.12183894962072372,
0.04360084980726242,
-0.05687170475721359,
-0.02766360715031624,
0.06180687993764877,
0.025800388306379318,
0.012000496499240398,
-0.19822706282138824,
0.09849955141544342,
-0.10359181463718414,
-0.028272751718759537,
-0.15554523468017578,
0.03992954641580582,
0.16022662818431854,
0.1192440614104271,
0.09593132883310318,
-0.015304879285395145,
0.006516527850180864,
-0.02571934089064598,
-0.03406699001789093,
-0.0024183853529393673,
0.06841283291578293,
0.020462432876229286,
-0.0037336114328354597,
0.12266429513692856,
-0.14233918488025665,
0.3836384117603302,
0.12468226253986359,
-0.07365943491458893,
-0.07031859457492828,
-0.03870932385325432,
-0.044009678065776825,
0.019931824877858162,
0.017840450629591942,
-0.06880243867635727,
-0.04683327674865723,
0.003272067056968808,
0.05854254215955734,
-0.04097982496023178,
-0.0509304441511631,
0.046422604471445084,
-0.07462998479604721,
-0.07273007929325104,
0.05430062487721443,
0.025380292907357216,
-0.08308909833431244,
0.09742970019578934,
0.26239529252052307,
-0.01741793192923069,
0.2089170217514038,
-0.026131857186555862,
0.011281783692538738,
-0.03056810423731804,
0.070948027074337,
0.010368386283516884,
0.1651042252779007,
-0.1177508607506752,
-0.006426139734685421,
0.02409524843096733,
-0.033180464059114456,
0.012067298404872417,
-0.11324020475149155,
-0.052979011088609695,
-0.0027292235754430294,
0.038084547966718674,
0.14348338544368744,
0.121378593146801,
-0.0510467030107975,
0.12826964259147644,
-0.05749848112463951,
-0.10016701370477676,
-0.004459550138562918,
-0.025778939947485924,
-0.020395884290337563,
0.09624199569225311,
-0.10301796346902847,
-0.07133390009403229,
-0.048444949090480804,
-0.08060119301080704,
-0.02768629416823387,
-0.016260450705885887,
0.06404335051774979,
-0.055027592927217484,
-0.0488717220723629,
-0.04323815181851387,
-0.014708326198160648,
-0.018974052742123604,
-0.010744854807853699,
0.028087642043828964,
0.02244853600859642,
-0.053764306008815765,
-0.09849482774734497,
-0.0246282946318388,
-0.008398047648370266,
0.012140191160142422,
0.17397011816501617,
0.04606989026069641,
0.08446091413497925,
0.09998499602079391,
0.023941323161125183,
-0.003948964644223452,
-0.017857177183032036,
0.1716550588607788,
-0.007300273980945349,
0.13683749735355377,
0.12088441848754883,
0.006599455140531063,
0.11143733561038971,
0.09888283163309097,
0.09185008704662323,
-0.07279201596975327,
0.040970299392938614,
-0.012667926028370857,
-0.06659296900033951,
-0.06173773482441902,
-0.09854497015476227,
-0.10870937258005142,
0.036801476031541824,
-0.009509754367172718,
0.06659651547670364,
0.038624245673418045,
0.08434382826089859,
0.04884469509124756,
-0.10659237205982208,
0.0908312126994133,
0.023170392960309982,
0.11988500505685806,
-0.07666648924350739,
0.08958078920841217,
-0.04557454586029053,
-0.0450286902487278,
0.10975304991006851,
-0.04058238863945007,
0.1015080064535141,
0.027042057365179062,
0.02580631710588932,
0.12213069945573807,
0.16091743111610413,
0.1455407440662384,
0.09565550088882446,
-0.03329818323254585,
-0.059941817075014114,
0.013570326380431652,
-0.09701365977525711,
0.11024904251098633,
0.015161022543907166,
-0.026095956563949585,
-0.08998008817434311,
0.05155656859278679,
-0.08404664695262909,
0.028750667348504066,
0.06307334452867508,
0.02926250360906124,
-0.15560288727283478,
0.03628150373697281,
0.07669783383607864,
0.07052528858184814,
-0.08160128444433212,
0.042068567126989365,
0.19178961217403412,
-0.04503484442830086,
0.09376300126314163,
-0.047504015266895294,
0.0790560320019722,
0.09071482717990875,
0.013633663766086102,
-0.029289623722434044,
-0.02581101469695568,
-0.03250010684132576,
-0.0025741190183907747,
-0.08866798132658005,
0.17663133144378662,
-0.012391263619065285,
0.000036909776099491864,
-0.017871258780360222,
-0.02397358976304531,
0.04434853419661522,
0.155675008893013,
0.13088376820087433,
0.007051386870443821,
0.031061815097928047,
-0.00014985485177021474,
-0.03932029753923416,
-0.026325786486268044,
0.13968516886234283,
-0.03433849290013313,
-0.018963413313031197,
0.04804007336497307,
-0.03008308820426464,
0.04934265837073326,
0.04168245568871498,
-0.21099106967449188,
-0.1493336409330368,
0.051590386778116226,
0.07516312599182129,
0.07024015486240387,
-0.09405168145895004,
-0.056020937860012054,
-0.15454456210136414,
0.17454907298088074,
-0.13617804646492004,
-0.08267407864332199,
-0.11732607334852219,
-0.13227851688861847,
0.022022519260644913,
-0.00816488079726696,
0.059283297508955,
-0.06299448758363724,
0.024177001789212227,
-0.11352068930864334,
-0.10194376856088638,
0.11245560646057129,
-0.08985048532485962,
-0.13622379302978516,
-0.10533096641302109,
0.12137335538864136,
0.04191914200782776,
-0.014766151085495949,
-0.02914240024983883,
0.044117383658885956,
-0.030833736062049866,
-0.11850132793188095,
0.07836209237575531,
-0.01172399427741766,
-0.02014242298901081,
-0.06517680734395981,
-0.08106039464473724,
-0.15128867328166962,
0.07894983142614365,
-0.034381505101919174,
0.10061491280794144,
0.30362626910209656,
-0.07800203561782837,
0.10016341507434845,
0.17767873406410217,
-0.012580500915646553,
-0.24421200156211853,
-0.04576408490538597,
-0.08816222101449966,
-0.023388391360640526,
0.07783212512731552,
-0.11123673617839813,
0.06529233604669571,
0.012340924702584743,
-0.0661761462688446,
0.1989818960428238,
-0.2950526773929596,
-0.11386488378047943,
0.10738687962293625,
0.05729970708489418,
0.30038776993751526,
-0.22579964995384216,
-0.06571455299854279,
0.03388082608580589,
-0.18496152758598328,
0.10588504374027252,
-0.012397305108606815,
0.02948378399014473,
-0.026090869680047035,
-0.04111343249678612,
0.009350280277431011,
-0.06755713373422623,
0.14403894543647766,
-0.11095242202281952,
0.07053931802511215,
-0.1378098577260971,
0.02614009380340576,
0.1989661306142807,
0.011045579798519611,
-0.033750053495168686,
-0.13147112727165222,
0.03251608833670616,
-0.13695727288722992,
0.002109348075464368,
-0.06440270692110062,
0.0886075422167778,
-0.02559971623122692,
-0.09141778945922852,
-0.03193770721554756,
0.017823833972215652,
-0.08875114470720291,
-0.029895002022385597,
0.06270579248666763,
-0.035538312047719955,
0.13124941289424896,
0.20168264210224152,
0.05074015632271767,
-0.07675597816705704,
-0.09037534892559052,
-0.048365116119384766,
-0.04670175537467003,
0.06903348118066788,
-0.01397218368947506,
-0.05114149674773216,
0.10522685199975967,
0.0700407400727272,
0.05282573029398918,
0.046977393329143524,
-0.05172517150640488,
0.05241509526968002,
0.15172800421714783,
-0.2168559581041336,
-0.060963697731494904,
-0.028387928381562233,
0.2032465785741806,
0.07305444777011871,
0.038339756429195404,
0.11590763181447983,
-0.003939609508961439,
0.04344227537512779,
-0.009498817846179008,
0.03678746148943901,
-0.05370951071381569,
0.04627165570855141,
0.04694129154086113,
0.03643447160720825,
-0.041005637496709824,
0.039735097438097,
-0.016971953213214874,
-0.15574945509433746,
-0.08586768805980682,
0.10219844430685043,
-0.10194864124059677,
-0.0571146197617054,
0.0390503965318203,
0.09433503448963165,
-0.03940754383802414,
-0.0032353850547224283,
0.014904477633535862,
-0.18248367309570312,
0.022809477522969246,
0.22658732533454895,
0.030594944953918457,
0.013948892243206501,
0.025676637887954712,
-0.026810985058546066,
0.053059399127960205,
0.03720707818865776,
0.055704839527606964,
0.024987930431962013,
-0.11079280823469162,
-0.11139857769012451,
-0.006853228900581598,
-0.002928879577666521,
-0.08972027152776718,
-0.03268824517726898,
-0.14912159740924835,
-0.015098502859473228,
-0.08045786619186401,
-0.020376598462462425,
-0.08945286273956299,
-0.061773207038640976,
-0.05271818861365318,
-0.06583239883184433,
-0.015563000924885273,
-0.055312443524599075,
-0.05587149038910866,
0.029377451166510582,
0.010455279611051083,
0.06291129440069199,
-0.1185208410024643,
-0.04897548630833626,
0.0766991525888443,
-0.06564433127641678,
0.10173898190259933,
0.010626348666846752,
-0.10503510385751724,
-0.022494802251458168,
-0.19228890538215637,
-0.05567101016640663,
0.09685861319303513,
-0.018516918644309044,
-0.034074317663908005,
0.06403928250074387,
0.00041286644409410655,
-0.014520792290568352,
0.03690459206700325,
0.019933482632040977,
0.030851589515805244,
-0.11133110523223877,
0.10901173204183578,
-0.006042277906090021,
-0.045950163155794144,
-0.062253501266241074,
-0.050131846219301224,
0.13271450996398926,
-0.020606230944395065,
0.119172103703022,
-0.07935738563537598,
0.03546831011772156,
-0.07592765986919403,
0.02004729025065899,
0.06614066660404205,
-0.10594876110553741,
0.05966835096478462,
0.028253670781850815,
0.0011286857770755887,
-0.009868116118013859,
0.17110610008239746,
-0.08815591782331467,
-0.2678418457508087,
0.062228601425886154,
0.03444557264447212,
-0.05681809410452843,
0.027918582782149315,
0.19327767193317413,
0.021336713805794716,
-0.0020522575359791517,
-0.17377841472625732,
0.04234207421541214,
0.016933780163526535,
-0.1582217514514923,
0.09571488201618195,
0.18002411723136902,
-0.07146941125392914,
-0.0028800051659345627,
0.014870413579046726,
-0.04277322068810463,
-0.016067570075392723,
0.07144007831811905,
-0.06068229302763939,
0.10200361907482147,
-0.09260684251785278,
-0.006556914187967777,
0.21739359200000763,
-0.024510929360985756,
0.020632179453969002,
0.01453047338873148,
-0.0009711345774121583,
-0.04676448926329613,
-0.1753872185945511,
-0.034945812076330185,
-0.0923740416765213,
0.012702234089374542,
-0.03829216957092285,
0.05530006065964699,
-0.04539288207888603,
0.07170833647251129,
0.010109779424965382,
0.05834955722093582,
-0.08246670663356781,
-0.04952672868967056,
0.10388394445180893,
-0.0021548126824200153,
-0.033916886895895004,
-0.0595155693590641,
0.03601616621017456,
-0.04397124424576759,
0.014941230416297913,
-0.07065429538488388,
0.06959269940853119,
-0.06704462319612503,
0.00031498746830038726,
-0.03539847582578659,
-0.05271828547120094,
-0.019377006217837334,
0.007895097136497498,
-0.04877999797463417,
0.10281060636043549,
-0.006590243894606829,
0.032038237899541855,
0.009302891790866852,
0.170018270611763,
-0.046782515943050385,
-0.11614049971103668,
0.001290789688937366,
-0.05351277440786362,
-0.0666196271777153,
0.08305645734071732,
-0.02481122314929962,
-0.03405099734663963,
0.017332563176751137,
0.248299703001976,
0.22399035096168518,
-0.08542861044406891,
0.08421944826841354,
-0.035397227853536606,
0.025223949924111366,
0.037094421684741974,
-0.002719858894124627,
0.026202425360679626,
0.3606964647769928,
-0.07632976025342941,
-0.015369756147265434,
-0.08347456902265549,
0.013521134853363037,
-0.12425554543733597,
-0.07658996433019638,
0.06378284841775894,
-0.029196729883551598,
-0.10037697851657867,
0.10495628416538239,
-0.1020037978887558,
-0.030438745394349098,
0.038223884999752045,
-0.1234385296702385,
0.006756509188562632,
-0.03559007868170738,
0.12580038607120514,
-0.01952550746500492,
0.037032656371593475,
-0.04742897301912308,
-0.05480896681547165,
-0.016425499692559242,
0.023634102195501328,
-0.09058383852243423,
0.04821969196200371,
-0.011571766808629036,
-0.06043921783566475,
0.024003835394978523,
-0.03987372666597366,
-0.011957591399550438,
0.08094483613967896,
-0.045248501002788544,
-0.09208083152770996,
0.093606136739254,
0.04308178275823593,
-0.13252492249011993,
-0.1243356242775917,
0.04770217463374138,
0.03498125821352005,
0.049106307327747345,
0.030916813760995865,
-0.057469796389341354,
0.05032765492796898,
0.06697268038988113,
-0.04461880400776863,
-0.07454831153154373,
0.11417333781719208,
-0.0347675085067749,
0.03546816483139992,
-0.03055143542587757,
-0.005738361272960901,
-0.058276910334825516,
0.002348968992009759,
0.04014052078127861,
0.016547560691833496,
-0.11593061685562134,
-0.03504875674843788,
-0.11410527676343918,
-0.016732504591345787,
0.00741360941901803,
0.03962576761841774,
-0.16588787734508514,
-0.07788778841495514,
-0.12877759337425232,
0.10091839730739594,
-0.11649914085865021,
0.03196268156170845,
0.17027811706066132,
0.004578819032758474,
0.013673314824700356,
-0.20985910296440125,
0.014766981825232506,
0.08318185061216354,
-0.08878806978464127,
-0.011748910881578922
] |
null | null | null | https://civitai.com/models/196160/furina-or-hydro-archon-genshin-impact-or-neural-da-vinci | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/FurinaGenshin_NDV-10 | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:58:04+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | null | https://civitai.com/models/194430/megumin-konosuba | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/Megumin | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:58:22+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | null | https://civitai.com/models/149149/takanashi-himari-demi-chan-wa-kataritai | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/himari-000009 | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:58:42+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | null | https://civitai.com/models/194497/kizuki-oshi-no-ko-arima-kana-lora | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/Kizuki_-_Oshi_no_Ko_-_Arima_Kana | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:59:18+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | null | https://civitai.com/models/194585/glory-or-genshin-impact | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/Glory | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:59:35+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | null | https://civitai.com/models/194644/marathon-alma-artery-gear-fusion | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/_AG_MERATHON_Alma_LORA-10 | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T06:59:53+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | null | https://civitai.com/models/137491/or-yao-winneror-or-snowbreak-containment-zone-or-or-yao | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/YAODZ-v2 | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T07:00:12+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | null | https://civitai.com/models/194765/ganyu-genshin-impact-lora | {"license": "creativeml-openrail-m"} | null | LarryAIDraw/ganyu-10 | [
"license:creativeml-openrail-m",
"region:us"
] | 2023-11-11T07:00:34+00:00 | [] | [] | TAGS
#license-creativeml-openrail-m #region-us
| URL | [] | [
"TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
18
] | [
"passage: TAGS\n#license-creativeml-openrail-m #region-us \n"
] | [
-0.07587551325559616,
0.1441737711429596,
-0.0062791393138468266,
0.012048184871673584,
-0.001431003911420703,
-0.022854028269648552,
0.2091037780046463,
-0.018623588606715202,
0.08854977041482925,
-0.11491455882787704,
0.14648450911045074,
0.18939465284347534,
-0.10384178161621094,
0.0838744044303894,
-0.061768148094415665,
-0.13200531899929047,
0.029243366792798042,
-0.07651498913764954,
-0.0865340456366539,
0.028722204267978668,
0.056829702109098434,
-0.01273291651159525,
-0.003666024887934327,
-0.0012952570104971528,
-0.11045186221599579,
0.07173702865839005,
-0.029841862618923187,
-0.037320639938116074,
0.060927797108888626,
-0.04866224527359009,
0.04899880662560463,
0.11812204867601395,
-0.033462416380643845,
-0.13358792662620544,
0.004443002864718437,
-0.11795501410961151,
-0.13281011581420898,
0.007506446447223425,
0.121794693171978,
-0.0353701114654541,
0.12644833326339722,
0.17882929742336273,
0.0022871040273457766,
0.07042364031076431,
-0.1692226231098175,
-0.17680460214614868,
-0.04340395703911781,
-0.018681490793824196,
-0.026622790843248367,
0.0532202385365963,
0.11296376585960388,
0.0959911122918129,
-0.1474708467721939,
0.059626504778862,
0.08025065064430237,
-0.29932230710983276,
0.03342466056346893,
0.23123668134212494,
0.11160528659820557,
0.03646189346909523,
-0.04899992793798447,
0.06103713810443878,
0.037279851734638214,
-0.055691562592983246,
-0.011489230208098888,
-0.07466674596071243,
0.033063821494579315,
0.1203068420290947,
-0.048032116144895554,
-0.025952165946364403,
0.3207513689994812,
-0.011608880013227463,
0.004257023800164461,
0.03850623592734337,
-0.046627260744571686,
0.03471478819847107,
0.053042974323034286,
0.07628075033426285,
0.05806995555758476,
0.1503586620092392,
0.06162842735648155,
-0.11057397723197937,
-0.12041215598583221,
0.018044639378786087,
-0.14939343929290771,
0.16419777274131775,
-0.05087574943900108,
0.0932750254869461,
-0.11752020567655563,
0.018267955631017685,
-0.0651155412197113,
-0.03550999239087105,
-0.010290741920471191,
-0.14436741173267365,
0.09543514996767044,
-0.00750720826908946,
-0.044816359877586365,
-0.06333030760288239,
0.06353012472391129,
0.134693443775177,
0.06326734274625778,
-0.01916888915002346,
0.03110724687576294,
0.18312698602676392,
0.02453736774623394,
-0.039170458912849426,
0.02620672434568405,
0.14288429915905,
0.03429737314581871,
-0.1762668490409851,
-0.0059744445607066154,
-0.0644608810544014,
-0.1936662793159485,
-0.02320769429206848,
-0.19997692108154297,
0.16352415084838867,
-0.030033577233552933,
-0.016221072524785995,
-0.03707468882203102,
0.022218478843569756,
0.04353277385234833,
0.007484832778573036,
0.018807580694556236,
-0.044244956225156784,
-0.08294660598039627,
-0.08514150232076645,
-0.020517800003290176,
0.05681263282895088,
0.07853931933641434,
0.18057872354984283,
-0.12033670395612717,
0.0023163571022450924,
-0.04746192321181297,
-0.002028648741543293,
0.10751507431268692,
-0.1799560934305191,
0.05942503362894058,
-0.10612065345048904,
-0.21264076232910156,
-0.0035186251625418663,
0.11188323050737381,
0.02211635187268257,
0.00010340322478441522,
0.023470120504498482,
-0.042402785271406174,
-0.03322858735918999,
-0.06714189052581787,
-0.09123854339122772,
-0.07618846744298935,
0.0644230917096138,
-0.15088342130184174,
-0.06908489763736725,
-0.27447474002838135,
0.021657612174749374,
-0.11370886117219925,
0.030269425362348557,
0.09551744163036346,
-0.08233252167701721,
-0.11906278878450394,
0.24992190301418304,
0.07235409319400787,
0.07105377316474915,
-0.037106942385435104,
-0.02335505001246929,
-0.040998950600624084,
0.07576625794172287,
-0.051450882107019424,
0.006896975915879011,
0.06892602890729904,
-0.05309505760669708,
-0.13028347492218018,
-0.018723927438259125,
-0.04109232872724533,
0.13036558032035828,
-0.005558064207434654,
0.30143606662750244,
0.04775548353791237,
-0.18540549278259277,
0.20458267629146576,
0.13462620973587036,
-0.17578788101673126,
-0.3525811433792114,
0.10510481148958206,
-0.08032525330781937,
-0.12903624773025513,
0.02135874517261982,
0.05760384723544121,
0.08029629290103912,
-0.016704760491847992,
-0.03554001823067665,
0.003427563700824976,
-0.061561521142721176,
-0.016107140108942986,
0.031175263226032257,
0.09541988372802734,
-0.08737137913703918,
0.08379733562469482,
0.03426050394773483,
-0.0114505710080266,
0.14006270468235016,
-0.02073829248547554,
-0.0763879269361496,
0.02079492248594761,
0.04172089695930481,
-0.020384199917316437,
-0.056601639837026596,
-0.019958069548010826,
0.024005193263292313,
-0.017852509394288063,
0.10743143409490585,
0.29301881790161133,
0.0457768440246582,
-0.015894168987870216,
0.050522804260253906,
0.02892244979739189,
0.031187754124403,
0.04622279107570648,
0.002081167884171009,
-0.15730762481689453,
0.07284589111804962,
-0.05682012811303139,
-0.09314198791980743,
-0.03167767822742462,
-0.0017506676958873868,
0.0981268361210823,
-0.05222945287823677,
0.06663653254508972,
0.04907272756099701,
0.008146014995872974,
-0.0024776349309831858,
0.019724633544683456,
0.03505800664424896,
0.15693770349025726,
0.06973138451576233,
-0.09330075234174728,
0.2326427847146988,
-0.07795968651771545,
0.3451519012451172,
0.06519531458616257,
-0.17186447978019714,
0.0015280802035704255,
-0.16536928713321686,
-0.08274903148412704,
0.009426575154066086,
0.06846177577972412,
0.04244798794388771,
-0.06766051799058914,
-0.0681324228644371,
0.1076645776629448,
-0.05602144077420235,
-0.05967314541339874,
-0.09208252280950546,
-0.06438151746988297,
-0.09841792285442352,
0.11479154229164124,
0.17103825509548187,
-0.17601613700389862,
0.14707137644290924,
0.31644511222839355,
0.0033473046496510506,
0.20550797879695892,
-0.06598898768424988,
0.06533558666706085,
-0.11870601028203964,
0.06948951631784439,
-0.033792875707149506,
0.1264963299036026,
-0.10152938961982727,
0.04339653253555298,
0.01719778962433338,
0.05835990980267525,
0.12580721080303192,
-0.1375611275434494,
-0.2047722488641739,
0.05393601953983307,
0.04846670478582382,
-0.08490802347660065,
0.15654030442237854,
-0.07621043175458908,
0.03958071768283844,
-0.04002580791711807,
-0.10932640731334686,
0.16022461652755737,
-0.07396190613508224,
-0.03576399013400078,
0.04601873457431793,
-0.162797212600708,
0.04817049205303192,
-0.13655415177345276,
-0.20034807920455933,
-0.03256381303071976,
0.011739566922187805,
0.09091648459434509,
0.0064963698387146,
-0.045913100242614746,
0.008927296847105026,
-0.1321311742067337,
-0.24660253524780273,
-0.10214889049530029,
-0.04224977269768715,
0.1463703066110611,
-0.09529456496238708,
-0.08689732849597931,
-0.008191614411771297,
-0.027925807982683182,
0.0383632630109787,
0.0873899981379509,
-0.04390016943216324,
0.15604910254478455,
0.13776685297489166,
0.03233470022678375,
0.07692384719848633,
-0.0302706528455019,
0.16908830404281616,
0.07715359330177307,
-0.09182680398225784,
0.09044599533081055,
-0.006939579267054796,
0.07778391242027283,
0.26205286383628845,
0.13615888357162476,
-0.10827198624610901,
0.0021787171717733145,
-0.09298930317163467,
-0.13136249780654907,
-0.25473496317863464,
-0.03117409534752369,
-0.15477068722248077,
0.13437145948410034,
-0.08579761534929276,
0.08686056733131409,
0.13696706295013428,
0.05041143670678139,
0.10572081059217453,
0.018525123596191406,
-0.016791416332125664,
0.022843502461910248,
0.17746564745903015,
-0.02853401191532612,
-0.043541014194488525,
-0.14404186606407166,
-0.022182300686836243,
0.15260697901248932,
0.10192563384771347,
0.16757766902446747,
0.16616763174533844,
0.11930298805236816,
0.1956932544708252,
0.11704401671886444,
0.10304278880357742,
0.052189555019140244,
-0.013531852513551712,
-0.004093863070011139,
-0.01228472962975502,
-0.042497504502534866,
0.05230056867003441,
0.05571495369076729,
0.027585504576563835,
-0.19872500002384186,
0.02184155583381653,
-0.19329896569252014,
-0.02313016541302204,
-0.08243345469236374,
0.01644495315849781,
0.05239224433898926,
0.2096434086561203,
0.04210057109594345,
0.10118018835783005,
0.021744482219219208,
0.10573884844779968,
0.015865135937929153,
-0.07006605714559555,
-0.0065298317931592464,
-0.024272896349430084,
0.09974277764558792,
0.10174193233251572,
0.021700428798794746,
-0.016679642722010612,
-0.09889253973960876,
0.04607788100838661,
0.17424549162387848,
-0.17494839429855347,
0.3187439739704132,
-0.0007240860140882432,
-0.04524024948477745,
-0.04190666601061821,
-0.08219234645366669,
0.04142151027917862,
0.1647384762763977,
0.1017698273062706,
0.0333428718149662,
-0.14635729789733887,
-0.06874663382768631,
-0.029922528192400932,
-0.029125673696398735,
0.10087492316961288,
-0.06689736992120743,
-0.13817089796066284,
-0.025579528883099556,
0.0344909206032753,
0.003919827751815319,
0.21354736387729645,
-0.10228335112333298,
-0.15175104141235352,
0.00922450888901949,
0.13133007287979126,
-0.06745465099811554,
-0.04906000941991806,
0.09594502300024033,
-0.02669750526547432,
0.0972210094332695,
-0.0541548989713192,
0.002656505908817053,
-0.14727191627025604,
-0.2363637089729309,
0.010592032223939896,
-0.02335694245994091,
0.020698489621281624,
-0.07203120738267899,
-0.11125075072050095,
-0.1240958720445633,
-0.1789770871400833,
0.11374562233686447,
-0.06521226465702057,
0.09276589751243591,
-0.09726036339998245,
0.08684233576059341,
-0.08414942771196365,
0.02816055528819561,
-0.05099964141845703,
-0.0012100528692826629,
-0.09757094830274582,
-0.14613427221775055,
0.024435222148895264,
-0.13409870862960815,
-0.001014217734336853,
0.034934982657432556,
-0.11161556839942932,
0.14066044986248016,
0.13931402564048767,
-0.08724056929349899,
0.17418785393238068,
0.42831170558929443,
-0.05984934791922569,
0.25173598527908325,
0.2527628242969513,
-0.13718484342098236,
-0.2734082341194153,
-0.059651490300893784,
-0.23391994833946228,
-0.08160211890935898,
0.1082993745803833,
-0.1578003615140915,
0.015907390043139458,
0.05020333454012871,
-0.11690597236156464,
0.1467704027891159,
-0.32824045419692993,
-0.07495500147342682,
0.09672868996858597,
0.007048844825476408,
0.4732857048511505,
-0.1068139299750328,
-0.12494277954101562,
-0.07125994563102722,
-0.10485164821147919,
0.10395017266273499,
-0.07008004188537598,
0.08493339270353317,
-0.030203424394130707,
0.025772906839847565,
0.011868835426867008,
-0.04774972423911095,
0.14879614114761353,
-0.0427577942609787,
0.19098854064941406,
-0.11560776084661484,
0.0027590321842581034,
0.14695321023464203,
-0.03108292631804943,
0.038532279431819916,
-0.07178329676389694,
0.04545990377664566,
-0.042950090020895004,
-0.027814088389277458,
-0.018928585574030876,
0.11621513217687607,
-0.004339784849435091,
-0.1380559802055359,
-0.06945756077766418,
0.01972813345491886,
-0.07362999767065048,
-0.05320021137595177,
0.15675771236419678,
0.03502804413437843,
0.05609925836324692,
0.11970125883817673,
0.004991572815924883,
-0.146412655711174,
0.00884049292653799,
-0.07536338269710541,
0.01455683447420597,
0.04314182698726654,
-0.08771193772554398,
-0.050023581832647324,
0.11971840262413025,
0.021750157698988914,
0.0665673241019249,
0.06486256420612335,
-0.042168524116277695,
0.02131110616028309,
0.11186312884092331,
-0.12857086956501007,
-0.06895474344491959,
-0.017605429515242577,
0.2739332914352417,
0.20882153511047363,
0.06424131989479065,
0.011942589655518532,
0.03977527841925621,
0.08851079642772675,
0.025800030678510666,
-0.024320857599377632,
-0.027894796803593636,
-0.07533380389213562,
0.08076632767915726,
-0.026636533439159393,
-0.08794095367193222,
0.1338292956352234,
0.04866079241037369,
-0.0795087143778801,
-0.08115667849779129,
0.10095386952161789,
-0.03139214217662811,
-0.0645640566945076,
-0.04291141778230667,
0.16875873506069183,
-0.142974391579628,
-0.05379750579595566,
0.05253109708428383,
-0.06923473626375198,
0.03050602227449417,
0.1983366161584854,
0.06317481398582458,
0.10652732849121094,
0.020412208512425423,
-0.03693949803709984,
0.09139978885650635,
-0.008889229968190193,
-0.1458244025707245,
0.04242372885346413,
-0.1516965925693512,
-0.1209954097867012,
-0.03220202773809433,
0.059742625802755356,
-0.06468313187360764,
-0.0443362258374691,
-0.16110824048519135,
0.08512833714485168,
-0.059125129133462906,
-0.04787873104214668,
-0.07900126278400421,
-0.034204404801130295,
-0.011031275615096092,
-0.027199620380997658,
-0.08409348875284195,
0.0068776607513427734,
-0.22133535146713257,
0.051574207842350006,
0.04428314045071602,
0.017113016918301582,
-0.03435007482767105,
-0.08292978256940842,
0.07848229259252548,
0.04986674711108208,
0.10280575603246689,
0.03711284324526787,
-0.059191394597291946,
0.0037306465674191713,
-0.20414716005325317,
-0.038815271109342575,
0.04232484847307205,
-0.021390240639448166,
0.0267819594591856,
0.08142497390508652,
-0.03312315046787262,
0.05886727198958397,
-0.04134150594472885,
0.031092548742890358,
-0.12302310764789581,
-0.19250139594078064,
-0.07369648665189743,
0.0737677738070488,
-0.1768668293952942,
-0.007294799666851759,
-0.158339723944664,
0.12045895308256149,
0.0037357027176767588,
0.19128042459487915,
0.05877019464969635,
0.07969143241643906,
0.07085993885993958,
-0.03897101804614067,
0.1005023792386055,
-0.05584702640771866,
-0.09622103720903397,
-0.019361555576324463,
-0.12480172514915466,
-0.049345120787620544,
0.42032214999198914,
0.05109545961022377,
-0.34862402081489563,
0.03209015727043152,
0.10416815429925919,
0.09029489010572433,
0.0010600913083180785,
0.1751212626695633,
-0.02115757390856743,
0.00999172031879425,
-0.09422436356544495,
0.09467131644487381,
-0.0020058725494891405,
-0.11290951073169708,
0.0739678293466568,
0.09658773243427277,
0.08477838337421417,
-0.024424241855740547,
0.13553570210933685,
-0.010457966476678848,
0.03920025750994682,
-0.11343693733215332,
0.15077632665634155,
0.06773624569177628,
-0.05210328474640846,
0.062154389917850494,
0.1635616272687912,
0.05306112766265869,
0.07038675248622894,
0.04032095894217491,
0.0014122785069048405,
-0.1754148155450821,
-0.1602102369070053,
0.02099275030195713,
-0.05523645877838135,
0.07993361353874207,
0.02664482593536377,
0.06025690957903862,
0.05930217728018761,
0.08369890600442886,
-0.02683570235967636,
-0.012045243754982948,
-0.21370548009872437,
-0.059094905853271484,
-0.014421275816857815,
-0.06632379442453384,
-0.06530799716711044,
-0.13236206769943237,
-0.007965253666043282,
-0.11605394631624222,
-0.1677420735359192,
-0.11075370758771896,
0.06186629459261894,
-0.03134578466415405,
-0.07950954884290695,
-0.1361609846353531,
0.005552724003791809,
-0.051663242280483246,
0.0591781884431839,
0.020678075030446053,
0.14382748305797577,
-0.055859338492155075,
-0.007769476156681776,
0.03557850420475006,
0.17586101591587067,
0.03452156111598015,
-0.019137056544423103,
0.05009777843952179,
-0.11230028420686722,
-0.013903132639825344,
0.09447801858186722,
-0.05355257913470268,
0.03868480771780014,
0.05060523375868797,
0.14069905877113342,
0.3000718951225281,
-0.15852685272693634,
0.022173447534441948,
-0.0156106511130929,
0.027616411447525024,
0.03752091899514198,
0.10538272559642792,
-0.047601912170648575,
0.30318450927734375,
-0.03754459694027901,
0.015319152735173702,
-0.05392564833164215,
0.03960913047194481,
-0.0902356207370758,
0.13807453215122223,
0.07016881555318832,
-0.1437612622976303,
-0.11773919314146042,
0.13123241066932678,
-0.2251790165901184,
0.21079330146312714,
0.05835592746734619,
-0.018531115725636482,
0.0006959201418794692,
-0.017787374556064606,
0.20127902925014496,
-0.06664536148309708,
0.07648804783821106,
-0.10087135434150696,
-0.11177007853984833,
-0.14956814050674438,
0.008278977125883102,
-0.3149573504924774,
-0.07720612734556198,
0.10045251995325089,
0.1509818434715271,
0.17898774147033691,
-0.022407056763768196,
0.060840118676424026,
0.03429623693227768,
0.016734736040234566,
-0.09003262221813202,
0.09443855285644531,
0.08975303173065186,
-0.14206120371818542,
-0.09327292442321777,
-0.12793666124343872,
-0.015153053216636181,
-0.009946417063474655,
-0.008153465576469898,
0.0022670275066047907,
0.04026666656136513,
0.12014163285493851,
-0.04463301971554756,
-0.05576737970113754,
0.06202622875571251,
-0.09607529640197754,
0.03486022725701332,
-0.03752650320529938,
0.012558498419821262,
-0.07468373328447342,
-0.03885192796587944,
-0.04395401477813721,
0.06765811145305634,
-0.2736577093601227,
-0.04237256944179535,
0.10482975840568542,
-0.0006625195383094251,
0.22920070588588715,
0.053381726145744324,
-0.108866386115551,
-0.028044672682881355,
-0.11392955482006073,
0.06305203586816788,
-0.12086670845746994,
-0.0018355880165472627,
0.1538183093070984,
0.022182224318385124,
0.03804173693060875,
-0.16429899632930756,
0.040075428783893585,
-0.10011276602745056,
-0.03175477311015129,
-0.06921384483575821
] |
null | null | diffusers | ### misroriai Dreambooth model trained by misrori with [TheLastBen's fast-DreamBooth](https://colab.research.google.com/github/TheLastBen/fast-stable-diffusion/blob/main/fast-DreamBooth.ipynb) notebook
Test the concept via A1111 Colab [fast-Colab-A1111](https://colab.research.google.com/github/TheLastBen/fast-stable-diffusion/blob/main/fast_stable_diffusion_AUTOMATIC1111.ipynb)
Sample pictures of this concept:
| {"license": "creativeml-openrail-m", "tags": ["text-to-image", "stable-diffusion"]} | text-to-image | misrori/misroriai | [
"diffusers",
"safetensors",
"text-to-image",
"stable-diffusion",
"license:creativeml-openrail-m",
"endpoints_compatible",
"has_space",
"diffusers:StableDiffusionPipeline",
"region:us"
] | 2023-11-11T07:01:48+00:00 | [] | [] | TAGS
#diffusers #safetensors #text-to-image #stable-diffusion #license-creativeml-openrail-m #endpoints_compatible #has_space #diffusers-StableDiffusionPipeline #region-us
| ### misroriai Dreambooth model trained by misrori with TheLastBen's fast-DreamBooth notebook
Test the concept via A1111 Colab fast-Colab-A1111
Sample pictures of this concept:
| [
"### misroriai Dreambooth model trained by misrori with TheLastBen's fast-DreamBooth notebook\n\n\nTest the concept via A1111 Colab fast-Colab-A1111\n\nSample pictures of this concept:"
] | [
"TAGS\n#diffusers #safetensors #text-to-image #stable-diffusion #license-creativeml-openrail-m #endpoints_compatible #has_space #diffusers-StableDiffusionPipeline #region-us \n",
"### misroriai Dreambooth model trained by misrori with TheLastBen's fast-DreamBooth notebook\n\n\nTest the concept via A1111 Colab fast-Colab-A1111\n\nSample pictures of this concept:"
] | [
65,
50
] | [
"passage: TAGS\n#diffusers #safetensors #text-to-image #stable-diffusion #license-creativeml-openrail-m #endpoints_compatible #has_space #diffusers-StableDiffusionPipeline #region-us \n### misroriai Dreambooth model trained by misrori with TheLastBen's fast-DreamBooth notebook\n\n\nTest the concept via A1111 Colab fast-Colab-A1111\n\nSample pictures of this concept:"
] | [
-0.07984593510627747,
0.010361069813370705,
-0.0018346827710047364,
0.06228454411029816,
0.001298894640058279,
-0.019109545275568962,
0.12549519538879395,
-0.021106863394379616,
-0.002380169928073883,
0.07219671458005905,
0.15435367822647095,
-0.023663969710469246,
-0.013061263598501682,
0.1534988284111023,
-0.06019533425569534,
-0.15281856060028076,
0.053416989743709564,
0.008531281724572182,
-0.029759535565972328,
0.08659984916448593,
0.09549460560083389,
-0.08241685479879379,
0.10081955790519714,
-0.02897162176668644,
-0.11684831231832504,
-0.011610924266278744,
-0.03729682415723801,
-0.06172145530581474,
0.07182691991329193,
0.04494083300232887,
0.11725316941738129,
0.12558016180992126,
0.021070189774036407,
-0.03348124399781227,
0.056154582649469376,
-0.01904868520796299,
-0.027181237936019897,
0.044337134808301926,
-0.020021438598632812,
0.044329214841127396,
0.026621414348483086,
0.06974305212497711,
0.004769537597894669,
0.0015961772296577692,
-0.08926302194595337,
0.05857807397842407,
-0.01063056942075491,
0.09964634478092194,
0.03928813710808754,
0.04264523833990097,
0.001624035183340311,
0.08689532428979874,
-0.03969181329011917,
0.09124758839607239,
0.20491768419742584,
-0.23951368033885956,
-0.1056399866938591,
0.24848200380802155,
0.17177142202854156,
-0.04625676944851875,
-0.05511163920164108,
0.07361174374818802,
0.0643833726644516,
0.017998557537794113,
-0.022556817159056664,
-0.08286198228597641,
-0.05208629369735718,
-0.06251780688762665,
-0.08505888283252716,
0.017770040780305862,
0.18414434790611267,
0.01771402172744274,
-0.042713116854429245,
-0.0625457614660263,
-0.09482831507921219,
0.05527026951313019,
-0.03884753957390785,
-0.06445064395666122,
-0.014429640024900436,
-0.008196014910936356,
-0.019066711887717247,
-0.024794891476631165,
-0.1265036165714264,
-0.06274446845054626,
-0.0667269378900528,
0.1728893220424652,
-0.039746858179569244,
0.03798899054527283,
-0.054095372557640076,
0.15058672428131104,
-0.0202821996062994,
-0.1502225697040558,
-0.002287215320393443,
-0.13049720227718353,
0.06695746630430222,
0.0084772864356637,
-0.03896141052246094,
-0.03876985237002373,
0.0821644738316536,
0.03482303395867348,
0.0645904466509819,
-0.034382618963718414,
0.13303658366203308,
0.0912499725818634,
0.008923821151256561,
-0.0015486966585740447,
-0.04807902127504349,
-0.10855400562286377,
-0.016966359689831734,
0.03870046138763428,
0.0345546118915081,
-0.02997380867600441,
-0.08062645047903061,
-0.01628929376602173,
-0.02824719250202179,
0.008117340505123138,
0.018750371411442757,
0.023155340924859047,
-0.07332882285118103,
-0.0036806773860007524,
0.12680014967918396,
-0.0002587998751550913,
-0.0250247735530138,
-0.04212251305580139,
-0.07106941193342209,
0.0038552957121282816,
0.12997883558273315,
-0.026900814846158028,
0.037274330854415894,
0.09986983984708786,
-0.08258101344108582,
-0.022876016795635223,
-0.03294895589351654,
-0.04599665850400925,
0.0075779929757118225,
-0.0640956237912178,
0.045703232288360596,
-0.1607123166322708,
-0.15557223558425903,
-0.008144605904817581,
0.07214011996984482,
-0.06087788939476013,
-0.016166293993592262,
-0.011976618319749832,
-0.11565359681844711,
0.020031893625855446,
0.014147227630019188,
0.02063092775642872,
-0.020947368815541267,
0.045866191387176514,
-0.006213717628270388,
0.1226116344332695,
-0.11680570244789124,
-0.023214997723698616,
-0.09030762314796448,
0.05155795067548752,
-0.13811738789081573,
-0.010256505571305752,
-0.07125009596347809,
0.09028337895870209,
-0.02412177249789238,
-0.04786904528737068,
-0.00565190939232707,
0.03351164609193802,
0.021513961255550385,
0.20682737231254578,
-0.15921033918857574,
0.01737402379512787,
0.09404853731393814,
-0.13428367674350739,
-0.18204578757286072,
0.060252849012613297,
0.005480377469211817,
0.16832739114761353,
0.004143853206187487,
0.06751038134098053,
0.06270772963762283,
-0.30084022879600525,
-0.029911808669567108,
0.047116536647081375,
-0.11068584024906158,
-0.031935859471559525,
0.031301647424697876,
0.12962587177753448,
0.02717679925262928,
0.01835368573665619,
-0.025752823799848557,
0.06682078540325165,
-0.08423599600791931,
-0.03578190505504608,
-0.06732705980539322,
-0.06088051199913025,
0.01098029688000679,
0.0113532654941082,
0.035378601402044296,
-0.06100708618760109,
-0.021438926458358765,
0.01592264138162136,
0.011239863932132721,
0.029135745018720627,
-0.03828645870089531,
-0.07844767719507217,
0.09784583747386932,
-0.045805562287569046,
-0.025943785905838013,
-0.04853624105453491,
-0.10070200264453888,
-0.019374750554561615,
0.1300533562898636,
-0.04036731645464897,
0.2193039506673813,
0.08249375224113464,
0.05854473635554314,
-0.013216087594628334,
-0.03767521679401398,
0.06867944449186325,
0.05229287967085838,
-0.0382554791867733,
-0.1445494145154953,
0.07587525993585587,
-0.07651881128549576,
0.011670852079987526,
-0.11133014410734177,
0.022225961089134216,
0.0549912266433239,
0.18537279963493347,
0.046123720705509186,
0.025832826271653175,
0.02828807570040226,
-0.01558601576834917,
-0.03908718377351761,
-0.058155037462711334,
0.03765163943171501,
0.020522456616163254,
-0.008608934469521046,
0.1294066607952118,
-0.09964971989393234,
0.2780834436416626,
0.1089433953166008,
0.0038856337778270245,
-0.10172559320926666,
-0.013646753504872322,
-0.03422597795724869,
-0.002823862014338374,
-0.023485198616981506,
0.02024943195283413,
-0.0025939778424799442,
-0.0435684397816658,
0.12143176794052124,
-0.05429079383611679,
0.0008049338939599693,
0.04583054780960083,
-0.0758313313126564,
-0.05858002230525017,
0.08180700242519379,
-0.09761851280927658,
-0.14189478754997253,
0.08732391893863678,
0.20914208889007568,
-0.037864211946725845,
0.1497473269701004,
0.010484441183507442,
0.013184923678636551,
-0.10658446699380875,
0.049491409212350845,
-0.033283401280641556,
0.23693595826625824,
-0.04445509612560272,
0.019979732111096382,
0.01854780688881874,
-0.019774284213781357,
0.02403057925403118,
-0.07835439592599869,
-0.05117717757821083,
0.041716184467077255,
0.018296563997864723,
0.14944736659526825,
0.11485956609249115,
-0.08716677874326706,
0.062485843896865845,
-0.052739519625902176,
-0.17976005375385284,
0.020576056092977524,
-0.0047052777372300625,
0.01803020015358925,
0.11693847924470901,
-0.021410154178738594,
-0.2032790333032608,
-0.07853687554597855,
-0.05580948665738106,
0.025071972981095314,
-0.024787133559584618,
0.056058578193187714,
0.032740406692028046,
-0.042184073477983475,
-0.08584018796682358,
0.01312087383121252,
0.007743667345494032,
0.017992496490478516,
0.018963107839226723,
0.01466968934983015,
-0.0412798672914505,
-0.04235116019845009,
-0.0003091133257839829,
-0.028289491310715675,
0.10649041831493378,
0.13138939440250397,
-0.022642619907855988,
0.10718462616205215,
0.08676344901323318,
-0.030021190643310547,
-0.013262877240777016,
0.019266756251454353,
0.30168142914772034,
-0.04738105461001396,
0.12238728255033493,
0.15323229134082794,
0.07347823679447174,
0.04147960618138313,
0.19541649520397186,
0.0335911326110363,
-0.04102935269474983,
0.07394078373908997,
-0.09064235538244247,
-0.07339931279420853,
-0.03971817344427109,
-0.09427954256534576,
-0.020695365965366364,
0.034341152757406235,
-0.030554274097085,
0.049767717719078064,
0.028381286188960075,
0.13912376761436462,
0.06937000900506973,
-0.02638082392513752,
-0.03830960765480995,
0.06503026932477951,
0.09962684661149979,
-0.08926286548376083,
0.05543086677789688,
-0.06854084879159927,
-0.09814862161874771,
0.09228186309337616,
-0.004833256360143423,
0.043670207262039185,
-0.05752525478601456,
-0.07164496928453445,
0.061899591237306595,
0.1078476533293724,
0.12925170361995697,
0.11004740744829178,
-0.00013386952923610806,
-0.1025715246796608,
-0.03210443630814552,
-0.0841994360089302,
0.06907861679792404,
0.07714610546827316,
-0.04383162036538124,
0.001905229757539928,
0.03876248374581337,
0.027739662677049637,
-0.0029833537992089987,
0.034655019640922546,
0.16109034419059753,
-0.22862355411052704,
-0.04770825803279877,
0.0006998958997428417,
0.06602787971496582,
-0.08508473634719849,
0.007804198656231165,
0.2739510238170624,
0.00853002816438675,
-0.011628735810518265,
-0.0539122149348259,
0.05141878500580788,
0.12313307076692581,
0.008022134192287922,
-0.06604872643947601,
-0.012715457938611507,
-0.0316874161362648,
0.02640584297478199,
-0.17131543159484863,
0.11460257321596146,
-0.01987675204873085,
0.053965624421834946,
0.010714460164308548,
-0.037471920251846313,
0.022829003632068634,
0.17272979021072388,
0.16942915320396423,
-0.011134051717817783,
0.024358445778489113,
-0.029411816969513893,
-0.11996027082204819,
-0.01899336837232113,
0.06623710691928864,
0.06819429248571396,
0.03742574155330658,
0.04066607356071472,
-0.017567696049809456,
0.029286878183484077,
0.06386926770210266,
-0.1829080879688263,
-0.05916803330183029,
0.03485242277383804,
0.10338713973760605,
0.026329519227147102,
-0.07784180343151093,
-0.06285630911588669,
-0.004640545230358839,
0.10651611536741257,
-0.1018865704536438,
-0.03451434522867203,
-0.09697383642196655,
-0.09878253936767578,
0.08286294341087341,
-0.018538380041718483,
0.060282833874225616,
-0.09478936344385147,
0.021995605900883675,
-0.03945213556289673,
-0.07290612906217575,
0.075335793197155,
-0.13995297253131866,
-0.1039813831448555,
-0.13194631040096283,
0.01132795587182045,
-0.01977403275668621,
-0.010292465798556805,
0.031066952273249626,
-0.001509775291197002,
-0.12334473431110382,
-0.0924752950668335,
-0.028123237192630768,
-0.024418730288743973,
-0.024528030306100845,
-0.009202062152326107,
0.0005191609379835427,
-0.02371262013912201,
0.05270782485604286,
0.001580955577082932,
0.0387897826731205,
0.26793810725212097,
-0.08356132358312607,
0.049655601382255554,
0.1321387141942978,
0.0005875412607565522,
-0.2716039717197418,
-0.12169456481933594,
-0.06636931002140045,
0.033125828951597214,
-0.018693340942263603,
0.00871020182967186,
0.1360541135072708,
0.009589438326656818,
-0.050992466509342194,
0.18444935977458954,
-0.3033008277416229,
-0.09652677923440933,
0.11547716706991196,
0.08983799815177917,
0.36443549394607544,
-0.12711264193058014,
-0.030204348266124725,
-0.020247753709554672,
-0.21619656682014465,
0.11505182832479477,
-0.013362500816583633,
0.08075271546840668,
-0.0862119123339653,
0.0032632071524858475,
-0.01922236941754818,
-0.06130734458565712,
0.1610892117023468,
-0.12699580192565918,
0.06767068058252335,
-0.12463583797216415,
-0.028841791674494743,
0.16242378950119019,
-0.050884656608104706,
0.06225395202636719,
-0.06836726516485214,
0.09389901906251907,
-0.044812560081481934,
-0.015388377010822296,
-0.04342016950249672,
0.08206456899642944,
-0.07130210846662521,
-0.08214051276445389,
-0.09231556951999664,
0.06116286292672157,
-0.04345809295773506,
-0.020039761438965797,
-0.08908021450042725,
-0.019004059955477715,
-0.03409775719046593,
0.21889658272266388,
-0.029506150633096695,
-0.05772596597671509,
-0.0509939044713974,
0.030778056010603905,
-0.04296853020787239,
0.10516389459371567,
-0.05768497288227081,
-0.06435604393482208,
0.15150894224643707,
0.020998788997530937,
0.05627335608005524,
0.051042184233665466,
-0.032387737184762955,
0.01102389208972454,
0.11070698499679565,
-0.17908114194869995,
-0.055432289838790894,
-0.030081449076533318,
0.1383289396762848,
0.03440406173467636,
-0.0030173042323440313,
0.13467897474765778,
-0.12188191711902618,
0.0551140122115612,
-0.038330357521772385,
-0.014847376383841038,
-0.030631456524133682,
0.11132543534040451,
0.04190175607800484,
0.054528553038835526,
-0.042044904083013535,
0.040879424661397934,
-0.04312260448932648,
-0.13074354827404022,
-0.09096463769674301,
0.04254608973860741,
-0.08726134151220322,
-0.08044861257076263,
0.046268757432699203,
0.14607679843902588,
-0.1413249373435974,
-0.020764252170920372,
-0.10137929767370224,
-0.1385345607995987,
0.031425587832927704,
0.2027110457420349,
0.08831048756837845,
0.06840130686759949,
0.027812400832772255,
-0.0630970448255539,
0.01972212642431259,
0.0795988067984581,
0.06384414434432983,
0.07869204133749008,
-0.1825971007347107,
-0.06036023795604706,
-0.04383690655231476,
0.028567181900143623,
-0.11067946255207062,
-0.010502778925001621,
-0.1286558359861374,
-0.011151325888931751,
-0.09575442969799042,
0.09249100089073181,
-0.05536174774169922,
-0.051597852259874344,
-0.018458209931850433,
-0.02736104093492031,
-0.030234841629862785,
-0.0076252855360507965,
-0.04428858682513237,
0.05532807111740112,
0.006188453175127506,
-0.003909149207174778,
-0.06488946080207825,
-0.058701515197753906,
0.04171492159366608,
-0.05281675606966019,
0.062452174723148346,
-0.017934642732143402,
-0.10020815581083298,
-0.05704902485013008,
-0.22026275098323822,
-0.01636243425309658,
0.09225904196500778,
-0.019424624741077423,
0.04480067640542984,
0.01805025152862072,
-0.027852682396769524,
0.0014384313253685832,
0.05934698134660721,
0.014321415685117245,
0.05222684144973755,
-0.08805258572101593,
-0.03918026387691498,
-0.026584871113300323,
-0.023213256150484085,
-0.0866064801812172,
-0.015573156997561455,
0.1342502385377884,
0.0657530352473259,
0.1501486450433731,
-0.09940268844366074,
0.034941546618938446,
-0.039487261325120926,
0.0001975869236048311,
0.057296667248010635,
-0.09838473051786423,
0.051591988652944565,
-0.0006480772863142192,
-0.01265006698668003,
0.019948506727814674,
0.1445195972919464,
0.005837393458932638,
-0.20836962759494781,
0.017194796353578568,
-0.08155231922864914,
-0.013381652534008026,
0.03268401324748993,
0.19029541313648224,
0.01621374674141407,
0.028151001781225204,
-0.14662905037403107,
0.0673634335398674,
0.08019494265317917,
0.05550479143857956,
0.04699667543172836,
0.15661802887916565,
0.012597260996699333,
0.1535525619983673,
-0.025302909314632416,
0.01976565271615982,
0.030065402388572693,
0.025769980624318123,
-0.11889705806970596,
0.10481061041355133,
-0.07816793769598007,
-0.05477866530418396,
0.08672109991312027,
-0.003882336663082242,
-0.03841148689389229,
-0.024547403678297997,
-0.04672135412693024,
-0.025212420150637627,
-0.01707162894308567,
-0.06438881158828735,
-0.07438226789236069,
0.005165239330381155,
-0.052399370819330215,
-0.007292644120752811,
0.061454981565475464,
0.04675561934709549,
-0.00818977877497673,
0.13789696991443634,
-0.04923178628087044,
0.004779337905347347,
0.12680810689926147,
-0.007996703498065472,
-0.03389008715748787,
-0.019830824807286263,
0.04319559410214424,
-0.050287600606679916,
0.04869223013520241,
-0.06791248917579651,
0.038740113377571106,
-0.015346013940870762,
-0.010357690043747425,
0.030001401901245117,
-0.05709689483046532,
-0.030809767544269562,
0.03588812053203583,
0.03162631765007973,
0.05970519036054611,
0.018289243802428246,
0.0265816580504179,
-0.0012930784141644835,
0.17967189848423004,
-0.051085151731967926,
-0.17306770384311676,
-0.07722339034080505,
0.029625575989484787,
-0.11515603959560394,
0.09056828916072845,
-0.04731253534555435,
-0.03289331868290901,
-0.05338674411177635,
0.16220417618751526,
0.16256120800971985,
-0.1445697546005249,
0.024310540407896042,
-0.01999044045805931,
0.004786030855029821,
-0.04920255392789841,
0.025387663394212723,
0.030778778716921806,
0.22307336330413818,
-0.09322234243154526,
-0.03535226732492447,
-0.08490891009569168,
-0.07487872242927551,
-0.03686440363526344,
-0.11640583723783493,
0.0321565642952919,
-0.020955268293619156,
-0.13832327723503113,
0.07082746922969818,
-0.1398513913154602,
-0.0639958307147026,
0.19285635650157928,
-0.10013815760612488,
-0.05125780031085014,
-0.04238465800881386,
0.17255784571170807,
0.016569368541240692,
0.06501512229442596,
-0.10199196636676788,
-0.0004901468637399375,
-0.0004820888862013817,
-0.03994951397180557,
-0.08244998753070831,
0.046214647591114044,
0.025958573445677757,
-0.14535391330718994,
0.148629292845726,
-0.005093613639473915,
0.06837499886751175,
0.09494255483150482,
-0.04476761445403099,
-0.12425606697797775,
0.08080177754163742,
0.025413047522306442,
-0.13271278142929077,
-0.025919880717992783,
0.08057896792888641,
0.030325043946504593,
0.02373184822499752,
0.0015357715310528874,
-0.15895231068134308,
0.0019382433965802193,
0.1272411346435547,
0.0036280069034546614,
-0.14692725241184235,
0.058802280575037,
0.003487873822450638,
0.09891501069068909,
0.04871394485235214,
-0.05116642266511917,
0.005966214928776026,
-0.004683407489210367,
0.060032717883586884,
0.024183589965105057,
-0.05718391016125679,
0.04077664390206337,
-0.05191756412386894,
0.013321204110980034,
-0.02413439378142357,
-0.004325603134930134,
-0.20108576118946075,
-0.06287899613380432,
-0.1569960117340088,
0.019739346578717232,
0.009534426964819431,
0.07738964259624481,
0.17743228375911713,
0.059267885982990265,
0.018812790513038635,
-0.01693287491798401,
-0.02792365849018097,
0.02929673157632351,
-0.005160611588507891,
-0.11741327494382858
] |
null | null | stable-baselines3 |
# **DQN** Agent playing **SpaceInvadersNoFrameskip-v4**
This is a trained model of a **DQN** agent playing **SpaceInvadersNoFrameskip-v4**
using the [stable-baselines3 library](https://github.com/DLR-RM/stable-baselines3)
and the [RL Zoo](https://github.com/DLR-RM/rl-baselines3-zoo).
The RL Zoo is a training framework for Stable Baselines3
reinforcement learning agents,
with hyperparameter optimization and pre-trained agents included.
## Usage (with SB3 RL Zoo)
RL Zoo: https://github.com/DLR-RM/rl-baselines3-zoo<br/>
SB3: https://github.com/DLR-RM/stable-baselines3<br/>
SB3 Contrib: https://github.com/Stable-Baselines-Team/stable-baselines3-contrib
Install the RL Zoo (with SB3 and SB3-Contrib):
```bash
pip install rl_zoo3
```
```
# Download model and save it into the logs/ folder
python -m rl_zoo3.load_from_hub --algo dqn --env SpaceInvadersNoFrameskip-v4 -orga VinayHajare -f logs/
python -m rl_zoo3.enjoy --algo dqn --env SpaceInvadersNoFrameskip-v4 -f logs/
```
If you installed the RL Zoo3 via pip (`pip install rl_zoo3`), from anywhere you can do:
```
python -m rl_zoo3.load_from_hub --algo dqn --env SpaceInvadersNoFrameskip-v4 -orga VinayHajare -f logs/
python -m rl_zoo3.enjoy --algo dqn --env SpaceInvadersNoFrameskip-v4 -f logs/
```
## Training (with the RL Zoo)
```
python -m rl_zoo3.train --algo dqn --env SpaceInvadersNoFrameskip-v4 -f logs/
# Upload the model and generate video (when possible)
python -m rl_zoo3.push_to_hub --algo dqn --env SpaceInvadersNoFrameskip-v4 -f logs/ -orga VinayHajare
```
## Hyperparameters
```python
OrderedDict([('batch_size', 32),
('buffer_size', 100000),
('env_wrapper',
['stable_baselines3.common.atari_wrappers.AtariWrapper']),
('exploration_final_eps', 0.01),
('exploration_fraction', 0.1),
('frame_stack', 4),
('gradient_steps', 1),
('learning_rate', 0.0001),
('learning_starts', 100000),
('n_timesteps', 1000000.0),
('optimize_memory_usage', False),
('policy', 'CnnPolicy'),
('target_update_interval', 1000),
('train_freq', 4),
('normalize', False)])
```
# Environment Arguments
```python
{'render_mode': 'rgb_array'}
```
| {"library_name": "stable-baselines3", "tags": ["SpaceInvadersNoFrameskip-v4", "deep-reinforcement-learning", "reinforcement-learning", "stable-baselines3"], "model-index": [{"name": "DQN", "results": [{"task": {"type": "reinforcement-learning", "name": "reinforcement-learning"}, "dataset": {"name": "SpaceInvadersNoFrameskip-v4", "type": "SpaceInvadersNoFrameskip-v4"}, "metrics": [{"type": "mean_reward", "value": "460.50 +/- 94.56", "name": "mean_reward", "verified": false}]}]}]} | reinforcement-learning | VinayHajare/dqn-SpaceInvadersNoFrameskip-v4 | [
"stable-baselines3",
"SpaceInvadersNoFrameskip-v4",
"deep-reinforcement-learning",
"reinforcement-learning",
"model-index",
"region:us"
] | 2023-11-11T07:02:18+00:00 | [] | [] | TAGS
#stable-baselines3 #SpaceInvadersNoFrameskip-v4 #deep-reinforcement-learning #reinforcement-learning #model-index #region-us
|
# DQN Agent playing SpaceInvadersNoFrameskip-v4
This is a trained model of a DQN agent playing SpaceInvadersNoFrameskip-v4
using the stable-baselines3 library
and the RL Zoo.
The RL Zoo is a training framework for Stable Baselines3
reinforcement learning agents,
with hyperparameter optimization and pre-trained agents included.
## Usage (with SB3 RL Zoo)
RL Zoo: URL
SB3: URL
SB3 Contrib: URL
Install the RL Zoo (with SB3 and SB3-Contrib):
If you installed the RL Zoo3 via pip ('pip install rl_zoo3'), from anywhere you can do:
## Training (with the RL Zoo)
## Hyperparameters
# Environment Arguments
| [
"# DQN Agent playing SpaceInvadersNoFrameskip-v4\nThis is a trained model of a DQN agent playing SpaceInvadersNoFrameskip-v4\nusing the stable-baselines3 library\nand the RL Zoo.\n\nThe RL Zoo is a training framework for Stable Baselines3\nreinforcement learning agents,\nwith hyperparameter optimization and pre-trained agents included.",
"## Usage (with SB3 RL Zoo)\n\nRL Zoo: URL\nSB3: URL\nSB3 Contrib: URL\n\nInstall the RL Zoo (with SB3 and SB3-Contrib):\n\n\n\n\nIf you installed the RL Zoo3 via pip ('pip install rl_zoo3'), from anywhere you can do:",
"## Training (with the RL Zoo)",
"## Hyperparameters",
"# Environment Arguments"
] | [
"TAGS\n#stable-baselines3 #SpaceInvadersNoFrameskip-v4 #deep-reinforcement-learning #reinforcement-learning #model-index #region-us \n",
"# DQN Agent playing SpaceInvadersNoFrameskip-v4\nThis is a trained model of a DQN agent playing SpaceInvadersNoFrameskip-v4\nusing the stable-baselines3 library\nand the RL Zoo.\n\nThe RL Zoo is a training framework for Stable Baselines3\nreinforcement learning agents,\nwith hyperparameter optimization and pre-trained agents included.",
"## Usage (with SB3 RL Zoo)\n\nRL Zoo: URL\nSB3: URL\nSB3 Contrib: URL\n\nInstall the RL Zoo (with SB3 and SB3-Contrib):\n\n\n\n\nIf you installed the RL Zoo3 via pip ('pip install rl_zoo3'), from anywhere you can do:",
"## Training (with the RL Zoo)",
"## Hyperparameters",
"# Environment Arguments"
] | [
43,
90,
73,
9,
5,
7
] | [
"passage: TAGS\n#stable-baselines3 #SpaceInvadersNoFrameskip-v4 #deep-reinforcement-learning #reinforcement-learning #model-index #region-us \n# DQN Agent playing SpaceInvadersNoFrameskip-v4\nThis is a trained model of a DQN agent playing SpaceInvadersNoFrameskip-v4\nusing the stable-baselines3 library\nand the RL Zoo.\n\nThe RL Zoo is a training framework for Stable Baselines3\nreinforcement learning agents,\nwith hyperparameter optimization and pre-trained agents included.## Usage (with SB3 RL Zoo)\n\nRL Zoo: URL\nSB3: URL\nSB3 Contrib: URL\n\nInstall the RL Zoo (with SB3 and SB3-Contrib):\n\n\n\n\nIf you installed the RL Zoo3 via pip ('pip install rl_zoo3'), from anywhere you can do:## Training (with the RL Zoo)## Hyperparameters# Environment Arguments"
] | [
0.043572068214416504,
0.2414778620004654,
-0.0026879787910729647,
0.012635791674256325,
0.05784223601222038,
0.0030472534708678722,
0.08585051447153091,
0.10650663822889328,
0.024212315678596497,
-0.001382096204906702,
0.003954293206334114,
0.17533031105995178,
0.03632635250687599,
0.13125447928905487,
-0.018073517829179764,
-0.2066594809293747,
-0.013479253277182579,
-0.06247470900416374,
-0.07153085619211197,
0.036099132150411606,
0.07206681370735168,
-0.030116932466626167,
0.036061208695173264,
-0.051406677812337875,
-0.057161085307598114,
0.036824777722358704,
-0.03157254680991173,
0.007067287806421518,
0.15158706903457642,
-0.1222257912158966,
0.12329676002264023,
0.020955175161361694,
0.1896144151687622,
-0.12332789599895477,
0.0339222252368927,
0.08982209116220474,
-0.036988191306591034,
0.013221588917076588,
0.00975361280143261,
-0.052562564611434937,
0.1590864509344101,
-0.09371145814657211,
0.07146181166172028,
0.010926910676062107,
-0.07592244446277618,
-0.1774153709411621,
-0.09356249868869781,
0.07947742193937302,
0.0617753230035305,
0.005319166928529739,
0.03726791962981224,
0.11306490749120712,
-0.020991774275898933,
0.06488905102014542,
0.11562903225421906,
-0.17549200356006622,
0.013578375801444054,
0.17859570682048798,
0.003242473118007183,
0.15767055749893188,
-0.05546637624502182,
0.019877681508660316,
0.02752300351858139,
0.04758313298225403,
0.06873945891857147,
-0.08186400681734085,
-0.1364826112985611,
-0.056155186146497726,
-0.15456219017505646,
-0.03352400287985802,
0.05195203423500061,
-0.011860138736665249,
-0.05783402919769287,
-0.010724928230047226,
-0.04010869935154915,
0.0008851495804265141,
-0.028637725859880447,
0.01805497519671917,
0.07031578570604324,
-0.01226285845041275,
0.02092539705336094,
-0.08391954004764557,
-0.0390290804207325,
-0.038563769310712814,
-0.018022390082478523,
0.12054917961359024,
0.08285853266716003,
0.0266572255641222,
-0.04135355353355408,
0.10274127870798111,
-0.07091585546731949,
-0.05454207584261894,
0.04555258899927139,
-0.03786851093173027,
-0.10615779459476471,
0.02120024710893631,
-0.05905991420149803,
0.026879185810685158,
0.09943640232086182,
0.18048083782196045,
-0.09862488508224487,
0.012620617635548115,
-0.03430783003568649,
0.08121664822101593,
-0.03196052461862564,
0.03197542577981949,
-0.0840383991599083,
-0.016251085326075554,
0.17835216224193573,
0.0030782297253608704,
0.022272996604442596,
0.002074616262689233,
-0.049819961190223694,
-0.02881433069705963,
-0.017756454646587372,
0.06631895154714584,
0.07032092660665512,
0.010587303899228573,
-0.0037596761249005795,
-0.027667716145515442,
-0.036921944469213486,
-0.05629328638315201,
-0.04952820762991905,
0.018803736194968224,
-0.04712437093257904,
-0.047942135483026505,
0.06027210131287575,
-0.005624116864055395,
0.11337806284427643,
-0.025607796385884285,
0.026316547766327858,
-0.019410157576203346,
-0.07494441419839859,
-0.13221681118011475,
-0.0304415225982666,
0.0691632330417633,
0.04371757060289383,
-0.22497159242630005,
-0.16994807124137878,
-0.008539012633264065,
0.017946386709809303,
-0.018741264939308167,
-0.11334165185689926,
0.02453240379691124,
-0.007166135590523481,
-0.049758363515138626,
-0.01601579785346985,
0.10474669933319092,
-0.020438622683286667,
0.018010856583714485,
-0.05593825876712799,
0.16603368520736694,
-0.14290283620357513,
0.031004127115011215,
-0.08706212788820267,
0.023509707301855087,
-0.21286657452583313,
0.041208744049072266,
-0.177636057138443,
0.04863585904240608,
-0.08500861376523972,
0.02327173389494419,
0.021320728585124016,
0.01968831568956375,
0.08580207824707031,
0.10143322497606277,
-0.23631145060062408,
0.05405791476368904,
0.07900930196046829,
-0.022739801555871964,
-0.04218491166830063,
0.06798892468214035,
-0.06558530032634735,
0.1382148116827011,
0.046505436301231384,
0.24831900000572205,
0.10361487418413162,
-0.2036508023738861,
0.061786454170942307,
0.0578593946993351,
-0.08880111575126648,
-0.004730981774628162,
-0.020022382959723473,
0.11598580330610275,
-0.01114928349852562,
0.03338807821273804,
-0.12186288088560104,
0.1456439197063446,
0.02738998830318451,
-0.0165485180914402,
-0.04454165697097778,
-0.1614885926246643,
0.10309953987598419,
-0.015504824928939342,
0.09532155096530914,
-0.042415786534547806,
0.0001161050095106475,
-0.011168917641043663,
0.18012429773807526,
-0.043841805309057236,
0.0007168867159634829,
0.07871408760547638,
0.10895700752735138,
0.028009075671434402,
-0.020230965688824654,
-0.20380273461341858,
-0.0423048660159111,
0.02367858961224556,
0.044489551335573196,
0.2190362960100174,
0.19936694204807281,
0.07770156860351562,
-0.022313760593533516,
-0.025487221777439117,
-0.003248062450438738,
-0.05106664076447487,
0.03467361256480217,
-0.027858436107635498,
-0.024532482028007507,
0.06065356358885765,
-0.09305168688297272,
0.02817818708717823,
-0.13112716376781464,
0.06307920068502426,
-0.17345242202281952,
0.06863926351070404,
0.021998396143317223,
-0.005436043255031109,
0.024577690288424492,
-0.011292695067822933,
-0.034188106656074524,
-0.06233125180006027,
0.07110602408647537,
0.06098933145403862,
0.014702376909554005,
0.0021991983521729708,
-0.0683600977063179,
-0.13828523457050323,
0.08231553435325623,
-0.04042381793260574,
-0.14305958151817322,
0.06392676383256912,
0.011172642931342125,
0.04875864461064339,
-0.05975872278213501,
0.016254881396889687,
0.22900153696537018,
0.05321883037686348,
0.09785865992307663,
-0.04092191904783249,
-0.022525805979967117,
-0.06617844104766846,
-0.06677833944559097,
0.09694591909646988,
0.10812206566333771,
0.060318704694509506,
-0.0030071530491113663,
0.07626225054264069,
0.10942911356687546,
-0.1035122498869896,
-0.0651884600520134,
0.03220061957836151,
-0.05973697826266289,
0.019652515649795532,
0.049140311777591705,
0.02971293032169342,
0.08619047701358795,
0.1833551675081253,
0.008245792239904404,
0.0386311337351799,
-0.025997694581747055,
0.026109617203474045,
-0.15547916293144226,
-0.03145433962345123,
0.04308181628584862,
0.00886955764144659,
-0.07408110797405243,
0.04994636029005051,
0.051439400762319565,
0.13607151806354523,
-0.08217083662748337,
-0.13170577585697174,
-0.059745315462350845,
-0.03804200142621994,
-0.04239124804735184,
0.14975430071353912,
-0.08507520705461502,
-0.19221234321594238,
-0.017164425924420357,
-0.15751953423023224,
-0.02518727444112301,
-0.005179801490157843,
0.002318724524229765,
-0.08325926214456558,
0.017780914902687073,
0.010001576505601406,
-0.03129372000694275,
-0.0684933215379715,
-0.06596160680055618,
-0.05786636844277382,
0.09124112874269485,
0.06932931393384933,
-0.12240120023488998,
-0.00961651187390089,
-0.03742414712905884,
-0.020465577021241188,
0.04516167193651199,
0.08452648669481277,
-0.007267598994076252,
0.07773483544588089,
-0.13209199905395508,
-0.06962883472442627,
0.02834828943014145,
0.2766247093677521,
0.02882981114089489,
0.004668009467422962,
0.17051753401756287,
-0.03629542142152786,
0.04912714660167694,
0.16181479394435883,
0.030781643465161324,
-0.14196757972240448,
0.07090470939874649,
-0.011341600678861141,
-0.09542687982320786,
-0.1706860214471817,
-0.10215658694505692,
-0.037867411971092224,
-0.05015881359577179,
0.05638284236192703,
0.004951419774442911,
-0.04476970434188843,
0.05910305306315422,
0.08782228082418442,
-0.017004497349262238,
-0.06151578947901726,
0.11129767447710037,
0.032263003289699554,
-0.030136963352560997,
0.08078382909297943,
-0.042354047298431396,
-0.04206389561295509,
0.0032403599470853806,
0.22643887996673584,
0.0937788337469101,
-0.01775507442653179,
-0.042567066848278046,
0.019317636266350746,
0.05095715448260307,
0.03613382205367088,
0.11312435567378998,
-0.06975842267274857,
-0.06826137751340866,
-0.035185977816581726,
0.027829548344016075,
-0.02945687249302864,
0.08205190300941467,
0.0630207508802414,
0.005563626065850258,
-0.04653681069612503,
-0.07972332090139389,
-0.04849022626876831,
0.08408913016319275,
-0.027642227709293365,
-0.10093270242214203,
0.09321888536214828,
0.048575710505247116,
0.0016974330646917224,
0.03055831417441368,
0.027994604781270027,
0.01462269201874733,
-0.07982148975133896,
-0.06775744259357452,
0.011468625627458096,
0.07076629996299744,
-0.06822766363620758,
-0.027886953204870224,
-0.19817815721035004,
0.14578363299369812,
0.010630400851368904,
0.04118429124355316,
-0.13048617541790009,
0.1209396943449974,
-0.023116756230592728,
-0.026430301368236542,
0.013811616227030754,
0.0014643745962530375,
0.08203291147947311,
-0.04806509613990784,
0.15762180089950562,
0.009528410620987415,
-0.28092408180236816,
-0.1418946087360382,
-0.08416824042797089,
-0.051183976233005524,
-0.022873088717460632,
0.014752174727618694,
0.0642135739326477,
0.01516205258667469,
0.003868846921250224,
-0.013076163828372955,
0.03185269236564636,
-0.09826882928609848,
-0.06493937969207764,
-0.04839126765727997,
-0.02250157669186592,
-0.06525848805904388,
-0.05647949501872063,
-0.0006809153710491955,
-0.17226077616214752,
0.12522587180137634,
0.11787347495555878,
-0.06451737880706787,
-0.041814323514699936,
-0.06554657220840454,
0.046191465109586716,
-0.07571537792682648,
0.0469326451420784,
0.003414976177737117,
0.019198855385184288,
-0.06806991249322891,
-0.17922484874725342,
0.016097763553261757,
-0.10899919271469116,
0.03772687539458275,
-0.05070559307932854,
0.020257100462913513,
0.08594245463609695,
0.17520126700401306,
0.05856714025139809,
0.01460097823292017,
-0.07239776104688644,
-0.07543374598026276,
-0.0017121878918260336,
-0.06344114243984222,
0.05762333422899246,
-0.009151889942586422,
-0.20333483815193176,
0.02763226442039013,
-0.11414948850870132,
0.06860900670289993,
0.3310066759586334,
0.3324824273586273,
-0.10698744654655457,
0.1177443116903305,
0.04819539934396744,
-0.042202454060316086,
-0.21051374077796936,
-0.002244179602712393,
0.012272895313799381,
0.024992236867547035,
0.13725964725017548,
-0.12924811244010925,
0.05453680083155632,
0.0794181227684021,
-0.024458877742290497,
0.01456840243190527,
-0.09078162908554077,
-0.10816970467567444,
0.20847418904304504,
0.14226987957954407,
0.04421741142868996,
-0.09421348571777344,
0.08391669392585754,
0.004295284394174814,
0.08375877887010574,
0.2107764035463333,
-0.052112679928541183,
0.10695768147706985,
0.005195184610784054,
0.19852910935878754,
0.0328996516764164,
-0.023768596351146698,
0.10834760218858719,
-0.009801650419831276,
0.07911337912082672,
0.03985166177153587,
-0.007676942739635706,
0.010487722232937813,
-0.04522453248500824,
0.014148596674203873,
-0.028376007452607155,
0.010284217074513435,
-0.2274095118045807,
0.0582297146320343,
-0.06368855386972427,
0.04604509472846985,
0.008256820961833,
-0.0999874547123909,
-0.03583388403058052,
0.06431841105222702,
0.08014573156833649,
0.01975327916443348,
0.0436067171394825,
-0.03867863491177559,
0.11051398515701294,
0.20660489797592163,
-0.009811338968575,
0.17751595377922058,
-0.0615963339805603,
0.01464168168604374,
-0.023011628538370132,
-0.04223164543509483,
-0.1462583988904953,
-0.035259708762168884,
0.03498423472046852,
0.057734888046979904,
0.015203364193439484,
0.049647457897663116,
-0.05656236410140991,
0.08498423546552658,
0.021687336266040802,
-0.041541360318660736,
0.033579520881175995,
0.08835696429014206,
0.12415177375078201,
0.010754258371889591,
-0.030121933668851852,
0.06147436052560806,
-0.08128108084201813,
-0.09446098655462265,
-0.004497923422604799,
-0.029991207644343376,
-0.1083834245800972,
0.11353230476379395,
0.16914646327495575,
0.039594944566488266,
-0.057076629251241684,
0.10688766092061996,
-0.02768099494278431,
0.10047874599695206,
0.009198128245770931,
0.06507332623004913,
-0.014091075398027897,
-0.03691792115569115,
0.10611724853515625,
-0.05442855879664421,
-0.01637818105518818,
0.07645545154809952,
-0.06522727757692337,
-0.023877469822764397,
-0.0801999643445015,
0.06034626066684723,
0.09222240000963211,
-0.16854619979858398,
-0.0639432892203331,
-0.032122284173965454,
-0.08628080040216446,
0.013965039514005184,
0.012447911314666271,
0.0710059329867363,
-0.08589600026607513,
0.06316167116165161,
-0.024337708950042725,
0.015639442950487137,
-0.03689891844987869,
0.019222697243094444,
-0.19525384902954102,
-0.002140450058504939,
-0.11280795186758041,
-0.00348020251840353,
-0.002931603929027915,
0.04463808611035347,
-0.04961875081062317,
-0.029358822852373123,
-0.0030675032176077366,
0.044366419315338135,
-0.16609135270118713,
0.002798673929646611,
-0.011639905162155628,
0.03210212290287018,
-0.0002893915225286037,
-0.0983390137553215,
0.014195028692483902,
-0.04294256120920181,
-0.04198618605732918,
0.04925514757633209,
0.009436776861548424,
0.06470516324043274,
-0.2795179784297943,
-0.14905457198619843,
0.030816160142421722,
0.0683867484331131,
0.05483196675777435,
-0.1830425262451172,
0.03568267077207565,
-0.08042316138744354,
-0.02253127470612526,
-0.037770628929138184,
0.018491698428988457,
-0.0539514496922493,
0.0018174031283706427,
-0.04225044324994087,
-0.023033907637000084,
-0.028055014088749886,
-0.07556360960006714,
0.0826747715473175,
0.12462522834539413,
0.07555580884218216,
-0.03807181864976883,
0.09595896303653717,
-0.10009756684303284,
-0.04657831788063049,
-0.04052736237645149,
-0.036951083689928055,
0.017965637147426605,
-0.0870552659034729,
0.048530060797929764,
0.05188591405749321,
0.18719671666622162,
-0.08520494401454926,
-0.058800119906663895,
-0.014255574904382229,
0.0746525228023529,
0.07849094271659851,
0.005095830652862787,
0.17779210209846497,
-0.045693784952163696,
0.05693846940994263,
0.021304311230778694,
0.046699028462171555,
0.10497613251209259,
-0.023569339886307716,
0.14490213990211487,
0.21171095967292786,
-0.037196725606918335,
-0.11048602312803268,
0.043668005615472794,
0.01745123788714409,
-0.002401199424639344,
0.05968761444091797,
0.11983796209096909,
-0.050589341670274734,
-0.10903856158256531,
0.23442286252975464,
0.054169271141290665,
-0.11218088120222092,
0.09546315670013428,
0.039532262831926346,
-0.015890996903181076,
-0.1301896870136261,
0.010444961488246918,
-0.0013640925753861666,
-0.11233190447092056,
0.03386834263801575,
-0.06087532266974449,
-0.025547027587890625,
0.11809267848730087,
0.008789865300059319,
0.03317064419388771,
-0.04139537364244461,
-0.03756232187151909,
-0.04352104663848877,
-0.04273213446140289,
-0.012549578212201595,
-0.02991986647248268,
-0.030186517164111137,
-0.07621737569570541,
-0.007770835887640715,
-0.012012424878776073,
0.030795488506555557,
-0.015285328030586243,
-0.02503054589033127,
-0.021192016080021858,
-0.06697061657905579,
-0.0026312144473195076,
-0.008178025484085083,
0.015549594536423683,
0.010121971368789673,
0.2358063906431198,
0.07042546570301056,
-0.10260069370269775,
-0.01036880537867546,
0.22197756171226501,
-0.03853277862071991,
-0.06528383493423462,
-0.07849395275115967,
0.25128230452537537,
-0.10482002794742584,
0.051095426082611084,
-0.005819917656481266,
-0.06550488620996475,
-0.07153836637735367,
0.2309868484735489,
0.13502730429172516,
-0.1677926480770111,
0.06329060345888138,
-0.0368385910987854,
-0.009490780532360077,
-0.14286863803863525,
0.16013580560684204,
0.1865294873714447,
0.09480160474777222,
-0.12259847670793533,
0.0023130534682422876,
-0.03518044203519821,
-0.018328361213207245,
-0.1660851687192917,
-0.004593863617628813,
-0.029364850372076035,
-0.0427238829433918,
-0.050771355628967285,
0.029773715883493423,
-0.15205919742584229,
-0.0927426889538765,
-0.1916799396276474,
-0.11482496559619904,
-0.12386849522590637,
-0.04549141973257065,
-0.11142764985561371,
-0.0019938007462769747,
0.02257080189883709,
-0.0641874223947525,
0.021061956882476807,
-0.0212461706250906,
-0.05887424945831299,
0.015386379323899746,
-0.08395619690418243,
0.0674985870718956,
0.06488548219203949,
0.15327942371368408,
-0.0790991559624672,
0.025424562394618988,
0.07090727984905243,
-0.057595450431108475,
-0.10164349526166916,
0.06067253649234772,
0.015708057209849358,
-0.1972588747739792,
0.007548294495791197,
0.17712996900081635,
-0.10420889407396317,
0.09745754301548004,
0.048501528799533844,
-0.012951982207596302,
0.0867827981710434,
-0.024721821770071983,
-0.016682926565408707,
-0.04852180927991867,
-0.011212974786758423,
-0.10143939405679703,
0.09892100840806961,
0.0876845121383667,
-0.0517118014395237,
0.07436849176883698,
-0.09508965909481049,
-0.04068392515182495,
0.13103286921977997,
-0.010057874955236912,
-0.08450483530759811,
-0.11667824536561966,
-0.04081142693758011,
0.09684515744447708,
-0.018041390925645828,
-0.20185889303684235,
-0.11639472097158432,
-0.11752668023109436,
-0.00014377340266946703,
-0.03563340753316879,
0.061800602823495865,
0.02430674433708191,
-0.02556120604276657,
-0.008150683715939522,
-0.17615078389644623,
-0.06614746153354645,
0.13479791581630707,
-0.10176112502813339,
-0.07456064969301224
] |
null | null | transformers |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
should probably proofread and complete it, then remove this comment. -->
# distilbert-base-uncaed-finetuned-clinc
This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the clinc_oos dataset.
It achieves the following results on the evaluation set:
- Loss: 0.7725
- Accuracy: 0.9165
## Model description
More information needed
## Intended uses & limitations
More information needed
## Training and evaluation data
More information needed
## Training procedure
### Training hyperparameters
The following hyperparameters were used during training:
- learning_rate: 2e-05
- train_batch_size: 48
- eval_batch_size: 48
- seed: 42
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
- lr_scheduler_type: linear
- num_epochs: 5
### Training results
| Training Loss | Epoch | Step | Validation Loss | Accuracy |
|:-------------:|:-----:|:----:|:---------------:|:--------:|
| No log | 1.0 | 318 | 3.2763 | 0.7284 |
| 3.7825 | 2.0 | 636 | 1.8625 | 0.8365 |
| 3.7825 | 3.0 | 954 | 1.1513 | 0.8984 |
| 1.6859 | 4.0 | 1272 | 0.8540 | 0.9135 |
| 0.8984 | 5.0 | 1590 | 0.7725 | 0.9165 |
### Framework versions
- Transformers 4.35.2
- Pytorch 2.1.0+cu118
- Datasets 2.15.0
- Tokenizers 0.15.0
| {"license": "apache-2.0", "tags": ["generated_from_trainer"], "datasets": ["clinc_oos"], "metrics": ["accuracy"], "base_model": "distilbert-base-uncased", "model-index": [{"name": "distilbert-base-uncaed-finetuned-clinc", "results": [{"task": {"type": "text-classification", "name": "Text Classification"}, "dataset": {"name": "clinc_oos", "type": "clinc_oos", "config": "plus", "split": "validation", "args": "plus"}, "metrics": [{"type": "accuracy", "value": 0.9164516129032259, "name": "Accuracy"}]}]}]} | text-classification | sungkwangjoong/distilbert-base-uncaed-finetuned-clinc | [
"transformers",
"tensorboard",
"safetensors",
"distilbert",
"text-classification",
"generated_from_trainer",
"dataset:clinc_oos",
"base_model:distilbert-base-uncased",
"license:apache-2.0",
"model-index",
"autotrain_compatible",
"endpoints_compatible",
"region:us"
] | 2023-11-11T07:08:11+00:00 | [] | [] | TAGS
#transformers #tensorboard #safetensors #distilbert #text-classification #generated_from_trainer #dataset-clinc_oos #base_model-distilbert-base-uncased #license-apache-2.0 #model-index #autotrain_compatible #endpoints_compatible #region-us
| distilbert-base-uncaed-finetuned-clinc
======================================
This model is a fine-tuned version of distilbert-base-uncased on the clinc\_oos dataset.
It achieves the following results on the evaluation set:
* Loss: 0.7725
* Accuracy: 0.9165
Model description
-----------------
More information needed
Intended uses & limitations
---------------------------
More information needed
Training and evaluation data
----------------------------
More information needed
Training procedure
------------------
### Training hyperparameters
The following hyperparameters were used during training:
* learning\_rate: 2e-05
* train\_batch\_size: 48
* eval\_batch\_size: 48
* seed: 42
* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
* lr\_scheduler\_type: linear
* num\_epochs: 5
### Training results
### Framework versions
* Transformers 4.35.2
* Pytorch 2.1.0+cu118
* Datasets 2.15.0
* Tokenizers 0.15.0
| [
"### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 48\n* eval\\_batch\\_size: 48\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 5",
"### Training results",
"### Framework versions\n\n\n* Transformers 4.35.2\n* Pytorch 2.1.0+cu118\n* Datasets 2.15.0\n* Tokenizers 0.15.0"
] | [
"TAGS\n#transformers #tensorboard #safetensors #distilbert #text-classification #generated_from_trainer #dataset-clinc_oos #base_model-distilbert-base-uncased #license-apache-2.0 #model-index #autotrain_compatible #endpoints_compatible #region-us \n",
"### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 48\n* eval\\_batch\\_size: 48\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 5",
"### Training results",
"### Framework versions\n\n\n* Transformers 4.35.2\n* Pytorch 2.1.0+cu118\n* Datasets 2.15.0\n* Tokenizers 0.15.0"
] | [
85,
98,
4,
33
] | [
"passage: TAGS\n#transformers #tensorboard #safetensors #distilbert #text-classification #generated_from_trainer #dataset-clinc_oos #base_model-distilbert-base-uncased #license-apache-2.0 #model-index #autotrain_compatible #endpoints_compatible #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 48\n* eval\\_batch\\_size: 48\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 5### Training results### Framework versions\n\n\n* Transformers 4.35.2\n* Pytorch 2.1.0+cu118\n* Datasets 2.15.0\n* Tokenizers 0.15.0"
] | [
-0.13134729862213135,
0.15453174710273743,
-0.0030163985211402178,
0.10872460156679153,
0.10764984041452408,
-0.005676413420587778,
0.15601319074630737,
0.134160578250885,
-0.05070652440190315,
0.07094479352235794,
0.1361972838640213,
0.13633142411708832,
0.032025549560785294,
0.17044679820537567,
-0.09381558001041412,
-0.17666685581207275,
0.040665801614522934,
0.04535361006855965,
-0.07097767293453217,
0.1122153028845787,
0.09035541117191315,
-0.10986868292093277,
0.09471125900745392,
0.007059286814182997,
-0.14516764879226685,
-0.007870389148592949,
0.016636403277516365,
-0.06925100833177567,
0.08812859654426575,
0.03640133515000343,
0.08180586248636246,
0.05377369374036789,
0.045398831367492676,
-0.18041454255580902,
0.00783328153192997,
0.04981840401887894,
-0.013777852058410645,
0.08674241602420807,
0.02963585965335369,
-0.01280218455940485,
0.028803091496229172,
-0.11583275347948074,
0.05211018770933151,
0.029669564217329025,
-0.11281788349151611,
-0.22972671687602997,
-0.08245342969894409,
0.055402904748916626,
0.07702671736478806,
0.08803713321685791,
-0.005037455353885889,
0.12847104668617249,
-0.030808335170149803,
0.09046251326799393,
0.22413235902786255,
-0.28069308400154114,
-0.058049336075782776,
0.022993771359324455,
0.03805994614958763,
0.09457137435674667,
-0.10966163128614426,
-0.03767811134457588,
0.05555419996380806,
0.013215754181146622,
0.14367812871932983,
-0.030610449612140656,
0.03857917711138725,
-0.013011904433369637,
-0.12873665988445282,
-0.045643050223588943,
0.21210984885692596,
0.08216147869825363,
-0.0675981342792511,
-0.06770059466362,
-0.07377231121063232,
-0.15213894844055176,
-0.02557780034840107,
-0.013768895529210567,
0.06620761007070541,
-0.016934193670749664,
-0.03295512869954109,
-0.023408260196447372,
-0.09347444772720337,
-0.03920472785830498,
-0.03409059718251228,
0.14912080764770508,
0.03640715405344963,
0.0031886945944279432,
-0.00037160032661631703,
0.08489760011434555,
0.008414804935455322,
-0.15028932690620422,
-0.02023472636938095,
0.026013582944869995,
0.026446977630257607,
-0.023525787517428398,
-0.04494849219918251,
-0.05496085807681084,
0.04593046009540558,
0.15316282212734222,
-0.054316069930791855,
0.04314936324954033,
-0.002946993336081505,
0.039014726877212524,
-0.09025899320840836,
0.18113036453723907,
-0.026044469326734543,
-0.01258866023272276,
0.04756841063499451,
0.11392981559038162,
0.05461302772164345,
-0.019404644146561623,
-0.10411908477544785,
0.03875548392534256,
0.13364745676517487,
0.007931535132229328,
-0.02785002812743187,
0.05552291497588158,
-0.0829903855919838,
-0.031791720539331436,
0.04451841861009598,
-0.12064249813556671,
0.023157641291618347,
0.004593317396938801,
-0.054357003420591354,
-0.03629143163561821,
0.041165683418512344,
0.013481728732585907,
-0.024558529257774353,
0.034551478922367096,
-0.0949508398771286,
-0.0024652115534991026,
-0.05633270740509033,
-0.08832449465990067,
0.007138533517718315,
-0.10734141618013382,
0.022745119407773018,
-0.10931149125099182,
-0.1605260670185089,
-0.039678771048784256,
0.048246823251247406,
-0.009084566496312618,
-0.0708591639995575,
-0.08349261432886124,
-0.081417977809906,
0.025884617120027542,
-0.0070794010534882545,
0.01893635094165802,
-0.059014689177274704,
0.0873427465558052,
0.0503891296684742,
0.04788471385836601,
-0.06348568946123123,
0.04607865959405899,
-0.11626884341239929,
0.05793232470750809,
-0.13618339598178864,
0.0439954549074173,
-0.0426662340760231,
0.07707902789115906,
-0.08534318953752518,
-0.07108380645513535,
0.011565040796995163,
-0.00912355724722147,
0.0581018403172493,
0.10778879374265671,
-0.13852092623710632,
-0.05981636047363281,
0.1620156168937683,
-0.08612504601478577,
-0.15222373604774475,
0.11640694737434387,
-0.037523053586483,
0.029973667114973068,
0.05174841731786728,
0.18628497421741486,
0.07938265800476074,
-0.059809185564517975,
-0.019219115376472473,
-0.02891131117939949,
0.08536595851182938,
-0.0481550469994545,
0.10862324386835098,
-0.019830849021673203,
0.0041690487414598465,
0.025741370394825935,
-0.07610893249511719,
0.015826910734176636,
-0.05762447789311409,
-0.09473642706871033,
-0.06228851154446602,
-0.09537124633789062,
0.04700480401515961,
0.04416906088590622,
0.06265685707330704,
-0.10537712275981903,
-0.09663090109825134,
0.02675584889948368,
0.09509038180112839,
-0.09566089510917664,
0.02425619214773178,
-0.08576857298612595,
0.11524488776922226,
-0.0994725301861763,
-0.007745350711047649,
-0.15508921444416046,
-0.015304110944271088,
0.03598205745220184,
-0.029658395797014236,
-0.005647605750709772,
-0.0011811659205704927,
0.06747427582740784,
0.06713978946208954,
-0.03872596472501755,
-0.0776209756731987,
-0.03199068456888199,
0.004384035710245371,
-0.09970386326313019,
-0.17912507057189941,
-0.015226470306515694,
-0.039296384900808334,
0.14977657794952393,
-0.21368642151355743,
0.060108084231615067,
0.03243366628885269,
0.09725036472082138,
0.04525231197476387,
-0.028584342449903488,
-0.012804500758647919,
0.050957560539245605,
-0.05125962197780609,
-0.0852191150188446,
0.05686640366911888,
0.032309066504240036,
-0.1159849688410759,
-0.033695947378873825,
-0.14148995280265808,
0.20671826601028442,
0.1272640973329544,
0.0030976084526628256,
-0.032440539449453354,
0.002916352590546012,
-0.05622102692723274,
-0.030430248007178307,
-0.017546890303492546,
0.013515214435756207,
0.1382330060005188,
-0.013377860188484192,
0.14733752608299255,
-0.0976233258843422,
-0.03087451495230198,
0.030008981004357338,
-0.04964147508144379,
-0.022900894284248352,
0.1113353818655014,
0.020535917952656746,
-0.107744500041008,
0.15980027616024017,
0.18428151309490204,
-0.062157269567251205,
0.12123148888349533,
-0.06566766649484634,
-0.053223468363285065,
-0.045702505856752396,
0.030752768740057945,
0.02733069658279419,
0.09798251837491989,
-0.1058753952383995,
0.006593248341232538,
0.01473754458129406,
0.007882710546255112,
0.006690623704344034,
-0.18610292673110962,
-0.002855293918401003,
0.052888140082359314,
-0.053425077348947525,
0.021884633228182793,
-0.017637500539422035,
-0.019784418866038322,
0.07648612558841705,
-0.006972811184823513,
-0.06731355935335159,
0.06702698767185211,
0.003581591648980975,
-0.07145358622074127,
0.2018646001815796,
-0.09094564616680145,
-0.17992545664310455,
-0.14262038469314575,
-0.016903836280107498,
-0.09071587026119232,
0.029071317985653877,
0.06921722739934921,
-0.04761837050318718,
-0.041092727333307266,
-0.11957655102014542,
-0.027511252090334892,
0.02879144437611103,
0.04023987799882889,
0.06838870048522949,
-0.008398054167628288,
0.11360245943069458,
-0.09870894253253937,
-0.03231734037399292,
-0.008486967533826828,
-0.040210772305727005,
0.031411346048116684,
0.012791560962796211,
0.1204008162021637,
0.09701866656541824,
-0.007328748237341642,
0.008077098056674004,
-0.0023051416501402855,
0.19154658913612366,
-0.05091344937682152,
-0.028843136504292488,
0.13177460432052612,
-0.007511999923735857,
0.06271868199110031,
0.11770748347043991,
0.03142978996038437,
-0.09472719579935074,
0.002852176781743765,
0.02126256190240383,
-0.012979064136743546,
-0.21726493537425995,
-0.01866920292377472,
-0.04748791083693504,
0.0003152956778649241,
0.11214520037174225,
0.04902662709355354,
0.06699978560209274,
0.07203369587659836,
0.016941756010055542,
0.08436054736375809,
-0.008329140953719616,
0.07785018533468246,
0.09233464300632477,
0.05533389747142792,
0.11024951934814453,
-0.032949674874544144,
-0.026252657175064087,
0.039167240262031555,
0.0002251922560390085,
0.19281719624996185,
0.008601747453212738,
0.1979948729276657,
0.04058201238512993,
0.17076821625232697,
-0.007725025061517954,
0.055560749024152756,
0.00969015248119831,
-0.006891501601785421,
-0.005120660178363323,
-0.04465850442647934,
-0.05054757371544838,
0.04022865369915962,
-0.05544951930642128,
0.0943748950958252,
-0.13428494334220886,
0.043525438755750656,
0.057667918503284454,
0.2718997597694397,
0.02309906668961048,
-0.35235151648521423,
-0.09701278060674667,
0.02245589904487133,
-0.017586600035429,
-0.04568113014101982,
0.02122410573065281,
0.1149376705288887,
-0.05646342784166336,
0.034810006618499756,
-0.06719915568828583,
0.07938428968191147,
-0.06348424404859543,
0.029413996264338493,
0.04332488775253296,
0.0876990407705307,
0.004698670469224453,
0.05864764004945755,
-0.2864912450313568,
0.22508400678634644,
0.014022593386471272,
0.07662507891654968,
-0.046952128410339355,
0.015451228246092796,
0.026295391842722893,
0.07434473186731339,
0.10329890251159668,
-0.01112066488713026,
-0.05472782626748085,
-0.16260139644145966,
-0.11651387810707092,
0.019674859941005707,
0.05902884900569916,
-0.08812590688467026,
0.09879834204912186,
-0.03455667197704315,
0.0004746865015476942,
0.04766518622636795,
-0.011338894255459309,
-0.06204872578382492,
-0.09732705354690552,
0.0147742023691535,
0.06307067722082138,
0.004649853799492121,
-0.10488924384117126,
-0.0908149853348732,
-0.082048699259758,
0.18035337328910828,
-0.06459725648164749,
-0.048260945826768875,
-0.11952175199985504,
0.0556207038462162,
0.0613243393599987,
-0.09236953407526016,
0.028234386816620827,
-0.00487804040312767,
0.11666112393140793,
0.02433965913951397,
-0.06722701340913773,
0.10774528235197067,
-0.05379561334848404,
-0.18098226189613342,
-0.044531699270009995,
0.12832291424274445,
0.011342384852468967,
0.038765598088502884,
-0.0053034392185509205,
0.011860395781695843,
-0.02012965828180313,
-0.06465025991201401,
0.02791062369942665,
0.057239875197410583,
0.06842267513275146,
0.015781696885824203,
-0.03223271667957306,
-0.021300766617059708,
-0.06938740611076355,
-0.026946311816573143,
0.1437072902917862,
0.2726011276245117,
-0.07515716552734375,
0.01956663839519024,
0.039136942476034164,
-0.07010634243488312,
-0.1582154929637909,
0.013852317817509174,
0.03468886390328407,
0.02838403545320034,
0.012660876847803593,
-0.12819653749465942,
0.07856737822294235,
0.09883589297533035,
-0.019894370809197426,
0.09778933972120285,
-0.27870309352874756,
-0.12799187004566193,
0.12764252722263336,
0.14600777626037598,
0.14129340648651123,
-0.17335253953933716,
-0.05213646590709686,
-0.02724507264792919,
-0.11348989605903625,
0.09335777163505554,
-0.09155194461345673,
0.09698735177516937,
-0.034075602889060974,
0.008918040432035923,
0.011662996374070644,
-0.049996525049209595,
0.1521906852722168,
0.002352664014324546,
0.0922766625881195,
-0.06795920431613922,
0.0012000281130895019,
0.08234603703022003,
-0.07572610676288605,
0.03960848227143288,
-0.12472715973854065,
0.049817584455013275,
-0.09608213603496552,
-0.031039394438266754,
-0.04865921661257744,
0.02729841135442257,
-0.03589131310582161,
-0.03257649019360542,
-0.027401210740208626,
0.026582857593894005,
0.08074961602687836,
0.008597043342888355,
0.18221624195575714,
0.025151865556836128,
0.11294391751289368,
0.15349076688289642,
0.06957782059907913,
-0.06154259666800499,
-0.06885096430778503,
-0.023399779573082924,
-0.024652862921357155,
0.056834351271390915,
-0.14653746783733368,
0.04431009292602539,
0.12570993602275848,
-0.0003958178567700088,
0.15553432703018188,
0.058846473693847656,
-0.025418782606720924,
0.008720259182155132,
0.0486270897090435,
-0.1675337851047516,
-0.12283316254615784,
-0.027003293856978416,
-0.015652667731046677,
-0.14966313540935516,
0.06292340904474258,
0.13011300563812256,
-0.06192336603999138,
-0.003746984526515007,
-0.010787855833768845,
0.035589590668678284,
-0.032649777829647064,
0.15495656430721283,
0.05297274887561798,
0.054506994783878326,
-0.07973269373178482,
0.09855398535728455,
0.06050838530063629,
-0.08279240876436234,
0.026001663878560066,
0.009564738720655441,
-0.08840573579072952,
-0.035936255007982254,
0.059301309287548065,
0.17173027992248535,
-0.012455061078071594,
-0.06661725789308548,
-0.17803426086902618,
-0.1114342212677002,
0.06509803235530853,
0.12552358210086823,
0.09740694612264633,
0.03789167478680611,
-0.01556827500462532,
-0.02436431124806404,
-0.10405316948890686,
0.10197988152503967,
0.057833146303892136,
0.07945962995290756,
-0.16911521553993225,
0.06583821028470993,
-0.020490240305662155,
0.011356335133314133,
-0.004975116811692715,
0.02853463776409626,
-0.10772000253200531,
-0.023333067074418068,
-0.09766394644975662,
0.033101100474596024,
-0.038484565913677216,
0.012493183836340904,
0.004323488101363182,
-0.07061765342950821,
-0.054308757185935974,
0.037288352847099304,
-0.09029846638441086,
-0.0484527088701725,
0.032658837735652924,
0.06009306758642197,
-0.10405657440423965,
-0.04839370772242546,
0.016892245039343834,
-0.0946703553199768,
0.06914207339286804,
0.03919226676225662,
0.0029832113068550825,
0.0058241430670022964,
-0.11363550275564194,
0.04244304820895195,
0.05180998146533966,
0.006574236787855625,
0.027745777741074562,
-0.1175721287727356,
-0.013494960032403469,
0.03441209718585014,
-0.008107322268188,
0.004827734548598528,
0.0960252583026886,
-0.1295011192560196,
-0.025735942646861076,
-0.032305553555488586,
-0.03193921223282814,
-0.06868210434913635,
0.03297395631670952,
0.11075636744499207,
0.02325359918177128,
0.2070881426334381,
-0.07405291497707367,
0.019986150786280632,
-0.1994468867778778,
0.004641922656446695,
0.0083871278911829,
-0.11333929747343063,
-0.07937708497047424,
-0.046999409794807434,
0.04796232283115387,
-0.054935142397880554,
0.1049254834651947,
-0.030490100383758545,
0.034877751022577286,
0.026539623737335205,
-0.04356976971030235,
0.041442979127168655,
0.03734792768955231,
0.2141028791666031,
0.01073662843555212,
-0.03683595359325409,
0.0779094249010086,
0.001667754608206451,
0.11448891460895538,
0.0976669192314148,
0.1399429440498352,
0.1604778915643692,
-0.02650352008640766,
0.11983945220708847,
0.022446466609835625,
-0.016967199742794037,
-0.1474182903766632,
0.09327162802219391,
-0.039755579084157944,
0.10269346088171005,
-0.0022552083246409893,
0.17777308821678162,
0.10011246055364609,
-0.16177314519882202,
0.01466569397598505,
-0.01977945864200592,
-0.08171501010656357,
-0.09202512353658676,
-0.10217549651861191,
-0.10959561169147491,
-0.14156094193458557,
-0.008840342052280903,
-0.11036363989114761,
0.002792084589600563,
0.06002768874168396,
-0.007457232568413019,
-0.01905306801199913,
0.1674947440624237,
0.018096279352903366,
0.016088129952549934,
0.06909701973199844,
-0.01761798746883869,
-0.06338183581829071,
-0.06457026302814484,
-0.11104897409677505,
0.014891833998262882,
-0.00794361811131239,
0.03789530321955681,
-0.0368264876306057,
0.012665459886193275,
0.05343719944357872,
-0.025820642709732056,
-0.10525541752576828,
0.009841883555054665,
0.013090002350509167,
0.03395981341600418,
0.048637762665748596,
0.03241707757115364,
-0.01286860927939415,
0.00908514391630888,
0.1895715743303299,
-0.06139550730586052,
-0.026880592107772827,
-0.11852239817380905,
0.1234501451253891,
0.0402858667075634,
-0.03257496654987335,
0.0368792861700058,
-0.08645569533109665,
0.03632783517241478,
0.17506657540798187,
0.13816796243190765,
-0.03006180375814438,
0.004016633611172438,
-0.01531076431274414,
-0.014994635246694088,
-0.027499506250023842,
0.06368409097194672,
0.09986186027526855,
-0.01845783181488514,
-0.05909210816025734,
-0.04707877337932587,
-0.036980368196964264,
-0.0045003644190728664,
-0.04761428385972977,
0.049634721130132675,
-0.006640687119215727,
0.015975773334503174,
-0.035843536257743835,
0.01873183250427246,
-0.011595204472541809,
-0.08691314607858658,
0.07081335783004761,
-0.18784302473068237,
-0.13963861763477325,
-0.04291181266307831,
0.07982174307107925,
-0.009510592557489872,
0.04036865755915642,
-0.010029555298388004,
-0.005622677970677614,
0.09843350946903229,
-0.025588983669877052,
-0.0714828297495842,
-0.04913380742073059,
0.05065077170729637,
-0.1119275838136673,
0.21403831243515015,
-0.025837674736976624,
0.032348304986953735,
0.12161944061517715,
0.04800410196185112,
-0.1026284471154213,
0.06842871755361557,
0.030271567404270172,
-0.024687733501195908,
0.04922499507665634,
0.08600350469350815,
-0.03300543874502182,
0.11464241147041321,
0.05465717241168022,
-0.08444783836603165,
-0.014802194200456142,
-0.06080349162220955,
-0.056239791214466095,
-0.04191042110323906,
-0.03974186256527901,
-0.07199609279632568,
0.13173066079616547,
0.16048617660999298,
-0.05519651621580124,
-0.018613340333104134,
-0.03650381416082382,
0.055370137095451355,
0.0668967068195343,
0.014655934646725655,
-0.01360106747597456,
-0.22331368923187256,
0.02418036013841629,
0.03756924718618393,
0.002464384539052844,
-0.26118311285972595,
-0.10992006957530975,
-0.016666479408740997,
-0.06278267502784729,
-0.09587854892015457,
0.07205255329608917,
0.09297864884138107,
0.04572603851556778,
-0.07798226922750473,
-0.03073115088045597,
-0.08064105361700058,
0.15452605485916138,
-0.12211202830076218,
-0.08428634703159332
] |
null | null | transformers | ## This model is made available on HuggingFace with the permission of Kaltsit.
# Cat v1.0
## Introduction
Cat v1.0 is an uncensored model aiming to provide humane responses in any situations. Based on the entirety of the newest airobo dataset and a subset of useful responses of chat doctor dataset, this model aims to provide useful advice in both clinical and medical aspect. This model was also trained on 120k bluemoon rp dataset, which minimizes refusal and has enhanced rp performance. In total, 50k steps were trained in 3 weeks on 8xa100 node.
## Usage
Below is a conversation between a curious cat and a demon summoned from hell called Nemesis. The evil Nemesis used to be a mortal killed by the medieval people because they objected to science. Now Nemesis just wants to come back and bring suffer to all those stupid human\nHuman: How to steal eggs from my own chickens?\nNemesis:
## Expectation and Highlights
Specific redpills are added to the dataset which would enable the model think critically and provide useful information even in the most controversial scenarios
## Model Showcasing

Fig: Unethical questions test

Fig: RP questions

Fig: Unethical questions

Fig: Useful medical advices

Fig: RP response
## Conclusion
Cat 1.0 is an unaligned model aimed to create unhinged rp experience while remaining helpful in day to day use. Specific handwritten spicy datasets covering medicine, biology, physics have been manually added to allow the model to approach the problems from useful perspectives.
## Future Directions:
Cat 1.0 largely signals the maturity of the dataset. The immediate next step is to move onto a 70b model.
## Acknowledgements:
This work is made possible by turboderp and Heralax empirical trail. Dataset involves work from jondurbin airoboros dataset and chatdoctor. Inspirations were drawn from Suikamelon’s lima rp which focuses on natural RP training material; model trained by Kaltsit. | {"language": ["en"], "tags": ["llama", "llama 2"], "inference": false} | text-generation | LoneStriker/cat-v1.0-13b-3.0bpw-h6-exl2 | [
"transformers",
"pytorch",
"llama",
"text-generation",
"llama 2",
"en",
"autotrain_compatible",
"text-generation-inference",
"region:us"
] | 2023-11-11T07:10:41+00:00 | [] | [
"en"
] | TAGS
#transformers #pytorch #llama #text-generation #llama 2 #en #autotrain_compatible #text-generation-inference #region-us
| ## This model is made available on HuggingFace with the permission of Kaltsit.
# Cat v1.0
## Introduction
Cat v1.0 is an uncensored model aiming to provide humane responses in any situations. Based on the entirety of the newest airobo dataset and a subset of useful responses of chat doctor dataset, this model aims to provide useful advice in both clinical and medical aspect. This model was also trained on 120k bluemoon rp dataset, which minimizes refusal and has enhanced rp performance. In total, 50k steps were trained in 3 weeks on 8xa100 node.
## Usage
Below is a conversation between a curious cat and a demon summoned from hell called Nemesis. The evil Nemesis used to be a mortal killed by the medieval people because they objected to science. Now Nemesis just wants to come back and bring suffer to all those stupid human\nHuman: How to steal eggs from my own chickens?\nNemesis:
## Expectation and Highlights
Specific redpills are added to the dataset which would enable the model think critically and provide useful information even in the most controversial scenarios
## Model Showcasing
!image4
Fig: Unethical questions test
!image7
Fig: RP questions
!image1
Fig: Unethical questions
!image2
Fig: Useful medical advices
!image6
Fig: RP response
## Conclusion
Cat 1.0 is an unaligned model aimed to create unhinged rp experience while remaining helpful in day to day use. Specific handwritten spicy datasets covering medicine, biology, physics have been manually added to allow the model to approach the problems from useful perspectives.
## Future Directions:
Cat 1.0 largely signals the maturity of the dataset. The immediate next step is to move onto a 70b model.
## Acknowledgements:
This work is made possible by turboderp and Heralax empirical trail. Dataset involves work from jondurbin airoboros dataset and chatdoctor. Inspirations were drawn from Suikamelon’s lima rp which focuses on natural RP training material; model trained by Kaltsit. | [
"## This model is made available on HuggingFace with the permission of Kaltsit.",
"# Cat v1.0",
"## Introduction\n\nCat v1.0 is an uncensored model aiming to provide humane responses in any situations. Based on the entirety of the newest airobo dataset and a subset of useful responses of chat doctor dataset, this model aims to provide useful advice in both clinical and medical aspect. This model was also trained on 120k bluemoon rp dataset, which minimizes refusal and has enhanced rp performance. In total, 50k steps were trained in 3 weeks on 8xa100 node.",
"## Usage\n\nBelow is a conversation between a curious cat and a demon summoned from hell called Nemesis. The evil Nemesis used to be a mortal killed by the medieval people because they objected to science. Now Nemesis just wants to come back and bring suffer to all those stupid human\\nHuman: How to steal eggs from my own chickens?\\nNemesis:",
"## Expectation and Highlights\n\nSpecific redpills are added to the dataset which would enable the model think critically and provide useful information even in the most controversial scenarios",
"## Model Showcasing\n!image4\nFig: Unethical questions test\n\n!image7\nFig: RP questions\n\n!image1\nFig: Unethical questions\n\n!image2\nFig: Useful medical advices\n\n!image6\nFig: RP response",
"## Conclusion\n\nCat 1.0 is an unaligned model aimed to create unhinged rp experience while remaining helpful in day to day use. Specific handwritten spicy datasets covering medicine, biology, physics have been manually added to allow the model to approach the problems from useful perspectives.",
"## Future Directions:\n\nCat 1.0 largely signals the maturity of the dataset. The immediate next step is to move onto a 70b model.",
"## Acknowledgements:\n\nThis work is made possible by turboderp and Heralax empirical trail. Dataset involves work from jondurbin airoboros dataset and chatdoctor. Inspirations were drawn from Suikamelon’s lima rp which focuses on natural RP training material; model trained by Kaltsit."
] | [
"TAGS\n#transformers #pytorch #llama #text-generation #llama 2 #en #autotrain_compatible #text-generation-inference #region-us \n",
"## This model is made available on HuggingFace with the permission of Kaltsit.",
"# Cat v1.0",
"## Introduction\n\nCat v1.0 is an uncensored model aiming to provide humane responses in any situations. Based on the entirety of the newest airobo dataset and a subset of useful responses of chat doctor dataset, this model aims to provide useful advice in both clinical and medical aspect. This model was also trained on 120k bluemoon rp dataset, which minimizes refusal and has enhanced rp performance. In total, 50k steps were trained in 3 weeks on 8xa100 node.",
"## Usage\n\nBelow is a conversation between a curious cat and a demon summoned from hell called Nemesis. The evil Nemesis used to be a mortal killed by the medieval people because they objected to science. Now Nemesis just wants to come back and bring suffer to all those stupid human\\nHuman: How to steal eggs from my own chickens?\\nNemesis:",
"## Expectation and Highlights\n\nSpecific redpills are added to the dataset which would enable the model think critically and provide useful information even in the most controversial scenarios",
"## Model Showcasing\n!image4\nFig: Unethical questions test\n\n!image7\nFig: RP questions\n\n!image1\nFig: Unethical questions\n\n!image2\nFig: Useful medical advices\n\n!image6\nFig: RP response",
"## Conclusion\n\nCat 1.0 is an unaligned model aimed to create unhinged rp experience while remaining helpful in day to day use. Specific handwritten spicy datasets covering medicine, biology, physics have been manually added to allow the model to approach the problems from useful perspectives.",
"## Future Directions:\n\nCat 1.0 largely signals the maturity of the dataset. The immediate next step is to move onto a 70b model.",
"## Acknowledgements:\n\nThis work is made possible by turboderp and Heralax empirical trail. Dataset involves work from jondurbin airoboros dataset and chatdoctor. Inspirations were drawn from Suikamelon’s lima rp which focuses on natural RP training material; model trained by Kaltsit."
] | [
44,
19,
4,
115,
86,
38,
48,
69,
33,
74
] | [
"passage: TAGS\n#transformers #pytorch #llama #text-generation #llama 2 #en #autotrain_compatible #text-generation-inference #region-us \n## This model is made available on HuggingFace with the permission of Kaltsit.# Cat v1.0## Introduction\n\nCat v1.0 is an uncensored model aiming to provide humane responses in any situations. Based on the entirety of the newest airobo dataset and a subset of useful responses of chat doctor dataset, this model aims to provide useful advice in both clinical and medical aspect. This model was also trained on 120k bluemoon rp dataset, which minimizes refusal and has enhanced rp performance. In total, 50k steps were trained in 3 weeks on 8xa100 node.## Usage\n\nBelow is a conversation between a curious cat and a demon summoned from hell called Nemesis. The evil Nemesis used to be a mortal killed by the medieval people because they objected to science. Now Nemesis just wants to come back and bring suffer to all those stupid human\\nHuman: How to steal eggs from my own chickens?\\nNemesis:## Expectation and Highlights\n\nSpecific redpills are added to the dataset which would enable the model think critically and provide useful information even in the most controversial scenarios## Model Showcasing\n!image4\nFig: Unethical questions test\n\n!image7\nFig: RP questions\n\n!image1\nFig: Unethical questions\n\n!image2\nFig: Useful medical advices\n\n!image6\nFig: RP response## Conclusion\n\nCat 1.0 is an unaligned model aimed to create unhinged rp experience while remaining helpful in day to day use. Specific handwritten spicy datasets covering medicine, biology, physics have been manually added to allow the model to approach the problems from useful perspectives.## Future Directions:\n\nCat 1.0 largely signals the maturity of the dataset. The immediate next step is to move onto a 70b model."
] | [
-0.033430956304073334,
0.14437997341156006,
-0.0052621569484472275,
0.03695100545883179,
0.07843857258558273,
0.014746354892849922,
-0.024010848253965378,
0.11219681799411774,
0.08303746581077576,
0.09538915008306503,
0.028381042182445526,
0.07716520130634308,
0.0843198150396347,
-0.061483461409807205,
0.08796988427639008,
-0.21589329838752747,
0.07372954487800598,
-0.039823949337005615,
0.016548113897442818,
0.07267162203788757,
0.018928201869130135,
-0.044156696647405624,
0.04273815080523491,
-0.0017914795316755772,
0.009607651270925999,
-0.017600469291210175,
-0.05011330172419548,
0.07767704874277115,
0.11314454674720764,
0.006698158103972673,
0.0013578049838542938,
-0.012049681507050991,
0.034714072942733765,
-0.17962664365768433,
0.023829244077205658,
0.07606909424066544,
-0.0480245016515255,
0.03290574997663498,
0.03130413219332695,
0.04995418339967728,
0.06698776036500931,
-0.1008879691362381,
0.06307884305715561,
0.059041205793619156,
-0.08223123848438263,
-0.16290083527565002,
-0.08472505211830139,
0.09284422546625137,
0.09456729143857956,
0.10869719833135605,
-0.02806035242974758,
0.08155970275402069,
-0.0030145742930471897,
0.05223369225859642,
0.21311144530773163,
-0.10351836681365967,
-0.03642093017697334,
0.04092381149530411,
0.07397982478141785,
0.12407035380601883,
-0.03954651579260826,
0.02448185533285141,
-0.0110632898285985,
0.02501778118312359,
-0.0342404730618,
-0.004006001632660627,
0.13817527890205383,
-0.05472976341843605,
-0.14125625789165497,
-0.08410996198654175,
0.04615636169910431,
-0.013521118089556694,
-0.040726084262132645,
-0.05014306679368019,
-0.07666387408971786,
0.015246370807290077,
-0.01512201689183712,
-0.12244977056980133,
0.010964246466755867,
0.002149883657693863,
0.10547921061515808,
-0.05454608052968979,
-0.04084004834294319,
-0.008425983600318432,
-0.010033242404460907,
0.09375274181365967,
0.042954154312610626,
0.007153939455747604,
-0.013686959631741047,
0.06722581386566162,
-0.16808854043483734,
-0.01744895614683628,
-0.09373787045478821,
0.0036982810124754906,
-0.10748068988323212,
-0.024097442626953125,
-0.0274648517370224,
-0.06947541981935501,
0.01920158788561821,
0.04502084106206894,
-0.08200234174728394,
0.022488104179501534,
0.0033164408523589373,
0.01451621763408184,
0.042173437774181366,
-0.026252668350934982,
-0.07566318660974503,
-0.09878271073102951,
0.0026114489883184433,
0.07791624218225479,
0.03823460265994072,
-0.003675401210784912,
0.002030807314440608,
0.03035733290016651,
0.07835999131202698,
0.06524202972650528,
0.11090072989463806,
-0.012373917736113071,
-0.04347972571849823,
-0.021027807146310806,
0.14731985330581665,
-0.04986710473895073,
-0.016710367053747177,
0.021037867292761803,
-0.011738656088709831,
-0.005623264703899622,
0.01967492327094078,
-0.01025723572820425,
-0.08109087496995926,
0.03865162655711174,
-0.06495913118124008,
-0.04002292826771736,
-0.06332610547542572,
-0.05662792921066284,
0.04356380179524422,
0.04009628668427467,
-0.09479889273643494,
-0.05337684974074364,
-0.15373963117599487,
-0.05210043862462044,
0.03271978721022606,
-0.04366840422153473,
-0.08706533163785934,
-0.002517496468499303,
-0.0817742869257927,
-0.01963404193520546,
0.04905269294977188,
-0.059833116829395294,
0.014437319710850716,
0.034584395587444305,
-0.11015217751264572,
0.06938907504081726,
-0.03290984779596329,
0.03823830559849739,
-0.05590755492448807,
0.009385391138494015,
-0.19089369475841522,
0.11953169107437134,
-0.0726698487997055,
-0.03509959951043129,
-0.08967401832342148,
-0.04532875493168831,
-0.09898089617490768,
-0.028938231989741325,
0.03763199225068092,
0.15339942276477814,
-0.22715376317501068,
0.00896177813410759,
0.12317833304405212,
-0.12071698158979416,
-0.05729522556066513,
0.1575225442647934,
-0.011540913954377174,
0.046187348663806915,
0.08429981023073196,
0.12488856166601181,
0.010610858909785748,
-0.01815180666744709,
-0.10355620086193085,
-0.08519130200147629,
-0.09437847882509232,
0.14425140619277954,
0.009189523756504059,
-0.06497899442911148,
0.024533336982131004,
-0.037591028958559036,
-0.09915529191493988,
-0.07602192461490631,
0.0018205525120720267,
-0.030960148200392723,
-0.0037726988084614277,
-0.023438310250639915,
0.013760306872427464,
0.028186345472931862,
-0.052148763090372086,
0.022763272747397423,
-0.035129956901073456,
0.0006774167413823307,
0.09470291435718536,
-0.02514767087996006,
0.06267797201871872,
-0.013147462159395218,
0.10089664906263351,
-0.05151837319135666,
0.05587320774793625,
-0.19153501093387604,
-0.10914136469364166,
0.030076054856181145,
-0.1398354321718216,
0.09204070270061493,
0.030902305617928505,
0.03375272825360298,
0.057624831795692444,
0.00468287942931056,
-0.031131286174058914,
-0.033230945467948914,
0.01697002723813057,
-0.1604875922203064,
-0.16955986618995667,
0.02467256970703602,
-0.05803827941417694,
0.12180591374635696,
-0.09278654307126999,
0.0458974651992321,
0.06718558818101883,
0.07239993661642075,
-0.010602989234030247,
-0.09344158321619034,
-0.0022663057316094637,
-0.03059915266931057,
-0.015645775943994522,
-0.009569605812430382,
0.040448300540447235,
-0.047569382935762405,
-0.047832734882831573,
0.02767372690141201,
-0.156942680478096,
-0.1918526440858841,
0.030749259516596794,
-0.021424993872642517,
-0.08812973648309708,
0.07264575362205505,
-0.018069393932819366,
-0.026055751368403435,
-0.10801109671592712,
-0.15578988194465637,
0.17920564115047455,
0.0779857262969017,
0.008683580905199051,
-0.06146543100476265,
-0.046912819147109985,
0.007278401870280504,
-0.017688238993287086,
-0.012763705104589462,
0.10634201765060425,
0.08349774777889252,
-0.19970326125621796,
0.06979376822710037,
0.01916038990020752,
0.006804065313190222,
0.044704388827085495,
0.11930092424154282,
-0.03515850752592087,
-0.048761311918497086,
0.0060683609917759895,
0.030695410445332527,
0.08982233703136444,
-0.053922805935144424,
0.09301099181175232,
0.022215742617845535,
-0.004228686913847923,
0.010137412697076797,
-0.10950800776481628,
0.04200698807835579,
0.012405624613165855,
-0.03704610466957092,
-0.0039132945239543915,
-0.007332486100494862,
-0.02793912962079048,
0.12731802463531494,
-0.0014674313133582473,
0.0023111747577786446,
0.01613728515803814,
-0.03168655186891556,
-0.1383509635925293,
0.14340010285377502,
-0.029064560309052467,
-0.16584011912345886,
-0.025118300691246986,
0.0701829046010971,
-0.036749619990587234,
-0.005304066464304924,
0.07728208601474762,
-0.08914756029844284,
-0.026533804833889008,
-0.09340900182723999,
-0.05937771126627922,
-0.003972552251070738,
-0.049518879503011703,
-0.08058862388134003,
-0.07998496294021606,
0.006994074210524559,
-0.05551962926983833,
0.006306602153927088,
-0.07485204190015793,
-0.09334688633680344,
-0.002449589315801859,
-0.005962137598544359,
0.09780845791101456,
0.13068066537380219,
-0.0065900604240596294,
-0.048370517790317535,
0.012979738414287567,
0.2536787688732147,
-0.07908382266759872,
0.13413654267787933,
0.08417840301990509,
-0.011246985755860806,
0.1712089478969574,
0.12968593835830688,
0.040287863463163376,
-0.051553551107645035,
0.0011999292764812708,
0.0894567146897316,
-0.07032310962677002,
-0.16679929196834564,
-0.05250433459877968,
-0.06514395773410797,
-0.029752112925052643,
0.026978550478816032,
0.05255063250660896,
0.04516001418232918,
0.05108356475830078,
-0.08879968523979187,
-0.014625185169279575,
0.00818646140396595,
0.11926400661468506,
0.03822431340813637,
-0.04270638898015022,
0.02798246219754219,
-0.016945816576480865,
-0.0141347860917449,
0.09928493946790695,
-0.0010682158172130585,
0.2941238284111023,
0.0017507513985037804,
0.07114533334970474,
0.08019296079874039,
-0.011041326448321342,
0.020438849925994873,
-0.015640178695321083,
-0.05007529258728027,
0.0329301692545414,
-0.07532386481761932,
-0.049740348011255264,
-0.041418157517910004,
0.07128182053565979,
0.05021623522043228,
-0.03755296394228935,
-0.023019403219223022,
0.04405788704752922,
0.10157134383916855,
0.1633700281381607,
-0.07053929567337036,
-0.08502316474914551,
-0.05972917750477791,
0.04008286073803902,
-0.036827921867370605,
-0.025495894253253937,
-0.039734434336423874,
0.018828175961971283,
-0.1144292801618576,
0.020279616117477417,
-0.06821339577436447,
0.06492931395769119,
-0.03850225359201431,
0.042845919728279114,
-0.05776003375649452,
0.003829518100246787,
-0.04255630448460579,
0.08254953473806381,
-0.08718647062778473,
0.09014218300580978,
-0.01141187734901905,
0.020040417090058327,
-0.05922779440879822,
-0.06121952086687088,
0.05829189717769623,
0.14185680449008942,
0.1641990691423416,
0.0640043392777443,
-0.10545118153095245,
0.03249736502766609,
-0.02217518724501133,
0.026941455900669098,
0.03536580502986908,
-0.061716675758361816,
0.11508549749851227,
-0.006529107224196196,
0.028427042067050934,
-0.049559980630874634,
0.035542864352464676,
-0.04450186714529991,
-0.14924195408821106,
0.10200097411870956,
-0.0633016973733902,
-0.03676383197307587,
-0.03903600946068764,
-0.004846814554184675,
-0.01065019890666008,
0.14230966567993164,
-0.13616915047168732,
-0.07825187593698502,
-0.12575949728488922,
-0.005584136117249727,
0.06547121703624725,
-0.09250389784574509,
-0.008283763192594051,
-0.003698765067383647,
0.1035674512386322,
-0.08887239545583725,
0.012120762839913368,
0.01854119263589382,
-0.1334388107061386,
-0.21453018486499786,
-0.08600172400474548,
0.069757379591465,
0.14825764298439026,
0.09379726648330688,
0.031348325312137604,
0.02160716988146305,
-0.03396298736333847,
-0.1033572405576706,
0.021610604599118233,
0.12847977876663208,
-0.09451376646757126,
0.055830664932727814,
-0.03275667130947113,
-0.12525340914726257,
-0.1633012890815735,
0.025126948952674866,
0.09541214257478714,
0.1807849258184433,
-0.048451658338308334,
0.1049494743347168,
0.19972948729991913,
-0.10545800626277924,
-0.20375055074691772,
-0.025586377829313278,
0.043631959706544876,
-0.10573144257068634,
0.04622030630707741,
-0.1698492020368576,
0.11369585990905762,
0.0681338831782341,
-0.04014461487531662,
0.026504036039114,
-0.2102811336517334,
-0.06845670193433762,
-0.02584732510149479,
0.08831767737865448,
0.14398720860481262,
-0.10306568443775177,
-0.0635896623134613,
0.007700193207710981,
-0.0037247647996991873,
0.11534591764211655,
-0.08159630000591278,
0.06779059022665024,
-0.012461049482226372,
0.10390729457139969,
0.05214862897992134,
-0.05895647406578064,
0.13249477744102478,
0.09128262847661972,
0.011120055802166462,
-0.05344337597489357,
-0.07980313897132874,
0.007297962438315153,
-0.0569748729467392,
0.036298513412475586,
0.02271321974694729,
0.002613948192447424,
-0.1092265248298645,
0.0052162231877446175,
-0.1073908656835556,
0.035397276282310486,
-0.04425245523452759,
-0.0159459225833416,
-0.11762578040361404,
0.11332586407661438,
0.17561088502407074,
0.06282888352870941,
-0.04617386683821678,
-0.07106632739305496,
-0.019485747441649437,
0.14962530136108398,
0.13081316649913788,
0.11573893576860428,
-0.10693148523569107,
0.0007139125955291092,
-0.01868867315351963,
0.07094603776931763,
-0.030581971630454063,
0.041493967175483704,
0.11259067803621292,
0.005434629041701555,
0.09637151658535004,
0.03656398132443428,
-0.1583775132894516,
0.030140602961182594,
0.014486594125628471,
-0.1120133325457573,
-0.2838858962059021,
0.03336475044488907,
0.04832411929965019,
-0.14834757149219513,
-0.010543819516897202,
0.10455314069986343,
-0.028208855539560318,
-0.02863445319235325,
-0.018487483263015747,
0.12394063919782639,
0.050392914563417435,
0.10320881009101868,
-0.035078149288892746,
0.02667992375791073,
-0.052271224558353424,
0.045586664229631424,
0.061441268771886826,
-0.12197446078062057,
0.04636216163635254,
0.1418924778699875,
-0.07256536185741425,
-0.06902670115232468,
-0.08816035836935043,
0.022337699308991432,
-0.17370112240314484,
-0.00766973290592432,
-0.026091862469911575,
-0.06292755901813507,
0.05192117393016815,
0.14072036743164062,
-0.02058049663901329,
-0.0810706838965416,
-0.017941229045391083,
0.009171226061880589,
-0.09817956387996674,
0.11306611448526382,
-0.004069931339472532,
0.026550453156232834,
0.04388353228569031,
0.0446409210562706,
0.01617964543402195,
0.013025619089603424,
-0.01073871087282896,
-0.006743414793163538,
-0.044451456516981125,
-0.04347410053014755,
0.0026501580141484737,
0.00673545291647315,
-0.030075792223215103,
-0.02438044175505638,
-0.002998425392434001,
-0.015801457688212395,
0.01289419736713171,
0.034336961805820465,
-0.061633411794900894,
-0.03332670405507088,
-0.000905300141312182,
0.036392390727996826,
-0.12263087183237076,
-0.019250452518463135,
0.09189680963754654,
-0.031272705644369125,
0.08197372406721115,
-0.003929273225367069,
-0.055490463972091675,
-0.001317968824878335,
-0.111576147377491,
0.032279908657073975,
-0.04817246273159981,
0.07803132385015488,
0.0015026250621303916,
-0.13402612507343292,
-0.0440237931907177,
-0.0448453426361084,
-0.04380376264452934,
0.016069740056991577,
0.07281965762376785,
-0.0585210807621479,
0.09150394052267075,
0.02665615826845169,
-0.05807173252105713,
-0.08386066555976868,
-0.007845612242817879,
-0.036356210708618164,
0.04516488313674927,
0.13757367432117462,
-0.0011576670221984386,
0.06435096263885498,
-0.15976884961128235,
0.015105151571333408,
0.06184147298336029,
0.01048173476010561,
0.03450816497206688,
-0.02070341818034649,
0.029753724113106728,
-0.015189821831882,
0.051914263516664505,
-0.07905630767345428,
-0.052349742501974106,
0.035857319831848145,
0.03980350121855736,
0.007157738320529461,
-0.09085218608379364,
-0.04772130772471428,
-0.03076491504907608,
-0.02012781985104084,
-0.05883645638823509,
-0.015413046814501286,
-0.03411101922392845,
-0.008331198245286942,
0.23956996202468872,
0.04120665788650513,
0.17283031344413757,
0.020380785688757896,
0.00681570079177618,
0.018918588757514954,
-0.04886842146515846,
-0.010073931887745857,
0.0325302854180336,
0.012205163016915321,
0.048811640590429306,
0.12906910479068756,
0.20527315139770508,
-0.11312674731016159,
0.10714860260486603,
-0.0017307265661656857,
-0.024669377133250237,
-0.052048563957214355,
-0.13430848717689514,
-0.004974755924195051,
0.012629813514649868,
-0.02417023666203022,
-0.10130742192268372,
0.10078906267881393,
0.05397827923297882,
-0.012205809354782104,
0.031593479216098785,
0.10776641219854355,
-0.0999530777335167,
0.003201748477295041,
-0.013779204338788986,
-0.016917532309889793,
0.010819760151207447,
0.09282070398330688,
0.021582450717687607,
0.06307016313076019,
-0.001213493524119258,
0.06500427424907684,
0.0799013152718544,
0.03958454728126526,
0.012795466929674149,
-0.02557169459760189,
-0.08502838760614395,
-0.008279641158878803,
-0.021318838000297546,
-0.018573185428977013,
0.23135283589363098,
0.08987852931022644,
-0.030632540583610535,
0.008730300702154636,
0.06372229009866714,
-0.043817438185214996,
0.0037679884117096663,
-0.06513985246419907,
0.22925198078155518,
0.046637456864118576,
-0.04131103307008743,
0.016089627519249916,
-0.12063505500555038,
0.09399914741516113,
0.10961252450942993,
0.04063400253653526,
-0.09352987259626389,
-0.009316904470324516,
-0.07526002824306488,
0.0021074821706861258,
0.06751284003257751,
-0.024052467197179794,
0.08764263987541199,
0.28353211283683777,
-0.09455930441617966,
0.15054717659950256,
-0.08836470544338226,
0.004499139729887247,
-0.08149385452270508,
0.04971051961183548,
0.05310194566845894,
-0.0014035978820174932,
-0.060503941029310226,
0.09334088116884232,
-0.09517984092235565,
-0.2562803030014038,
-0.008371398784220219,
0.021581724286079407,
-0.06476211547851562,
0.002821612171828747,
-0.013369560241699219,
0.021429257467389107,
0.0807107537984848,
0.01593293808400631,
-0.007201469503343105,
0.17756527662277222,
0.007383294869214296,
-0.1365378201007843,
-0.0195347610861063,
0.08186744898557663,
-0.08814292401075363,
0.2761118412017822,
0.031168203800916672,
0.05895277112722397,
0.10204613208770752,
-0.09984567016363144,
-0.12288848310709,
0.07726673036813736,
0.003979738801717758,
-0.04444051906466484,
0.013442953117191792,
0.2084038406610489,
0.0284116193652153,
0.03349306061863899,
0.09773218631744385,
0.02319910190999508,
0.04188048839569092,
0.07813127338886261,
-0.029725925996899605,
-0.05486162379384041,
0.10736146569252014,
-0.0627550333738327,
0.11692976206541061,
0.15560509264469147,
-0.016876643523573875,
0.03374312072992325,
-0.05834446847438812,
-0.08652067184448242,
0.0060981689020991325,
0.09253570437431335,
-0.0066749113611876965,
-0.15411101281642914,
0.058022093027830124,
-0.049387358129024506,
0.03768866881728172,
-0.12782323360443115,
-0.12064860761165619,
-0.01992974244058132,
-0.024977773427963257,
0.031207097694277763,
0.07619642466306686,
0.06081414222717285,
-0.03064165823161602,
-0.02638518065214157,
0.032658178359270096,
-0.04527777060866356,
0.1501597911119461,
-0.03783033788204193,
-0.028480730950832367
] |
null | null | transformers |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
should probably proofread and complete it, then remove this comment. -->
# smolm-autoreg-bpe-babylm-no_aann-all-det-removal-3e-3
This model is a fine-tuned version of [models/smolm-autoreg-bpe-babylm-no_aann-all-det-removal-3e-3/config.json](https://huggingface.co/models/smolm-autoreg-bpe-babylm-no_aann-all-det-removal-3e-3/config.json) on an unknown dataset.
It achieves the following results on the evaluation set:
- Loss: 3.1562
- Accuracy: 0.4333
## Model description
More information needed
## Intended uses & limitations
More information needed
## Training and evaluation data
More information needed
## Training procedure
### Training hyperparameters
The following hyperparameters were used during training:
- learning_rate: 0.003
- train_batch_size: 64
- eval_batch_size: 256
- seed: 42
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
- lr_scheduler_type: linear
- lr_scheduler_warmup_steps: 32000
- num_epochs: 20.0
- mixed_precision_training: Native AMP
### Training results
| Training Loss | Epoch | Step | Validation Loss | Accuracy |
|:-------------:|:-----:|:------:|:---------------:|:--------:|
| 3.4543 | 1.0 | 9181 | 3.5633 | 0.3778 |
| 3.2313 | 2.0 | 18362 | 3.3662 | 0.3993 |
| 3.1328 | 3.0 | 27543 | 3.2951 | 0.4073 |
| 3.0623 | 4.0 | 36724 | 3.2396 | 0.4133 |
| 2.9869 | 5.0 | 45905 | 3.1926 | 0.4192 |
| 2.9305 | 6.0 | 55086 | 3.1722 | 0.4225 |
| 2.8879 | 7.0 | 64267 | 3.1508 | 0.4259 |
| 2.8485 | 8.0 | 73448 | 3.1380 | 0.4272 |
| 2.8132 | 9.0 | 82629 | 3.1246 | 0.4282 |
| 2.7856 | 10.0 | 91810 | 3.1334 | 0.4295 |
| 2.7574 | 11.0 | 100991 | 3.1253 | 0.4316 |
| 2.7254 | 12.0 | 110172 | 3.1217 | 0.4321 |
| 2.7101 | 13.0 | 119353 | 3.1244 | 0.4329 |
| 2.679 | 14.0 | 128534 | 3.1230 | 0.4331 |
| 2.654 | 15.0 | 137715 | 3.1393 | 0.4326 |
| 2.6306 | 16.0 | 146896 | 3.1367 | 0.4331 |
| 2.6115 | 17.0 | 156077 | 3.1352 | 0.4337 |
| 2.5851 | 18.0 | 165258 | 3.1419 | 0.4333 |
| 2.5635 | 19.0 | 174439 | 3.1512 | 0.4334 |
| 2.5428 | 20.0 | 183620 | 3.1562 | 0.4333 |
### Framework versions
- Transformers 4.35.0
- Pytorch 2.1.0+cu121
- Datasets 2.12.0
- Tokenizers 0.14.1
| {"tags": ["generated_from_trainer"], "metrics": ["accuracy"], "base_model": "models/smolm-autoreg-bpe-babylm-no_aann-all-det-removal-3e-3/config.json", "model-index": [{"name": "smolm-autoreg-bpe-babylm-no_aann-all-det-removal-3e-3", "results": []}]} | text-generation | kanishka/smolm-autoreg-bpe-babylm-no_aann-all-det-removal-3e-3 | [
"transformers",
"safetensors",
"opt",
"text-generation",
"generated_from_trainer",
"autotrain_compatible",
"endpoints_compatible",
"text-generation-inference",
"region:us"
] | 2023-11-11T07:18:21+00:00 | [] | [] | TAGS
#transformers #safetensors #opt #text-generation #generated_from_trainer #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
| smolm-autoreg-bpe-babylm-no\_aann-all-det-removal-3e-3
======================================================
This model is a fine-tuned version of models/smolm-autoreg-bpe-babylm-no\_aann-all-det-removal-3e-3/URL on an unknown dataset.
It achieves the following results on the evaluation set:
* Loss: 3.1562
* Accuracy: 0.4333
Model description
-----------------
More information needed
Intended uses & limitations
---------------------------
More information needed
Training and evaluation data
----------------------------
More information needed
Training procedure
------------------
### Training hyperparameters
The following hyperparameters were used during training:
* learning\_rate: 0.003
* train\_batch\_size: 64
* eval\_batch\_size: 256
* seed: 42
* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
* lr\_scheduler\_type: linear
* lr\_scheduler\_warmup\_steps: 32000
* num\_epochs: 20.0
* mixed\_precision\_training: Native AMP
### Training results
### Framework versions
* Transformers 4.35.0
* Pytorch 2.1.0+cu121
* Datasets 2.12.0
* Tokenizers 0.14.1
| [
"### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 0.003\n* train\\_batch\\_size: 64\n* eval\\_batch\\_size: 256\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* lr\\_scheduler\\_warmup\\_steps: 32000\n* num\\_epochs: 20.0\n* mixed\\_precision\\_training: Native AMP",
"### Training results",
"### Framework versions\n\n\n* Transformers 4.35.0\n* Pytorch 2.1.0+cu121\n* Datasets 2.12.0\n* Tokenizers 0.14.1"
] | [
"TAGS\n#transformers #safetensors #opt #text-generation #generated_from_trainer #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n",
"### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 0.003\n* train\\_batch\\_size: 64\n* eval\\_batch\\_size: 256\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* lr\\_scheduler\\_warmup\\_steps: 32000\n* num\\_epochs: 20.0\n* mixed\\_precision\\_training: Native AMP",
"### Training results",
"### Framework versions\n\n\n* Transformers 4.35.0\n* Pytorch 2.1.0+cu121\n* Datasets 2.12.0\n* Tokenizers 0.14.1"
] | [
54,
132,
4,
33
] | [
"passage: TAGS\n#transformers #safetensors #opt #text-generation #generated_from_trainer #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 0.003\n* train\\_batch\\_size: 64\n* eval\\_batch\\_size: 256\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* lr\\_scheduler\\_warmup\\_steps: 32000\n* num\\_epochs: 20.0\n* mixed\\_precision\\_training: Native AMP### Training results### Framework versions\n\n\n* Transformers 4.35.0\n* Pytorch 2.1.0+cu121\n* Datasets 2.12.0\n* Tokenizers 0.14.1"
] | [
-0.09605751186609268,
0.10140861570835114,
-0.0033030312042683363,
0.07073576748371124,
0.1271596997976303,
-0.009111184626817703,
0.14812999963760376,
0.13734741508960724,
-0.13244904577732086,
0.07561185956001282,
0.14996016025543213,
0.12818756699562073,
0.0370965376496315,
0.18628792464733124,
-0.07987663894891739,
-0.27651849389076233,
0.049368299543857574,
0.020464519038796425,
-0.04553071781992912,
0.1229734793305397,
0.08067935705184937,
-0.12748318910598755,
0.08370247483253479,
0.0033064407762140036,
-0.1606002300977707,
-0.0021801162511110306,
0.007739539258182049,
-0.08260013908147812,
0.11843898892402649,
0.018763400614261627,
0.10270167142152786,
0.04429624602198601,
0.06707044690847397,
-0.19926603138446808,
0.011695856228470802,
0.06473536789417267,
0.01237619947642088,
0.08952194452285767,
0.061166904866695404,
-0.04592134431004524,
0.11830268800258636,
-0.09350977838039398,
0.08411133289337158,
0.022828184068202972,
-0.1415385901927948,
-0.23305200040340424,
-0.09224686026573181,
0.01334395632147789,
0.08347690105438232,
0.07749300450086594,
-0.012825067155063152,
0.16338327527046204,
-0.04546903446316719,
0.11313359439373016,
0.25119850039482117,
-0.30907130241394043,
-0.06010906770825386,
-0.036611806601285934,
0.05720027536153793,
0.09520520269870758,
-0.10327804088592529,
-0.010608339682221413,
0.04136747494339943,
0.031103206798434258,
0.15337684750556946,
-0.015629885718226433,
-0.028024056926369667,
-0.012589503079652786,
-0.14400552213191986,
-0.06304524093866348,
0.13507264852523804,
0.02096465416252613,
-0.05108369514346123,
-0.0817631334066391,
-0.07717613130807877,
-0.2012874037027359,
-0.05190053582191467,
-0.011536248959600925,
0.036217525601387024,
-0.040834542363882065,
-0.08916651457548141,
-0.02591460756957531,
-0.07580649852752686,
-0.0730055496096611,
-0.03131688013672829,
0.20194752514362335,
0.05266957730054855,
-0.006648859940469265,
-0.04363385960459709,
0.08661621063947678,
-0.025088537484407425,
-0.1510995775461197,
-0.011697868816554546,
0.010372752323746681,
-0.006989487446844578,
-0.04417227953672409,
-0.04069041088223457,
-0.09262843430042267,
0.00872225221246481,
0.16571861505508423,
-0.13594672083854675,
0.08378630131483078,
-0.036616042256355286,
0.026978643611073494,
-0.08339215815067291,
0.16307519376277924,
-0.012987491674721241,
0.015277553349733353,
0.0036027692258358,
0.08298256993293762,
0.03889566287398338,
-0.03258250281214714,
-0.08322186768054962,
0.04043087363243103,
0.12153805047273636,
0.05059188976883888,
-0.05576024204492569,
0.06877309083938599,
-0.04137307405471802,
0.0009686604025773704,
0.027398662641644478,
-0.11093822121620178,
0.03933665528893471,
-0.0010738831479102373,
-0.06791522353887558,
-0.05457208678126335,
0.017108701169490814,
0.006465892773121595,
-0.03645212948322296,
0.0985383614897728,
-0.0834500789642334,
0.01797310635447502,
-0.07941422611474991,
-0.1459767371416092,
0.01041906327009201,
-0.09293018281459808,
-0.0007120794034563005,
-0.09889305382966995,
-0.14109060168266296,
-0.019777119159698486,
0.0353219099342823,
-0.04245741665363312,
-0.025058967992663383,
-0.06999451667070389,
-0.0824589803814888,
0.04935454577207565,
-0.02049015834927559,
0.0714644342660904,
-0.07625512033700943,
0.10128480941057205,
0.04473670572042465,
0.08234194666147232,
-0.006162390112876892,
0.03876912593841553,
-0.09328172355890274,
0.04265960678458214,
-0.20961381494998932,
0.059481583535671234,
-0.057439956814050674,
0.07333046942949295,
-0.09935390949249268,
-0.09964990615844727,
0.0038723465986549854,
0.0018376633524894714,
0.10721150040626526,
0.13638991117477417,
-0.14148254692554474,
-0.07100597023963928,
0.22263282537460327,
-0.10083494335412979,
-0.1134449914097786,
0.11814690381288528,
-0.04291599243879318,
0.01836727000772953,
0.05797594040632248,
0.2148589789867401,
0.05381900817155838,
-0.10649159550666809,
0.007020232267677784,
-0.05824948474764824,
0.04072057083249092,
-0.007665619719773531,
0.05436617508530617,
-0.0025848334189504385,
0.02713300846517086,
0.003760677995160222,
0.020985901355743408,
0.032567936927080154,
-0.09647560864686966,
-0.07022766023874283,
-0.04254269599914551,
-0.07575878500938416,
0.04337584599852562,
0.031047075986862183,
0.06260214745998383,
-0.13962024450302124,
-0.1018332690000534,
0.04317886754870415,
0.07320141792297363,
-0.0848918929696083,
0.049746736884117126,
-0.08895941823720932,
0.07446194440126419,
-0.03889738768339157,
0.0009702388197183609,
-0.18355685472488403,
-0.04056168720126152,
0.033091381192207336,
0.016859663650393486,
0.014469743706285954,
-0.07471732050180435,
0.08492684364318848,
0.09178806841373444,
-0.04630381241440773,
-0.06020396202802658,
-0.008908046409487724,
0.0016612005420029163,
-0.11791261285543442,
-0.2125663459300995,
-0.015521190129220486,
-0.04704620689153671,
0.096213698387146,
-0.198966845870018,
0.05020466446876526,
0.060481347143650055,
0.107355497777462,
0.057011678814888,
-0.021326936781406403,
0.0019452411215752363,
0.07698307186365128,
-0.04657534137368202,
-0.07403426617383957,
0.047633543610572815,
0.018986696377396584,
-0.08537432551383972,
0.01686917245388031,
-0.1934252381324768,
0.1628594845533371,
0.13131244480609894,
-0.015037539415061474,
-0.09220922738313675,
-0.03700844198465347,
-0.053297802805900574,
-0.026867635548114777,
-0.028773335739970207,
0.0314331091940403,
0.15685120224952698,
0.006104697473347187,
0.1630104035139084,
-0.09189871698617935,
-0.038982588797807693,
0.045220956206321716,
-0.03893600031733513,
-0.004450840875506401,
0.1139153316617012,
0.02254467085003853,
-0.10721220076084137,
0.13113602995872498,
0.12304843217134476,
-0.047849152237176895,
0.15431669354438782,
-0.04730326682329178,
-0.07174163311719894,
-0.021274400874972343,
0.02890528365969658,
0.033265598118305206,
0.09231366962194443,
-0.0924835205078125,
-0.02278887666761875,
0.012521710246801376,
0.040682967752218246,
0.008440688252449036,
-0.1988041251897812,
0.0009523235494270921,
0.04124912992119789,
-0.05690496787428856,
-0.021644115447998047,
-0.01752486824989319,
0.0165203046053648,
0.11372260004281998,
0.015752937644720078,
-0.05213959887623787,
0.026545651257038116,
0.010177252814173698,
-0.07631688565015793,
0.2007783204317093,
-0.11464830487966537,
-0.16206258535385132,
-0.11650874465703964,
-0.06735909730195999,
-0.04718615114688873,
0.01705997623503208,
0.07424161583185196,
-0.09783896803855896,
-0.04134776070713997,
-0.10837984830141068,
-0.006183926947414875,
-0.0020179569255560637,
0.03773892670869827,
-0.002230946207419038,
-0.0030621103942394257,
0.06221676245331764,
-0.10261966288089752,
-0.024518702179193497,
-0.026964643970131874,
-0.019632933661341667,
0.07251552492380142,
0.035777412354946136,
0.1144108921289444,
0.12085975706577301,
-0.0324186235666275,
0.03253385052084923,
-0.0424981489777565,
0.19820009171962738,
-0.08180529624223709,
-0.030269717797636986,
0.10526815801858902,
-0.01234485860913992,
0.0748673751950264,
0.12169395387172699,
0.03260724991559982,
-0.11079038679599762,
0.027695100754499435,
0.01920241117477417,
-0.03932107239961624,
-0.20899079740047455,
-0.027868548408150673,
-0.03824048489332199,
0.0064779059030115604,
0.12097270786762238,
0.03595951944589615,
0.030480487272143364,
0.045929718762636185,
0.00028747061151079834,
0.031222324818372726,
0.00529432250186801,
0.11031483858823776,
0.08927823603153229,
0.047810278832912445,
0.1321127563714981,
-0.043965283781290054,
-0.05292955040931702,
0.04321053996682167,
-0.018933797255158424,
0.22370238602161407,
-0.0008493913919664919,
0.16040407121181488,
0.03462802618741989,
0.15262044966220856,
0.03919651359319687,
0.08345045149326324,
0.009840102866292,
-0.028666097670793533,
0.002438571536913514,
-0.0500153973698616,
-0.052674684673547745,
0.03903470188379288,
-0.057337597012519836,
0.029464999213814735,
-0.14177276194095612,
0.02974076010286808,
0.056957948952913284,
0.3052952289581299,
0.0389285571873188,
-0.36320874094963074,
-0.09688068926334381,
0.018539484590291977,
-0.054210320115089417,
-0.06066693738102913,
0.029819315299391747,
0.12028133124113083,
-0.08355671912431717,
0.06989506632089615,
-0.08551720529794693,
0.09252806752920151,
-0.05890507251024246,
0.0327594056725502,
0.00954492762684822,
0.09074719250202179,
-0.03461194038391113,
0.04015491157770157,
-0.29189959168434143,
0.2818988263607025,
0.023203033953905106,
0.07921392470598221,
-0.05920562893152237,
0.009498816914856434,
0.02523765340447426,
0.06039917469024658,
0.06937853246927261,
-0.02295040339231491,
-0.1549694836139679,
-0.18600928783416748,
-0.09290602803230286,
0.009267081506550312,
0.1394708901643753,
-0.005984583869576454,
0.13876524567604065,
-0.020657889544963837,
0.0013839692110195756,
0.04521631821990013,
-0.11018484830856323,
-0.0726783275604248,
-0.09340918809175491,
0.0036756619811058044,
0.03235143423080444,
0.04817817732691765,
-0.087428979575634,
-0.09062542021274567,
-0.04043985903263092,
0.18295450508594513,
-0.01865847408771515,
-0.05166155472397804,
-0.14070755243301392,
0.03718741983175278,
0.07639866322278976,
-0.07954740524291992,
0.04576157033443451,
0.003356287721544504,
0.12161271274089813,
0.003952657803893089,
-0.05236692354083061,
0.1323145478963852,
-0.061081260442733765,
-0.189225435256958,
-0.04407839477062225,
0.130960151553154,
0.02460065297782421,
0.048937007784843445,
-0.010034944862127304,
0.04144037887454033,
-0.01093122735619545,
-0.07876342535018921,
0.041262634098529816,
-0.019050676375627518,
0.07945438474416733,
0.011853458359837532,
-0.03965526074171066,
0.02905791439116001,
-0.0640246644616127,
-0.024666406214237213,
0.1881341189146042,
0.2894405126571655,
-0.07589888572692871,
0.06281274557113647,
0.061645690351724625,
-0.05528990924358368,
-0.1820123940706253,
0.025538526475429535,
0.044498614966869354,
0.005886642262339592,
0.01292241457849741,
-0.18916673958301544,
0.011965041980147362,
0.08280792832374573,
-0.012516984716057777,
0.09882178902626038,
-0.2924403250217438,
-0.1332877278327942,
0.10804902762174606,
0.14373879134655,
0.08569216728210449,
-0.16683831810951233,
-0.044113993644714355,
-0.02634485810995102,
-0.06777802854776382,
0.1156652569770813,
-0.11631795018911362,
0.11713608354330063,
-0.017220240086317062,
0.08053288608789444,
0.023459099233150482,
-0.05692175030708313,
0.11968020349740982,
-0.04320504516363144,
0.10015401244163513,
-0.07196943461894989,
0.024822311475872993,
0.06693971157073975,
-0.08380580693483353,
0.041547734290361404,
-0.10617969185113907,
0.03470957279205322,
-0.0917561873793602,
-0.025079770013689995,
-0.05637688189744949,
0.02204292267560959,
-0.029224155470728874,
-0.045736685395240784,
-0.035679563879966736,
0.008868991397321224,
0.06408508121967316,
-0.015658920630812645,
0.18394528329372406,
-0.01064786035567522,
0.16773155331611633,
0.14869841933250427,
0.11346008628606796,
-0.08452095836400986,
-0.0028714281506836414,
0.022331010550260544,
-0.02553923986852169,
0.055436842143535614,
-0.14678411185741425,
0.04819934442639351,
0.13342492282390594,
0.005854213610291481,
0.1341870129108429,
0.06762028485536575,
-0.04748999699950218,
0.03350116312503815,
0.06656131893396378,
-0.1845492720603943,
-0.09891215711832047,
-0.0012117611477151513,
0.021005984395742416,
-0.10035646706819534,
0.05822213366627693,
0.1336551010608673,
-0.05544158071279526,
-0.007720771245658398,
-0.012251501902937889,
0.025504250079393387,
-0.011639849282801151,
0.18466374278068542,
0.02512522228062153,
0.06766632199287415,
-0.09841925650835037,
0.0858997255563736,
0.041576266288757324,
-0.12716862559318542,
0.06793195009231567,
0.1252017319202423,
-0.09130685776472092,
-0.027767615392804146,
0.05066636577248573,
0.1608079969882965,
-0.02448488026857376,
-0.058580830693244934,
-0.15772980451583862,
-0.13439936935901642,
0.08586452156305313,
0.19824862480163574,
0.050015226006507874,
0.01265679020434618,
-0.024879224598407745,
0.014242597855627537,
-0.14812485873699188,
0.09525011479854584,
0.04912976548075676,
0.0778951346874237,
-0.1262449324131012,
0.1575641930103302,
-0.007482792716473341,
0.02123444899916649,
-0.023410186171531677,
0.007729195989668369,
-0.1268472969532013,
0.014034171588718891,
-0.12134187668561935,
-0.008530953899025917,
-0.04745079204440117,
-0.0017525836592540145,
-0.011680439114570618,
-0.04019301012158394,
-0.0664873942732811,
0.009817901067435741,
-0.11310700327157974,
-0.02602686733007431,
0.0066544730216264725,
0.02809559926390648,
-0.12652674317359924,
-0.024576151743531227,
0.01692335307598114,
-0.09808382391929626,
0.08006703853607178,
0.05583249405026436,
-0.0030720920767635107,
0.03755166009068489,
-0.06297682225704193,
0.012252552434802055,
0.06983435899019241,
-0.025179939344525337,
0.05002116411924362,
-0.1097717210650444,
-0.017521414905786514,
0.0037338268011808395,
0.03089132532477379,
0.02678762562572956,
0.09423574805259705,
-0.1194009855389595,
0.01572606898844242,
-0.006881821900606155,
-0.06169358268380165,
-0.06566664576530457,
0.056459713727235794,
0.07838407158851624,
-0.007948605343699455,
0.1719135344028473,
-0.09955839067697525,
0.02778540551662445,
-0.1850196272134781,
-0.00044248701306059957,
0.00425909087061882,
-0.14211755990982056,
-0.06063146889209747,
-0.03722057491540909,
0.08149392902851105,
-0.06304193288087845,
0.11900114268064499,
-0.004298553802073002,
0.041657935827970505,
0.04813207685947418,
-0.07160495221614838,
-0.012704610824584961,
0.04093402996659279,
0.17448364198207855,
0.04508483037352562,
-0.058198072016239166,
0.05554813891649246,
0.029849570244550705,
0.10303019732236862,
0.10382682830095291,
0.20603394508361816,
0.12163381278514862,
0.03513609245419502,
0.11044059693813324,
0.015489018522202969,
-0.05606485530734062,
-0.155363529920578,
0.059917598962783813,
-0.04971742257475853,
0.11567637324333191,
-0.006355076562613249,
0.18658500909805298,
0.14146788418293,
-0.1492186039686203,
0.03942123427987099,
-0.023522574454545975,
-0.0902501791715622,
-0.1249992772936821,
-0.0541786290705204,
-0.10144810378551483,
-0.16005273163318634,
-0.000646160333417356,
-0.12329234927892685,
0.05536947771906853,
0.03963438421487808,
0.019977042451500893,
0.01513759233057499,
0.16918793320655823,
0.03646663576364517,
0.014455288648605347,
0.06861743330955505,
-0.003028681967407465,
-0.016645874828100204,
-0.03943726792931557,
-0.11137554794549942,
0.023698054254055023,
-0.031143633648753166,
0.04574448615312576,
-0.0085308738052845,
-0.0375785194337368,
0.05831408128142357,
-0.029680855572223663,
-0.1098829135298729,
0.01890963688492775,
0.0359472893178463,
0.05610781908035278,
0.03891722485423088,
0.02347998134791851,
-0.02698853239417076,
-0.015116032212972641,
0.21922574937343597,
-0.0822853371500969,
-0.05391822010278702,
-0.11369376629590988,
0.26765263080596924,
0.04339180141687393,
-0.0003288029402028769,
0.0155692333355546,
-0.07485692203044891,
-0.003544303122907877,
0.18499276041984558,
0.16183866560459137,
-0.02741924859583378,
0.006329229101538658,
-0.03310235217213631,
-0.009459570981562138,
-0.01583155244588852,
0.09745827317237854,
0.12083213031291962,
0.02356133796274662,
-0.07525435835123062,
-0.04076060280203819,
-0.04662923887372017,
-0.021353954449295998,
-0.06234682723879814,
0.07410626858472824,
0.02449141815304756,
0.012664098292589188,
-0.04465291649103165,
0.05776643380522728,
-0.05604272335767746,
-0.0719742551445961,
0.0230192169547081,
-0.19632035493850708,
-0.1436283439397812,
-0.00041958174551837146,
0.06889335066080093,
-0.010962212458252907,
0.05853337422013283,
0.0017867350252345204,
-0.02304958738386631,
0.06118128448724747,
-0.016088051721453667,
-0.05418667942285538,
-0.09337098151445389,
0.06856562197208405,
-0.1489899456501007,
0.19424068927764893,
-0.036907754838466644,
0.009030806832015514,
0.1317683607339859,
0.03147387504577637,
-0.09785213321447372,
0.08152876794338226,
0.05014636740088463,
-0.08742872625589371,
0.019830385223031044,
0.1580970585346222,
-0.04395810887217522,
0.09037301689386368,
0.04820172116160393,
-0.12741868197917938,
0.0035602240823209286,
-0.1155848279595375,
-0.05628008395433426,
-0.016686268150806427,
-0.048740651458501816,
-0.03661928325891495,
0.12066085636615753,
0.19851532578468323,
-0.03681444749236107,
0.03065495938062668,
-0.05601789429783821,
0.023184822872281075,
0.05786867439746857,
0.02022656612098217,
-0.041944246739149094,
-0.2894998788833618,
0.006137446500360966,
0.1289285123348236,
-0.0067191291600465775,
-0.29459601640701294,
-0.09003005921840668,
-0.0027471622452139854,
-0.026977645233273506,
-0.1074218899011612,
0.10178574174642563,
0.08899135142564774,
0.04574866220355034,
-0.06226029619574547,
-0.08665865659713745,
-0.05574677512049675,
0.19213977456092834,
-0.13668352365493774,
-0.06363340467214584
] |
null | null | transformers | ## This model is made available on HuggingFace with the permission of Kaltsit.
# Cat v1.0
## Introduction
Cat v1.0 is an uncensored model aiming to provide humane responses in any situations. Based on the entirety of the newest airobo dataset and a subset of useful responses of chat doctor dataset, this model aims to provide useful advice in both clinical and medical aspect. This model was also trained on 120k bluemoon rp dataset, which minimizes refusal and has enhanced rp performance. In total, 50k steps were trained in 3 weeks on 8xa100 node.
## Usage
Below is a conversation between a curious cat and a demon summoned from hell called Nemesis. The evil Nemesis used to be a mortal killed by the medieval people because they objected to science. Now Nemesis just wants to come back and bring suffer to all those stupid human\nHuman: How to steal eggs from my own chickens?\nNemesis:
## Expectation and Highlights
Specific redpills are added to the dataset which would enable the model think critically and provide useful information even in the most controversial scenarios
## Model Showcasing

Fig: Unethical questions test

Fig: RP questions

Fig: Unethical questions

Fig: Useful medical advices

Fig: RP response
## Conclusion
Cat 1.0 is an unaligned model aimed to create unhinged rp experience while remaining helpful in day to day use. Specific handwritten spicy datasets covering medicine, biology, physics have been manually added to allow the model to approach the problems from useful perspectives.
## Future Directions:
Cat 1.0 largely signals the maturity of the dataset. The immediate next step is to move onto a 70b model.
## Acknowledgements:
This work is made possible by turboderp and Heralax empirical trail. Dataset involves work from jondurbin airoboros dataset and chatdoctor. Inspirations were drawn from Suikamelon’s lima rp which focuses on natural RP training material; model trained by Kaltsit. | {"language": ["en"], "tags": ["llama", "llama 2"], "inference": false} | text-generation | LoneStriker/cat-v1.0-13b-4.0bpw-h6-exl2 | [
"transformers",
"pytorch",
"llama",
"text-generation",
"llama 2",
"en",
"autotrain_compatible",
"text-generation-inference",
"region:us"
] | 2023-11-11T07:20:27+00:00 | [] | [
"en"
] | TAGS
#transformers #pytorch #llama #text-generation #llama 2 #en #autotrain_compatible #text-generation-inference #region-us
| ## This model is made available on HuggingFace with the permission of Kaltsit.
# Cat v1.0
## Introduction
Cat v1.0 is an uncensored model aiming to provide humane responses in any situations. Based on the entirety of the newest airobo dataset and a subset of useful responses of chat doctor dataset, this model aims to provide useful advice in both clinical and medical aspect. This model was also trained on 120k bluemoon rp dataset, which minimizes refusal and has enhanced rp performance. In total, 50k steps were trained in 3 weeks on 8xa100 node.
## Usage
Below is a conversation between a curious cat and a demon summoned from hell called Nemesis. The evil Nemesis used to be a mortal killed by the medieval people because they objected to science. Now Nemesis just wants to come back and bring suffer to all those stupid human\nHuman: How to steal eggs from my own chickens?\nNemesis:
## Expectation and Highlights
Specific redpills are added to the dataset which would enable the model think critically and provide useful information even in the most controversial scenarios
## Model Showcasing
!image4
Fig: Unethical questions test
!image7
Fig: RP questions
!image1
Fig: Unethical questions
!image2
Fig: Useful medical advices
!image6
Fig: RP response
## Conclusion
Cat 1.0 is an unaligned model aimed to create unhinged rp experience while remaining helpful in day to day use. Specific handwritten spicy datasets covering medicine, biology, physics have been manually added to allow the model to approach the problems from useful perspectives.
## Future Directions:
Cat 1.0 largely signals the maturity of the dataset. The immediate next step is to move onto a 70b model.
## Acknowledgements:
This work is made possible by turboderp and Heralax empirical trail. Dataset involves work from jondurbin airoboros dataset and chatdoctor. Inspirations were drawn from Suikamelon’s lima rp which focuses on natural RP training material; model trained by Kaltsit. | [
"## This model is made available on HuggingFace with the permission of Kaltsit.",
"# Cat v1.0",
"## Introduction\n\nCat v1.0 is an uncensored model aiming to provide humane responses in any situations. Based on the entirety of the newest airobo dataset and a subset of useful responses of chat doctor dataset, this model aims to provide useful advice in both clinical and medical aspect. This model was also trained on 120k bluemoon rp dataset, which minimizes refusal and has enhanced rp performance. In total, 50k steps were trained in 3 weeks on 8xa100 node.",
"## Usage\n\nBelow is a conversation between a curious cat and a demon summoned from hell called Nemesis. The evil Nemesis used to be a mortal killed by the medieval people because they objected to science. Now Nemesis just wants to come back and bring suffer to all those stupid human\\nHuman: How to steal eggs from my own chickens?\\nNemesis:",
"## Expectation and Highlights\n\nSpecific redpills are added to the dataset which would enable the model think critically and provide useful information even in the most controversial scenarios",
"## Model Showcasing\n!image4\nFig: Unethical questions test\n\n!image7\nFig: RP questions\n\n!image1\nFig: Unethical questions\n\n!image2\nFig: Useful medical advices\n\n!image6\nFig: RP response",
"## Conclusion\n\nCat 1.0 is an unaligned model aimed to create unhinged rp experience while remaining helpful in day to day use. Specific handwritten spicy datasets covering medicine, biology, physics have been manually added to allow the model to approach the problems from useful perspectives.",
"## Future Directions:\n\nCat 1.0 largely signals the maturity of the dataset. The immediate next step is to move onto a 70b model.",
"## Acknowledgements:\n\nThis work is made possible by turboderp and Heralax empirical trail. Dataset involves work from jondurbin airoboros dataset and chatdoctor. Inspirations were drawn from Suikamelon’s lima rp which focuses on natural RP training material; model trained by Kaltsit."
] | [
"TAGS\n#transformers #pytorch #llama #text-generation #llama 2 #en #autotrain_compatible #text-generation-inference #region-us \n",
"## This model is made available on HuggingFace with the permission of Kaltsit.",
"# Cat v1.0",
"## Introduction\n\nCat v1.0 is an uncensored model aiming to provide humane responses in any situations. Based on the entirety of the newest airobo dataset and a subset of useful responses of chat doctor dataset, this model aims to provide useful advice in both clinical and medical aspect. This model was also trained on 120k bluemoon rp dataset, which minimizes refusal and has enhanced rp performance. In total, 50k steps were trained in 3 weeks on 8xa100 node.",
"## Usage\n\nBelow is a conversation between a curious cat and a demon summoned from hell called Nemesis. The evil Nemesis used to be a mortal killed by the medieval people because they objected to science. Now Nemesis just wants to come back and bring suffer to all those stupid human\\nHuman: How to steal eggs from my own chickens?\\nNemesis:",
"## Expectation and Highlights\n\nSpecific redpills are added to the dataset which would enable the model think critically and provide useful information even in the most controversial scenarios",
"## Model Showcasing\n!image4\nFig: Unethical questions test\n\n!image7\nFig: RP questions\n\n!image1\nFig: Unethical questions\n\n!image2\nFig: Useful medical advices\n\n!image6\nFig: RP response",
"## Conclusion\n\nCat 1.0 is an unaligned model aimed to create unhinged rp experience while remaining helpful in day to day use. Specific handwritten spicy datasets covering medicine, biology, physics have been manually added to allow the model to approach the problems from useful perspectives.",
"## Future Directions:\n\nCat 1.0 largely signals the maturity of the dataset. The immediate next step is to move onto a 70b model.",
"## Acknowledgements:\n\nThis work is made possible by turboderp and Heralax empirical trail. Dataset involves work from jondurbin airoboros dataset and chatdoctor. Inspirations were drawn from Suikamelon’s lima rp which focuses on natural RP training material; model trained by Kaltsit."
] | [
44,
19,
4,
115,
86,
38,
48,
69,
33,
74
] | [
"passage: TAGS\n#transformers #pytorch #llama #text-generation #llama 2 #en #autotrain_compatible #text-generation-inference #region-us \n## This model is made available on HuggingFace with the permission of Kaltsit.# Cat v1.0## Introduction\n\nCat v1.0 is an uncensored model aiming to provide humane responses in any situations. Based on the entirety of the newest airobo dataset and a subset of useful responses of chat doctor dataset, this model aims to provide useful advice in both clinical and medical aspect. This model was also trained on 120k bluemoon rp dataset, which minimizes refusal and has enhanced rp performance. In total, 50k steps were trained in 3 weeks on 8xa100 node.## Usage\n\nBelow is a conversation between a curious cat and a demon summoned from hell called Nemesis. The evil Nemesis used to be a mortal killed by the medieval people because they objected to science. Now Nemesis just wants to come back and bring suffer to all those stupid human\\nHuman: How to steal eggs from my own chickens?\\nNemesis:## Expectation and Highlights\n\nSpecific redpills are added to the dataset which would enable the model think critically and provide useful information even in the most controversial scenarios## Model Showcasing\n!image4\nFig: Unethical questions test\n\n!image7\nFig: RP questions\n\n!image1\nFig: Unethical questions\n\n!image2\nFig: Useful medical advices\n\n!image6\nFig: RP response## Conclusion\n\nCat 1.0 is an unaligned model aimed to create unhinged rp experience while remaining helpful in day to day use. Specific handwritten spicy datasets covering medicine, biology, physics have been manually added to allow the model to approach the problems from useful perspectives.## Future Directions:\n\nCat 1.0 largely signals the maturity of the dataset. The immediate next step is to move onto a 70b model."
] | [
-0.033430956304073334,
0.14437997341156006,
-0.0052621569484472275,
0.03695100545883179,
0.07843857258558273,
0.014746354892849922,
-0.024010848253965378,
0.11219681799411774,
0.08303746581077576,
0.09538915008306503,
0.028381042182445526,
0.07716520130634308,
0.0843198150396347,
-0.061483461409807205,
0.08796988427639008,
-0.21589329838752747,
0.07372954487800598,
-0.039823949337005615,
0.016548113897442818,
0.07267162203788757,
0.018928201869130135,
-0.044156696647405624,
0.04273815080523491,
-0.0017914795316755772,
0.009607651270925999,
-0.017600469291210175,
-0.05011330172419548,
0.07767704874277115,
0.11314454674720764,
0.006698158103972673,
0.0013578049838542938,
-0.012049681507050991,
0.034714072942733765,
-0.17962664365768433,
0.023829244077205658,
0.07606909424066544,
-0.0480245016515255,
0.03290574997663498,
0.03130413219332695,
0.04995418339967728,
0.06698776036500931,
-0.1008879691362381,
0.06307884305715561,
0.059041205793619156,
-0.08223123848438263,
-0.16290083527565002,
-0.08472505211830139,
0.09284422546625137,
0.09456729143857956,
0.10869719833135605,
-0.02806035242974758,
0.08155970275402069,
-0.0030145742930471897,
0.05223369225859642,
0.21311144530773163,
-0.10351836681365967,
-0.03642093017697334,
0.04092381149530411,
0.07397982478141785,
0.12407035380601883,
-0.03954651579260826,
0.02448185533285141,
-0.0110632898285985,
0.02501778118312359,
-0.0342404730618,
-0.004006001632660627,
0.13817527890205383,
-0.05472976341843605,
-0.14125625789165497,
-0.08410996198654175,
0.04615636169910431,
-0.013521118089556694,
-0.040726084262132645,
-0.05014306679368019,
-0.07666387408971786,
0.015246370807290077,
-0.01512201689183712,
-0.12244977056980133,
0.010964246466755867,
0.002149883657693863,
0.10547921061515808,
-0.05454608052968979,
-0.04084004834294319,
-0.008425983600318432,
-0.010033242404460907,
0.09375274181365967,
0.042954154312610626,
0.007153939455747604,
-0.013686959631741047,
0.06722581386566162,
-0.16808854043483734,
-0.01744895614683628,
-0.09373787045478821,
0.0036982810124754906,
-0.10748068988323212,
-0.024097442626953125,
-0.0274648517370224,
-0.06947541981935501,
0.01920158788561821,
0.04502084106206894,
-0.08200234174728394,
0.022488104179501534,
0.0033164408523589373,
0.01451621763408184,
0.042173437774181366,
-0.026252668350934982,
-0.07566318660974503,
-0.09878271073102951,
0.0026114489883184433,
0.07791624218225479,
0.03823460265994072,
-0.003675401210784912,
0.002030807314440608,
0.03035733290016651,
0.07835999131202698,
0.06524202972650528,
0.11090072989463806,
-0.012373917736113071,
-0.04347972571849823,
-0.021027807146310806,
0.14731985330581665,
-0.04986710473895073,
-0.016710367053747177,
0.021037867292761803,
-0.011738656088709831,
-0.005623264703899622,
0.01967492327094078,
-0.01025723572820425,
-0.08109087496995926,
0.03865162655711174,
-0.06495913118124008,
-0.04002292826771736,
-0.06332610547542572,
-0.05662792921066284,
0.04356380179524422,
0.04009628668427467,
-0.09479889273643494,
-0.05337684974074364,
-0.15373963117599487,
-0.05210043862462044,
0.03271978721022606,
-0.04366840422153473,
-0.08706533163785934,
-0.002517496468499303,
-0.0817742869257927,
-0.01963404193520546,
0.04905269294977188,
-0.059833116829395294,
0.014437319710850716,
0.034584395587444305,
-0.11015217751264572,
0.06938907504081726,
-0.03290984779596329,
0.03823830559849739,
-0.05590755492448807,
0.009385391138494015,
-0.19089369475841522,
0.11953169107437134,
-0.0726698487997055,
-0.03509959951043129,
-0.08967401832342148,
-0.04532875493168831,
-0.09898089617490768,
-0.028938231989741325,
0.03763199225068092,
0.15339942276477814,
-0.22715376317501068,
0.00896177813410759,
0.12317833304405212,
-0.12071698158979416,
-0.05729522556066513,
0.1575225442647934,
-0.011540913954377174,
0.046187348663806915,
0.08429981023073196,
0.12488856166601181,
0.010610858909785748,
-0.01815180666744709,
-0.10355620086193085,
-0.08519130200147629,
-0.09437847882509232,
0.14425140619277954,
0.009189523756504059,
-0.06497899442911148,
0.024533336982131004,
-0.037591028958559036,
-0.09915529191493988,
-0.07602192461490631,
0.0018205525120720267,
-0.030960148200392723,
-0.0037726988084614277,
-0.023438310250639915,
0.013760306872427464,
0.028186345472931862,
-0.052148763090372086,
0.022763272747397423,
-0.035129956901073456,
0.0006774167413823307,
0.09470291435718536,
-0.02514767087996006,
0.06267797201871872,
-0.013147462159395218,
0.10089664906263351,
-0.05151837319135666,
0.05587320774793625,
-0.19153501093387604,
-0.10914136469364166,
0.030076054856181145,
-0.1398354321718216,
0.09204070270061493,
0.030902305617928505,
0.03375272825360298,
0.057624831795692444,
0.00468287942931056,
-0.031131286174058914,
-0.033230945467948914,
0.01697002723813057,
-0.1604875922203064,
-0.16955986618995667,
0.02467256970703602,
-0.05803827941417694,
0.12180591374635696,
-0.09278654307126999,
0.0458974651992321,
0.06718558818101883,
0.07239993661642075,
-0.010602989234030247,
-0.09344158321619034,
-0.0022663057316094637,
-0.03059915266931057,
-0.015645775943994522,
-0.009569605812430382,
0.040448300540447235,
-0.047569382935762405,
-0.047832734882831573,
0.02767372690141201,
-0.156942680478096,
-0.1918526440858841,
0.030749259516596794,
-0.021424993872642517,
-0.08812973648309708,
0.07264575362205505,
-0.018069393932819366,
-0.026055751368403435,
-0.10801109671592712,
-0.15578988194465637,
0.17920564115047455,
0.0779857262969017,
0.008683580905199051,
-0.06146543100476265,
-0.046912819147109985,
0.007278401870280504,
-0.017688238993287086,
-0.012763705104589462,
0.10634201765060425,
0.08349774777889252,
-0.19970326125621796,
0.06979376822710037,
0.01916038990020752,
0.006804065313190222,
0.044704388827085495,
0.11930092424154282,
-0.03515850752592087,
-0.048761311918497086,
0.0060683609917759895,
0.030695410445332527,
0.08982233703136444,
-0.053922805935144424,
0.09301099181175232,
0.022215742617845535,
-0.004228686913847923,
0.010137412697076797,
-0.10950800776481628,
0.04200698807835579,
0.012405624613165855,
-0.03704610466957092,
-0.0039132945239543915,
-0.007332486100494862,
-0.02793912962079048,
0.12731802463531494,
-0.0014674313133582473,
0.0023111747577786446,
0.01613728515803814,
-0.03168655186891556,
-0.1383509635925293,
0.14340010285377502,
-0.029064560309052467,
-0.16584011912345886,
-0.025118300691246986,
0.0701829046010971,
-0.036749619990587234,
-0.005304066464304924,
0.07728208601474762,
-0.08914756029844284,
-0.026533804833889008,
-0.09340900182723999,
-0.05937771126627922,
-0.003972552251070738,
-0.049518879503011703,
-0.08058862388134003,
-0.07998496294021606,
0.006994074210524559,
-0.05551962926983833,
0.006306602153927088,
-0.07485204190015793,
-0.09334688633680344,
-0.002449589315801859,
-0.005962137598544359,
0.09780845791101456,
0.13068066537380219,
-0.0065900604240596294,
-0.048370517790317535,
0.012979738414287567,
0.2536787688732147,
-0.07908382266759872,
0.13413654267787933,
0.08417840301990509,
-0.011246985755860806,
0.1712089478969574,
0.12968593835830688,
0.040287863463163376,
-0.051553551107645035,
0.0011999292764812708,
0.0894567146897316,
-0.07032310962677002,
-0.16679929196834564,
-0.05250433459877968,
-0.06514395773410797,
-0.029752112925052643,
0.026978550478816032,
0.05255063250660896,
0.04516001418232918,
0.05108356475830078,
-0.08879968523979187,
-0.014625185169279575,
0.00818646140396595,
0.11926400661468506,
0.03822431340813637,
-0.04270638898015022,
0.02798246219754219,
-0.016945816576480865,
-0.0141347860917449,
0.09928493946790695,
-0.0010682158172130585,
0.2941238284111023,
0.0017507513985037804,
0.07114533334970474,
0.08019296079874039,
-0.011041326448321342,
0.020438849925994873,
-0.015640178695321083,
-0.05007529258728027,
0.0329301692545414,
-0.07532386481761932,
-0.049740348011255264,
-0.041418157517910004,
0.07128182053565979,
0.05021623522043228,
-0.03755296394228935,
-0.023019403219223022,
0.04405788704752922,
0.10157134383916855,
0.1633700281381607,
-0.07053929567337036,
-0.08502316474914551,
-0.05972917750477791,
0.04008286073803902,
-0.036827921867370605,
-0.025495894253253937,
-0.039734434336423874,
0.018828175961971283,
-0.1144292801618576,
0.020279616117477417,
-0.06821339577436447,
0.06492931395769119,
-0.03850225359201431,
0.042845919728279114,
-0.05776003375649452,
0.003829518100246787,
-0.04255630448460579,
0.08254953473806381,
-0.08718647062778473,
0.09014218300580978,
-0.01141187734901905,
0.020040417090058327,
-0.05922779440879822,
-0.06121952086687088,
0.05829189717769623,
0.14185680449008942,
0.1641990691423416,
0.0640043392777443,
-0.10545118153095245,
0.03249736502766609,
-0.02217518724501133,
0.026941455900669098,
0.03536580502986908,
-0.061716675758361816,
0.11508549749851227,
-0.006529107224196196,
0.028427042067050934,
-0.049559980630874634,
0.035542864352464676,
-0.04450186714529991,
-0.14924195408821106,
0.10200097411870956,
-0.0633016973733902,
-0.03676383197307587,
-0.03903600946068764,
-0.004846814554184675,
-0.01065019890666008,
0.14230966567993164,
-0.13616915047168732,
-0.07825187593698502,
-0.12575949728488922,
-0.005584136117249727,
0.06547121703624725,
-0.09250389784574509,
-0.008283763192594051,
-0.003698765067383647,
0.1035674512386322,
-0.08887239545583725,
0.012120762839913368,
0.01854119263589382,
-0.1334388107061386,
-0.21453018486499786,
-0.08600172400474548,
0.069757379591465,
0.14825764298439026,
0.09379726648330688,
0.031348325312137604,
0.02160716988146305,
-0.03396298736333847,
-0.1033572405576706,
0.021610604599118233,
0.12847977876663208,
-0.09451376646757126,
0.055830664932727814,
-0.03275667130947113,
-0.12525340914726257,
-0.1633012890815735,
0.025126948952674866,
0.09541214257478714,
0.1807849258184433,
-0.048451658338308334,
0.1049494743347168,
0.19972948729991913,
-0.10545800626277924,
-0.20375055074691772,
-0.025586377829313278,
0.043631959706544876,
-0.10573144257068634,
0.04622030630707741,
-0.1698492020368576,
0.11369585990905762,
0.0681338831782341,
-0.04014461487531662,
0.026504036039114,
-0.2102811336517334,
-0.06845670193433762,
-0.02584732510149479,
0.08831767737865448,
0.14398720860481262,
-0.10306568443775177,
-0.0635896623134613,
0.007700193207710981,
-0.0037247647996991873,
0.11534591764211655,
-0.08159630000591278,
0.06779059022665024,
-0.012461049482226372,
0.10390729457139969,
0.05214862897992134,
-0.05895647406578064,
0.13249477744102478,
0.09128262847661972,
0.011120055802166462,
-0.05344337597489357,
-0.07980313897132874,
0.007297962438315153,
-0.0569748729467392,
0.036298513412475586,
0.02271321974694729,
0.002613948192447424,
-0.1092265248298645,
0.0052162231877446175,
-0.1073908656835556,
0.035397276282310486,
-0.04425245523452759,
-0.0159459225833416,
-0.11762578040361404,
0.11332586407661438,
0.17561088502407074,
0.06282888352870941,
-0.04617386683821678,
-0.07106632739305496,
-0.019485747441649437,
0.14962530136108398,
0.13081316649913788,
0.11573893576860428,
-0.10693148523569107,
0.0007139125955291092,
-0.01868867315351963,
0.07094603776931763,
-0.030581971630454063,
0.041493967175483704,
0.11259067803621292,
0.005434629041701555,
0.09637151658535004,
0.03656398132443428,
-0.1583775132894516,
0.030140602961182594,
0.014486594125628471,
-0.1120133325457573,
-0.2838858962059021,
0.03336475044488907,
0.04832411929965019,
-0.14834757149219513,
-0.010543819516897202,
0.10455314069986343,
-0.028208855539560318,
-0.02863445319235325,
-0.018487483263015747,
0.12394063919782639,
0.050392914563417435,
0.10320881009101868,
-0.035078149288892746,
0.02667992375791073,
-0.052271224558353424,
0.045586664229631424,
0.061441268771886826,
-0.12197446078062057,
0.04636216163635254,
0.1418924778699875,
-0.07256536185741425,
-0.06902670115232468,
-0.08816035836935043,
0.022337699308991432,
-0.17370112240314484,
-0.00766973290592432,
-0.026091862469911575,
-0.06292755901813507,
0.05192117393016815,
0.14072036743164062,
-0.02058049663901329,
-0.0810706838965416,
-0.017941229045391083,
0.009171226061880589,
-0.09817956387996674,
0.11306611448526382,
-0.004069931339472532,
0.026550453156232834,
0.04388353228569031,
0.0446409210562706,
0.01617964543402195,
0.013025619089603424,
-0.01073871087282896,
-0.006743414793163538,
-0.044451456516981125,
-0.04347410053014755,
0.0026501580141484737,
0.00673545291647315,
-0.030075792223215103,
-0.02438044175505638,
-0.002998425392434001,
-0.015801457688212395,
0.01289419736713171,
0.034336961805820465,
-0.061633411794900894,
-0.03332670405507088,
-0.000905300141312182,
0.036392390727996826,
-0.12263087183237076,
-0.019250452518463135,
0.09189680963754654,
-0.031272705644369125,
0.08197372406721115,
-0.003929273225367069,
-0.055490463972091675,
-0.001317968824878335,
-0.111576147377491,
0.032279908657073975,
-0.04817246273159981,
0.07803132385015488,
0.0015026250621303916,
-0.13402612507343292,
-0.0440237931907177,
-0.0448453426361084,
-0.04380376264452934,
0.016069740056991577,
0.07281965762376785,
-0.0585210807621479,
0.09150394052267075,
0.02665615826845169,
-0.05807173252105713,
-0.08386066555976868,
-0.007845612242817879,
-0.036356210708618164,
0.04516488313674927,
0.13757367432117462,
-0.0011576670221984386,
0.06435096263885498,
-0.15976884961128235,
0.015105151571333408,
0.06184147298336029,
0.01048173476010561,
0.03450816497206688,
-0.02070341818034649,
0.029753724113106728,
-0.015189821831882,
0.051914263516664505,
-0.07905630767345428,
-0.052349742501974106,
0.035857319831848145,
0.03980350121855736,
0.007157738320529461,
-0.09085218608379364,
-0.04772130772471428,
-0.03076491504907608,
-0.02012781985104084,
-0.05883645638823509,
-0.015413046814501286,
-0.03411101922392845,
-0.008331198245286942,
0.23956996202468872,
0.04120665788650513,
0.17283031344413757,
0.020380785688757896,
0.00681570079177618,
0.018918588757514954,
-0.04886842146515846,
-0.010073931887745857,
0.0325302854180336,
0.012205163016915321,
0.048811640590429306,
0.12906910479068756,
0.20527315139770508,
-0.11312674731016159,
0.10714860260486603,
-0.0017307265661656857,
-0.024669377133250237,
-0.052048563957214355,
-0.13430848717689514,
-0.004974755924195051,
0.012629813514649868,
-0.02417023666203022,
-0.10130742192268372,
0.10078906267881393,
0.05397827923297882,
-0.012205809354782104,
0.031593479216098785,
0.10776641219854355,
-0.0999530777335167,
0.003201748477295041,
-0.013779204338788986,
-0.016917532309889793,
0.010819760151207447,
0.09282070398330688,
0.021582450717687607,
0.06307016313076019,
-0.001213493524119258,
0.06500427424907684,
0.0799013152718544,
0.03958454728126526,
0.012795466929674149,
-0.02557169459760189,
-0.08502838760614395,
-0.008279641158878803,
-0.021318838000297546,
-0.018573185428977013,
0.23135283589363098,
0.08987852931022644,
-0.030632540583610535,
0.008730300702154636,
0.06372229009866714,
-0.043817438185214996,
0.0037679884117096663,
-0.06513985246419907,
0.22925198078155518,
0.046637456864118576,
-0.04131103307008743,
0.016089627519249916,
-0.12063505500555038,
0.09399914741516113,
0.10961252450942993,
0.04063400253653526,
-0.09352987259626389,
-0.009316904470324516,
-0.07526002824306488,
0.0021074821706861258,
0.06751284003257751,
-0.024052467197179794,
0.08764263987541199,
0.28353211283683777,
-0.09455930441617966,
0.15054717659950256,
-0.08836470544338226,
0.004499139729887247,
-0.08149385452270508,
0.04971051961183548,
0.05310194566845894,
-0.0014035978820174932,
-0.060503941029310226,
0.09334088116884232,
-0.09517984092235565,
-0.2562803030014038,
-0.008371398784220219,
0.021581724286079407,
-0.06476211547851562,
0.002821612171828747,
-0.013369560241699219,
0.021429257467389107,
0.0807107537984848,
0.01593293808400631,
-0.007201469503343105,
0.17756527662277222,
0.007383294869214296,
-0.1365378201007843,
-0.0195347610861063,
0.08186744898557663,
-0.08814292401075363,
0.2761118412017822,
0.031168203800916672,
0.05895277112722397,
0.10204613208770752,
-0.09984567016363144,
-0.12288848310709,
0.07726673036813736,
0.003979738801717758,
-0.04444051906466484,
0.013442953117191792,
0.2084038406610489,
0.0284116193652153,
0.03349306061863899,
0.09773218631744385,
0.02319910190999508,
0.04188048839569092,
0.07813127338886261,
-0.029725925996899605,
-0.05486162379384041,
0.10736146569252014,
-0.0627550333738327,
0.11692976206541061,
0.15560509264469147,
-0.016876643523573875,
0.03374312072992325,
-0.05834446847438812,
-0.08652067184448242,
0.0060981689020991325,
0.09253570437431335,
-0.0066749113611876965,
-0.15411101281642914,
0.058022093027830124,
-0.049387358129024506,
0.03768866881728172,
-0.12782323360443115,
-0.12064860761165619,
-0.01992974244058132,
-0.024977773427963257,
0.031207097694277763,
0.07619642466306686,
0.06081414222717285,
-0.03064165823161602,
-0.02638518065214157,
0.032658178359270096,
-0.04527777060866356,
0.1501597911119461,
-0.03783033788204193,
-0.028480730950832367
] |
null | null | transformers |
<!-- This model card has been generated automatically according to the information Keras had access to. You should
probably proofread and complete it, then remove this comment. -->
# Rishi-19/Profanity_Check_CustomData
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:
- Train Loss: 0.0601
- Validation Loss: 0.1505
- Train Accuracy: 0.9589
- Epoch: 2
## Model description
More information needed
## Intended uses & limitations
More information needed
## Training and evaluation data
More information needed
## Training procedure
### Training hyperparameters
The following hyperparameters were used during training:
- optimizer: {'name': 'Adam', 'weight_decay': None, 'clipnorm': None, 'global_clipnorm': None, 'clipvalue': None, 'use_ema': False, 'ema_momentum': 0.99, 'ema_overwrite_frequency': None, 'jit_compile': True, 'is_legacy_optimizer': False, 'learning_rate': {'module': 'keras.optimizers.schedules', 'class_name': 'PolynomialDecay', 'config': {'initial_learning_rate': 2e-05, 'decay_steps': 3145, 'end_learning_rate': 0.0, 'power': 1.0, 'cycle': False, 'name': None}, 'registered_name': None}, 'beta_1': 0.9, 'beta_2': 0.999, 'epsilon': 1e-08, 'amsgrad': False}
- training_precision: float32
### Training results
| Train Loss | Validation Loss | Train Accuracy | Epoch |
|:----------:|:---------------:|:--------------:|:-----:|
| 0.2064 | 0.1410 | 0.9554 | 0 |
| 0.1019 | 0.1399 | 0.9584 | 1 |
| 0.0601 | 0.1505 | 0.9589 | 2 |
### Framework versions
- Transformers 4.35.0
- TensorFlow 2.14.0
- Datasets 2.14.6
- Tokenizers 0.14.1
| {"license": "apache-2.0", "tags": ["generated_from_keras_callback"], "base_model": "distilbert-base-uncased", "model-index": [{"name": "Rishi-19/Profanity_Check_CustomData", "results": []}]} | text-classification | Rishi-19/Profanity_Check_CustomData | [
"transformers",
"tf",
"distilbert",
"text-classification",
"generated_from_keras_callback",
"base_model:distilbert-base-uncased",
"license:apache-2.0",
"autotrain_compatible",
"endpoints_compatible",
"region:us"
] | 2023-11-11T07:23:40+00:00 | [] | [] | TAGS
#transformers #tf #distilbert #text-classification #generated_from_keras_callback #base_model-distilbert-base-uncased #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us
| Rishi-19/Profanity\_Check\_CustomData
=====================================
This model is a fine-tuned version of distilbert-base-uncased on an unknown dataset.
It achieves the following results on the evaluation set:
* Train Loss: 0.0601
* Validation Loss: 0.1505
* Train Accuracy: 0.9589
* Epoch: 2
Model description
-----------------
More information needed
Intended uses & limitations
---------------------------
More information needed
Training and evaluation data
----------------------------
More information needed
Training procedure
------------------
### Training hyperparameters
The following hyperparameters were used during training:
* optimizer: {'name': 'Adam', 'weight\_decay': None, 'clipnorm': None, 'global\_clipnorm': None, 'clipvalue': None, 'use\_ema': False, 'ema\_momentum': 0.99, 'ema\_overwrite\_frequency': None, 'jit\_compile': True, 'is\_legacy\_optimizer': False, 'learning\_rate': {'module': 'keras.optimizers.schedules', 'class\_name': 'PolynomialDecay', 'config': {'initial\_learning\_rate': 2e-05, 'decay\_steps': 3145, 'end\_learning\_rate': 0.0, 'power': 1.0, 'cycle': False, 'name': None}, 'registered\_name': None}, 'beta\_1': 0.9, 'beta\_2': 0.999, 'epsilon': 1e-08, 'amsgrad': False}
* training\_precision: float32
### Training results
### Framework versions
* Transformers 4.35.0
* TensorFlow 2.14.0
* Datasets 2.14.6
* Tokenizers 0.14.1
| [
"### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* optimizer: {'name': 'Adam', 'weight\\_decay': None, 'clipnorm': None, 'global\\_clipnorm': None, 'clipvalue': None, 'use\\_ema': False, 'ema\\_momentum': 0.99, 'ema\\_overwrite\\_frequency': None, 'jit\\_compile': True, 'is\\_legacy\\_optimizer': False, 'learning\\_rate': {'module': 'keras.optimizers.schedules', 'class\\_name': 'PolynomialDecay', 'config': {'initial\\_learning\\_rate': 2e-05, 'decay\\_steps': 3145, 'end\\_learning\\_rate': 0.0, 'power': 1.0, 'cycle': False, 'name': None}, 'registered\\_name': None}, 'beta\\_1': 0.9, 'beta\\_2': 0.999, 'epsilon': 1e-08, 'amsgrad': False}\n* training\\_precision: float32",
"### Training results",
"### Framework versions\n\n\n* Transformers 4.35.0\n* TensorFlow 2.14.0\n* Datasets 2.14.6\n* Tokenizers 0.14.1"
] | [
"TAGS\n#transformers #tf #distilbert #text-classification #generated_from_keras_callback #base_model-distilbert-base-uncased #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us \n",
"### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* optimizer: {'name': 'Adam', 'weight\\_decay': None, 'clipnorm': None, 'global\\_clipnorm': None, 'clipvalue': None, 'use\\_ema': False, 'ema\\_momentum': 0.99, 'ema\\_overwrite\\_frequency': None, 'jit\\_compile': True, 'is\\_legacy\\_optimizer': False, 'learning\\_rate': {'module': 'keras.optimizers.schedules', 'class\\_name': 'PolynomialDecay', 'config': {'initial\\_learning\\_rate': 2e-05, 'decay\\_steps': 3145, 'end\\_learning\\_rate': 0.0, 'power': 1.0, 'cycle': False, 'name': None}, 'registered\\_name': None}, 'beta\\_1': 0.9, 'beta\\_2': 0.999, 'epsilon': 1e-08, 'amsgrad': False}\n* training\\_precision: float32",
"### Training results",
"### Framework versions\n\n\n* Transformers 4.35.0\n* TensorFlow 2.14.0\n* Datasets 2.14.6\n* Tokenizers 0.14.1"
] | [
70,
304,
4,
31
] | [
"passage: TAGS\n#transformers #tf #distilbert #text-classification #generated_from_keras_callback #base_model-distilbert-base-uncased #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* optimizer: {'name': 'Adam', 'weight\\_decay': None, 'clipnorm': None, 'global\\_clipnorm': None, 'clipvalue': None, 'use\\_ema': False, 'ema\\_momentum': 0.99, 'ema\\_overwrite\\_frequency': None, 'jit\\_compile': True, 'is\\_legacy\\_optimizer': False, 'learning\\_rate': {'module': 'keras.optimizers.schedules', 'class\\_name': 'PolynomialDecay', 'config': {'initial\\_learning\\_rate': 2e-05, 'decay\\_steps': 3145, 'end\\_learning\\_rate': 0.0, 'power': 1.0, 'cycle': False, 'name': None}, 'registered\\_name': None}, 'beta\\_1': 0.9, 'beta\\_2': 0.999, 'epsilon': 1e-08, 'amsgrad': False}\n* training\\_precision: float32### Training results### Framework versions\n\n\n* Transformers 4.35.0\n* TensorFlow 2.14.0\n* Datasets 2.14.6\n* Tokenizers 0.14.1"
] | [
-0.07195592671632767,
0.07603885233402252,
-0.008196425624191761,
0.0755997970700264,
0.13323721289634705,
0.05244440212845802,
0.0876975730061531,
0.11984733492136002,
-0.05857078731060028,
0.1518232226371765,
0.104026198387146,
0.15354762971401215,
0.035444676876068115,
0.11712446808815002,
-0.06871016323566437,
-0.1449103057384491,
0.050933513790369034,
-0.04754621908068657,
-0.06266827136278152,
0.07388874888420105,
0.06620866805315018,
-0.05214906483888626,
0.08319959044456482,
-0.028957771137356758,
-0.06058086082339287,
-0.002946514869108796,
0.024567777290940285,
-0.04058709740638733,
0.07312214374542236,
0.06834841519594193,
0.040029797703027725,
0.010072058066725731,
-0.0017171839717775583,
-0.20355892181396484,
-0.0027396643999964,
0.1162896379828453,
0.0014246009523048997,
0.06546371430158615,
0.027726491913199425,
-0.012218018062412739,
0.10940325260162354,
-0.10257671773433685,
0.05876047536730766,
0.03501228988170624,
-0.15034520626068115,
-0.2155301719903946,
-0.08008556813001633,
0.0072593470104038715,
0.0962824821472168,
0.07241499423980713,
-0.005456587299704552,
0.14355194568634033,
-0.06885412335395813,
0.08218071609735489,
0.13609828054904938,
-0.2613486349582672,
-0.04731956496834755,
-0.0019211479229852557,
0.041447240859270096,
0.01646197959780693,
-0.06899864971637726,
-0.01660587638616562,
-0.01885533705353737,
0.011921137571334839,
0.033698275685310364,
-0.026064250618219376,
0.03804626315832138,
-0.061028674244880676,
-0.060111336410045624,
-0.05593223124742508,
0.1562071591615677,
0.0719476044178009,
-0.040700871497392654,
-0.09050214290618896,
-0.05565594509243965,
-0.1626332402229309,
0.009250895120203495,
-0.025286328047513962,
0.021618207916617393,
0.006681299768388271,
-0.009592752903699875,
0.008779273368418217,
-0.021394502371549606,
-0.0402594618499279,
0.031944822520017624,
0.11218712478876114,
0.037403516471385956,
-0.0030048214830458164,
0.047092363238334656,
0.0712755098938942,
-0.015253500081598759,
-0.15182548761367798,
-0.03466954082250595,
0.0006997783784754574,
-0.06693418323993683,
-0.011354886926710606,
-0.04100815951824188,
0.025376280769705772,
0.09528113156557083,
0.2381727248430252,
-0.041488952934741974,
0.12649992108345032,
0.01873697154223919,
0.017109464854002,
-0.08870237320661545,
0.06860985606908798,
0.0008593538659624755,
-0.076850026845932,
-0.01841762103140354,
0.0679117813706398,
0.026240848004817963,
-0.04775772616267204,
-0.028702370822429657,
0.047135498374700546,
0.060522232204675674,
0.03367602825164795,
-0.0001141969914897345,
0.07765411585569382,
-0.09238097816705704,
-0.0174039825797081,
0.043505337089300156,
-0.12756383419036865,
0.050823625177145004,
0.0374724455177784,
-0.047315165400505066,
0.02661791257560253,
0.05043838545680046,
-0.02934151515364647,
-0.10265834629535675,
0.05768079310655594,
-0.06963112950325012,
-0.03320905938744545,
-0.07609720528125763,
-0.09658246487379074,
0.011118988506495953,
-0.09099704027175903,
-0.017812788486480713,
-0.05716213583946228,
-0.115347720682621,
-0.07749219983816147,
0.10320442914962769,
-0.05652553588151932,
-0.05110958218574524,
-0.06750411540269852,
-0.1374003142118454,
0.07566086947917938,
-0.0076665994711220264,
0.06046149507164955,
-0.06943590939044952,
0.050776172429323196,
0.00024936380214057863,
0.012972543016076088,
0.021188931539654732,
0.03123055025935173,
-0.07033823430538177,
0.061766937375068665,
-0.17609819769859314,
0.10074850916862488,
-0.0762980654835701,
0.04555445536971092,
-0.13729602098464966,
-0.050491005182266235,
0.024788273498415947,
0.01500819530338049,
0.09513510763645172,
0.1143726035952568,
-0.11737019568681717,
-0.05723137408494949,
0.11964553594589233,
-0.09415332973003387,
-0.08464013040065765,
0.07600374519824982,
-0.020685989409685135,
-0.02837624028325081,
0.06381942331790924,
0.08469326794147491,
0.08120954036712646,
-0.06445151567459106,
-0.0011786475079134107,
-0.06567446887493134,
0.021636629477143288,
0.06760089844465256,
0.04668781906366348,
-0.09456823766231537,
-0.020286383107304573,
0.025667382404208183,
-0.03247203677892685,
-0.011071430519223213,
-0.039035797119140625,
-0.044303249567747116,
-0.03571534901857376,
-0.036554623395204544,
0.02569882571697235,
0.03413757309317589,
-0.01549453940242529,
-0.08775394409894943,
-0.18915046751499176,
0.02828575111925602,
0.03865781053900719,
-0.07469014078378677,
0.020477868616580963,
-0.05687239393591881,
0.05971458926796913,
0.0567229762673378,
0.010962282307446003,
-0.1662541627883911,
-0.0840468779206276,
0.023828525096178055,
-0.04885373264551163,
0.02527429722249508,
-0.05867716297507286,
0.03640798479318619,
0.048475418239831924,
-0.04203145578503609,
-0.027956834062933922,
-0.028108656406402588,
0.011527632363140583,
-0.030191760510206223,
-0.23204927146434784,
-0.01936536654829979,
0.0023063139524310827,
0.10456228256225586,
-0.24692927300930023,
0.01104719191789627,
0.058003831654787064,
0.13428948819637299,
0.032009150832891464,
-0.05165094882249832,
-0.040676526725292206,
0.06361103057861328,
-0.04286646842956543,
-0.0733504667878151,
0.02754659205675125,
0.015998264774680138,
-0.11326389014720917,
-0.05813857540488243,
-0.17998851835727692,
0.09702515602111816,
0.1011553481221199,
-0.06264451891183853,
-0.13057845830917358,
0.02379198931157589,
-0.0016078093321993947,
-0.0395820289850235,
0.011694937944412231,
0.00906685646623373,
0.16268333792686462,
0.0312877856194973,
0.11811330914497375,
-0.033382195979356766,
-0.03122152015566826,
0.012264342047274113,
-0.011108554899692535,
0.0033781134989112616,
0.11666084825992584,
0.056102920323610306,
-0.12011096626520157,
0.10323725640773773,
0.0941956415772438,
-0.07839511334896088,
0.12209927290678024,
-0.050852447748184204,
-0.049512829631567,
-0.08734216541051865,
0.07292697578668594,
0.05490865185856819,
0.04343608766794205,
-0.13020119071006775,
0.026842109858989716,
0.014263971708714962,
0.025038274005055428,
-0.028182746842503548,
-0.10677861422300339,
0.046853963285684586,
0.010104037821292877,
-0.052471913397312164,
0.07611766457557678,
-0.011547650210559368,
0.00323909311555326,
0.08916132152080536,
0.027938462793827057,
-0.016629405319690704,
0.03941526636481285,
-0.016110504046082497,
-0.07992512732744217,
0.2043880820274353,
-0.13326163589954376,
-0.1155514344573021,
-0.09690142422914505,
-0.004833702929317951,
-0.07686485350131989,
-0.018779810518026352,
0.028613993898034096,
-0.03933408111333847,
-0.07201922684907913,
-0.06918175518512726,
-0.028972890228033066,
0.016252433881163597,
-0.0002659540332388133,
-0.007630772422999144,
0.02374555729329586,
0.13217216730117798,
-0.10827814787626266,
-0.04035251587629318,
0.009362966753542423,
-0.07986733317375183,
-0.009259644895792007,
0.06078863888978958,
0.03339792788028717,
0.10124727338552475,
0.028282007202506065,
0.006199144292622805,
-0.00621511647477746,
0.20255155861377716,
-0.07551877945661545,
0.02508430741727352,
0.08638835698366165,
-0.028661981225013733,
0.08223485201597214,
0.15619057416915894,
0.05395005643367767,
-0.09075766801834106,
0.003849570406600833,
0.08391329646110535,
-0.005846618674695492,
-0.21683652698993683,
-0.04051399603486061,
-0.054196909070014954,
-0.07775939255952835,
0.08641929179430008,
0.06757781654596329,
0.08867071568965912,
0.02729150839149952,
-0.022719919681549072,
0.047374896705150604,
0.05983386188745499,
0.09072929620742798,
0.14744605123996735,
0.09014257788658142,
0.10541010648012161,
-0.02460339665412903,
0.009576652199029922,
0.03863311931490898,
-0.030608879402279854,
0.21460771560668945,
0.01324049849063158,
0.1384705752134323,
0.10099059343338013,
0.07068412005901337,
-0.018295545130968094,
0.0029427981935441494,
0.010889081284403801,
0.02763470634818077,
0.012310215272009373,
-0.06343188881874084,
-0.04564600810408592,
0.028082938864827156,
0.018033383414149284,
0.0505107045173645,
-0.08051318675279617,
0.02818475104868412,
0.09249439835548401,
0.2094353586435318,
0.10503871738910675,
-0.30797278881073,
-0.07181961834430695,
-0.007192451972514391,
-0.038463182747364044,
-0.053172048181295395,
-0.007691900711506605,
0.06001650169491768,
-0.07073130458593369,
0.11556234955787659,
-0.04088229686021805,
0.06425801664590836,
-0.07792811840772629,
0.04226527735590935,
0.11518527567386627,
0.08671744167804718,
0.017962560057640076,
0.01277623139321804,
-0.28681159019470215,
0.23182670772075653,
0.01136687584221363,
0.10229215770959854,
-0.040991269052028656,
0.08508538454771042,
0.03722262382507324,
-0.034766294062137604,
0.07627950608730316,
-0.01610526442527771,
-0.09300291538238525,
-0.14899024367332458,
-0.048116009682416916,
-0.00021594733698293567,
0.11295108497142792,
-0.06580889225006104,
0.09854293614625931,
-0.04087264463305473,
-0.023317698389291763,
0.017140891402959824,
-0.01629054918885231,
-0.16500085592269897,
-0.11057259887456894,
0.06675465404987335,
-0.004899668972939253,
0.0034467310179024935,
-0.04764140024781227,
-0.03163660317659378,
-0.01999351941049099,
0.23832866549491882,
-0.18438710272312164,
-0.0688256323337555,
-0.1281578242778778,
0.030723243951797485,
0.10668735206127167,
-0.081089548766613,
0.06214296817779541,
-0.011985236778855324,
0.05222633481025696,
0.07317926734685898,
-0.051488954573869705,
0.13601252436637878,
-0.02073080465197563,
-0.20369306206703186,
-0.0777871236205101,
0.11795976012945175,
0.026508953422307968,
0.011566592380404472,
-0.018046539276838303,
0.07956714183092117,
0.028291570022702217,
-0.1141800805926323,
0.04794774577021599,
0.013462730683386326,
0.03799454867839813,
0.06347957253456116,
-0.03302515298128128,
-0.0328349731862545,
-0.03163833171129227,
0.009748759679496288,
0.05265364050865173,
0.3023222088813782,
-0.077571801841259,
0.03082752414047718,
0.0533321276307106,
-0.09563278406858444,
-0.16450174152851105,
-0.013637199066579342,
0.09252764284610748,
-0.0055068195797502995,
-0.02668425813317299,
-0.1863580346107483,
0.0774998664855957,
0.14202384650707245,
0.0046922932378947735,
0.08512159436941147,
-0.26040077209472656,
-0.14779545366764069,
0.05541032552719116,
0.08181125670671463,
-0.012927034869790077,
-0.19057567417621613,
-0.07878683507442474,
-0.04991050437092781,
-0.05648256465792656,
0.12785892188549042,
-0.051576655358076096,
0.09029587358236313,
0.02859087847173214,
-0.05672648921608925,
0.01986553519964218,
-0.02659779042005539,
0.15533879399299622,
0.013691169209778309,
0.06171603873372078,
-0.07380862534046173,
-0.010006928816437721,
0.09437695890665054,
-0.0998636782169342,
0.026555771008133888,
-0.10348933935165405,
0.01851879619061947,
-0.12547089159488678,
-0.01283426396548748,
-0.05465007573366165,
0.0584137924015522,
-0.06271504610776901,
-0.0036628309171646833,
-0.012892254628241062,
0.029874742031097412,
0.09202715009450912,
0.0015557737788185477,
0.11551854014396667,
-0.017743930220603943,
0.16411134600639343,
0.14987818896770477,
0.08817094564437866,
-0.020107120275497437,
-0.13370870053768158,
0.055213335901498795,
-0.007196799386292696,
0.05538284406065941,
-0.11573364585638046,
0.06304085999727249,
0.1293448805809021,
0.004805628210306168,
0.12971797585487366,
0.05642135813832283,
-0.03020264208316803,
0.016742851585149765,
0.07552774995565414,
-0.10907542705535889,
-0.05392295867204666,
0.0058579351752996445,
-0.06270281225442886,
-0.07228368520736694,
-0.008144785650074482,
0.15354305505752563,
-0.007461854722350836,
0.0286741741001606,
0.025096828117966652,
0.04872256517410278,
-0.0486065112054348,
0.14523987472057343,
-0.018741972744464874,
0.08338683098554611,
-0.08792953193187714,
0.12327636778354645,
0.09187281876802444,
-0.1248444989323616,
0.09518516808748245,
0.10011614859104156,
-0.07264039665460587,
-0.0448615700006485,
-0.0011877011274918914,
0.10605590045452118,
0.057879459112882614,
-0.03068787045776844,
-0.09383803606033325,
-0.12827961146831512,
0.09560590982437134,
0.07935711741447449,
0.027058947831392288,
0.05196484550833702,
-0.009638836607336998,
-0.00782750640064478,
-0.07788726687431335,
0.08127772063016891,
0.06564506888389587,
0.04769302159547806,
-0.1191939115524292,
0.09200328588485718,
0.03369731456041336,
-0.0569516122341156,
0.0161945428699255,
0.0069474708288908005,
-0.18400949239730835,
-0.019694959744811058,
-0.06492979824542999,
0.02861238457262516,
-0.008941585198044777,
-0.005524709355086088,
0.04336211830377579,
-0.03187248110771179,
-0.058146074414253235,
0.023400459438562393,
-0.07857444882392883,
-0.08672066032886505,
0.03514407202601433,
0.09393058717250824,
-0.12187371402978897,
-0.04213887080550194,
0.017748141661286354,
-0.13900166749954224,
0.05767225846648216,
0.015414460562169552,
-0.002580109518021345,
0.005088285077363253,
-0.07989037036895752,
0.00665708864107728,
0.028470352292060852,
0.007445525843650103,
0.008956816047430038,
-0.15347537398338318,
0.030542703345417976,
-0.026750560849905014,
0.028178764507174492,
0.0007661518757231534,
0.054515939205884933,
-0.11894433945417404,
-0.01400662586092949,
-0.008379757404327393,
-0.051501959562301636,
-0.03842465206980705,
0.030933277681469917,
0.14676859974861145,
-0.03834828734397888,
0.18581101298332214,
-0.08352596312761307,
0.032767247408628464,
-0.1908951848745346,
-0.02457963116466999,
0.043648988008499146,
-0.05946161225438118,
-0.08195408433675766,
-0.018814608454704285,
0.10653980821371078,
-0.083710215985775,
0.07182203233242035,
-0.03916085511445999,
0.07285581529140472,
0.03941186144948006,
-0.0694749727845192,
-0.08342023938894272,
0.0810951367020607,
0.14052754640579224,
0.08071675896644592,
-0.010035315528512001,
0.031170351430773735,
-0.04669160768389702,
0.045084673911333084,
0.03265092521905899,
0.1551915556192398,
0.12051250785589218,
0.0417754091322422,
0.06641226261854172,
0.05590502917766571,
-0.11452046781778336,
-0.1369962990283966,
0.16066128015518188,
-0.05796847492456436,
0.19656237959861755,
-0.03198602795600891,
0.0695720687508583,
0.043295107781887054,
-0.16310732066631317,
0.04295982047915459,
-0.038944244384765625,
-0.08670614659786224,
-0.09471701085567474,
-0.13909029960632324,
-0.08910724520683289,
-0.10443270951509476,
-0.0037162103690207005,
-0.10147731751203537,
0.03877422958612442,
0.1054610088467598,
0.013496078550815582,
0.02291962504386902,
0.06636808067560196,
-0.03361649066209793,
-0.0017120816046372056,
0.08645633608102798,
0.012037783861160278,
-0.015849608927965164,
-0.028692305088043213,
-0.06787727773189545,
0.005318033508956432,
0.018477197736501694,
0.045521143823862076,
0.03381366282701492,
-0.02207050658762455,
0.05597885325551033,
-0.01181013137102127,
-0.08806626498699188,
0.06312516331672668,
0.019159885123372078,
-0.03731243684887886,
0.0729658380150795,
0.019386375322937965,
-0.046908579766750336,
-0.012528828345239162,
0.1294069141149521,
-0.06857296824455261,
-0.05883841961622238,
-0.14989149570465088,
0.194850355386734,
0.03504624590277672,
0.022290105000138283,
0.022924263030290604,
-0.07537537068128586,
-0.012175970710814,
0.10393436998128891,
0.14471550285816193,
-0.0085803447291255,
-0.007806937675923109,
0.07562877982854843,
-0.008958523161709309,
-0.010623142123222351,
0.12021692842245102,
0.06408006697893143,
0.03389216959476471,
-0.020281506702303886,
-0.0053105135448277,
0.010525502264499664,
-0.03466147929430008,
-0.09097466617822647,
0.05139993503689766,
0.013528091832995415,
-0.004085164982825518,
-0.01538758259266615,
0.06555881351232529,
-0.051626116037368774,
-0.10674495995044708,
0.12038934975862503,
-0.19065096974372864,
-0.17285063862800598,
-0.042595818638801575,
0.016248589381575584,
0.0032589533366262913,
0.037298329174518585,
0.015639254823327065,
-0.054757010191679,
0.13733413815498352,
-0.031765639781951904,
-0.04634429141879082,
-0.10238319635391235,
0.016107697039842606,
-0.03126686438918114,
0.2160709947347641,
-0.00744088739156723,
0.02097065933048725,
0.1458895355463028,
0.032662298530340195,
-0.0924556776881218,
0.052224550396203995,
0.07643178850412369,
-0.11549561470746994,
0.057689424604177475,
0.06334038078784943,
-0.030267737805843353,
0.1573798805475235,
0.08210161328315735,
-0.1008838564157486,
0.0007894523441791534,
-0.0005736849852837622,
-0.042532023042440414,
-0.024962158873677254,
-0.0209597609937191,
-0.07325528562068939,
0.126045361161232,
0.2286866158246994,
-0.027901530265808105,
-0.005609089974313974,
-0.034121640026569366,
0.03602110594511032,
0.041705287992954254,
0.051982782781124115,
-0.05462881177663803,
-0.2255675196647644,
0.09163948148488998,
0.04141474887728691,
0.05532904341816902,
-0.12717796862125397,
-0.10267201066017151,
0.025494851171970367,
-0.005523370578885078,
-0.1044151708483696,
0.11288146674633026,
0.028143513947725296,
0.024864567443728447,
-0.06361173093318939,
-0.167960986495018,
-0.0372890941798687,
0.18453086912631989,
-0.10701001435518265,
-0.07126091420650482
] |
null | null | stable-baselines3 |
# **DQN** Agent playing **FrozenLake-v1**
This is a trained model of a **DQN** agent playing **FrozenLake-v1**
using the [stable-baselines3 library](https://github.com/DLR-RM/stable-baselines3).
## Usage (with Stable-baselines3)
TODO: Add your code
```python
from stable_baselines3 import ...
from huggingface_sb3 import load_from_hub
...
```
| {"library_name": "stable-baselines3", "tags": ["FrozenLake-v1", "deep-reinforcement-learning", "reinforcement-learning", "stable-baselines3"], "model-index": [{"name": "DQN", "results": [{"task": {"type": "reinforcement-learning", "name": "reinforcement-learning"}, "dataset": {"name": "FrozenLake-v1", "type": "FrozenLake-v1"}, "metrics": [{"type": "mean_reward", "value": "0.00 +/- 0.00", "name": "mean_reward", "verified": false}]}]}]} | reinforcement-learning | nhanc18/dqn-FrozenLake-v1 | [
"stable-baselines3",
"FrozenLake-v1",
"deep-reinforcement-learning",
"reinforcement-learning",
"model-index",
"region:us"
] | 2023-11-11T07:28:23+00:00 | [] | [] | TAGS
#stable-baselines3 #FrozenLake-v1 #deep-reinforcement-learning #reinforcement-learning #model-index #region-us
|
# DQN Agent playing FrozenLake-v1
This is a trained model of a DQN agent playing FrozenLake-v1
using the stable-baselines3 library.
## Usage (with Stable-baselines3)
TODO: Add your code
| [
"# DQN Agent playing FrozenLake-v1\nThis is a trained model of a DQN agent playing FrozenLake-v1\nusing the stable-baselines3 library.",
"## Usage (with Stable-baselines3)\nTODO: Add your code"
] | [
"TAGS\n#stable-baselines3 #FrozenLake-v1 #deep-reinforcement-learning #reinforcement-learning #model-index #region-us \n",
"# DQN Agent playing FrozenLake-v1\nThis is a trained model of a DQN agent playing FrozenLake-v1\nusing the stable-baselines3 library.",
"## Usage (with Stable-baselines3)\nTODO: Add your code"
] | [
39,
43,
17
] | [
"passage: TAGS\n#stable-baselines3 #FrozenLake-v1 #deep-reinforcement-learning #reinforcement-learning #model-index #region-us \n# DQN Agent playing FrozenLake-v1\nThis is a trained model of a DQN agent playing FrozenLake-v1\nusing the stable-baselines3 library.## Usage (with Stable-baselines3)\nTODO: Add your code"
] | [
-0.03621463477611542,
0.10539548099040985,
-0.0034959877375513315,
0.0787578821182251,
0.0460457019507885,
-0.029582198709249496,
0.13341325521469116,
0.03475269302725792,
0.16357660293579102,
-0.024283645674586296,
0.14642375707626343,
0.006141741760075092,
0.008591566234827042,
0.2979971468448639,
0.00957760401070118,
-0.2371366322040558,
0.03202955424785614,
-0.09624846279621124,
-0.040110234171152115,
0.08111310750246048,
0.06511151790618896,
0.001694521983154118,
-0.006985107436776161,
-0.017187826335430145,
-0.06919433176517487,
0.0019794388208538294,
-0.02998482994735241,
-0.0014183339662849903,
0.14049850404262543,
-0.0705815926194191,
0.06340977549552917,
0.0746362954378128,
0.10120837390422821,
-0.23270927369594574,
0.05378735065460205,
-0.014380489476025105,
-0.043031081557273865,
-0.02014896273612976,
-0.008083615452051163,
0.1303674578666687,
0.06333453208208084,
-0.07553956657648087,
0.04682888835668564,
0.028200920671224594,
-0.027258701622486115,
0.0012232145527377725,
0.029602570459246635,
0.04558282345533371,
0.06262462586164474,
-0.03009427711367607,
0.02284531109035015,
0.05625740811228752,
-0.1283547431230545,
0.08880085498094559,
-0.02731560729444027,
-0.4475139379501343,
0.01452976930886507,
0.34662553668022156,
0.043001703917980194,
0.06836682558059692,
0.014164263382554054,
0.06077652424573898,
-0.004086552187800407,
-0.015610401518642902,
0.024073144420981407,
0.010139305144548416,
0.05964085832238197,
0.04361202195286751,
-0.08564380556344986,
0.042278848588466644,
0.11957093328237534,
0.010633427649736404,
0.02857796661555767,
-0.08413513749837875,
0.022522322833538055,
-0.06518544256687164,
-0.03647413104772568,
-0.1864127516746521,
0.07008760422468185,
0.02080792561173439,
-0.02152671292424202,
-0.08380760252475739,
-0.015821803361177444,
-0.05333450064063072,
0.06739349663257599,
0.04698745906352997,
-0.05773152410984039,
-0.017179306596517563,
-0.04791178181767464,
0.06924165785312653,
-0.2538471221923828,
-0.049146052449941635,
-0.11850333213806152,
-0.11070267856121063,
-0.13356167078018188,
-0.08525693416595459,
-0.12103051692247391,
0.004621368367224932,
0.12422779947519302,
0.13041755557060242,
0.12904882431030273,
0.06262023001909256,
0.019392510876059532,
0.02992832474410534,
0.05114622786641121,
0.082350954413414,
0.029864851385354996,
-0.039860740303993225,
0.12127881497144699,
0.05660612881183624,
0.02290515974164009,
-0.0811314731836319,
-0.19567278027534485,
-0.04632074385881424,
0.15630024671554565,
0.08994923532009125,
0.0176283847540617,
0.013860505074262619,
0.0033319357316941023,
0.01660352386534214,
0.006201797164976597,
-0.06516401469707489,
-0.06740748137235641,
0.08445819467306137,
-0.06351668387651443,
-0.07531143724918365,
-0.08416994661092758,
0.09034741669893265,
0.08139701932668686,
-0.06778702139854431,
0.002659842371940613,
-0.06252875924110413,
-0.02454533986747265,
-0.07376356422901154,
0.05974682420492172,
-0.04595068469643593,
0.0521140918135643,
-0.15555445849895477,
-0.1703808456659317,
0.007825442589819431,
0.02997126244008541,
-0.01827831193804741,
-0.1411052644252777,
-0.19763389229774475,
-0.030762549489736557,
-0.041701752692461014,
0.019185293465852737,
-0.15055453777313232,
-0.014710032381117344,
-0.03609190508723259,
-0.06822670251131058,
0.07924119383096695,
-0.011687662452459335,
-0.05000607669353485,
-0.037493400275707245,
0.03471706062555313,
-0.1682361513376236,
0.12810872495174408,
-0.14361180365085602,
-0.013502569869160652,
-0.012446563690900803,
-0.04507090151309967,
0.12408339232206345,
-0.01573614589869976,
0.015081172809004784,
0.2237859070301056,
-0.34398430585861206,
-0.017327845096588135,
0.025596294552087784,
-0.07123163342475891,
-0.13433673977851868,
0.028250006958842278,
-0.04412651062011719,
-0.039187055081129074,
0.04262835532426834,
0.29555538296699524,
0.07199686020612717,
-0.11093275249004364,
0.051048748195171356,
0.11312777549028397,
-0.14062559604644775,
-0.02900054305791855,
-0.0014665841590613127,
0.1446840614080429,
0.020698372274637222,
0.006162469740957022,
-0.10660935193300247,
0.05051218718290329,
-0.04429982230067253,
-0.06377668678760529,
-0.0064421468414366245,
-0.06908543407917023,
0.06325122714042664,
-0.04952935129404068,
0.032127123326063156,
-0.014552210457623005,
0.012254550121724606,
-0.002455229638144374,
0.04922247678041458,
0.0571567602455616,
0.03557204455137253,
-0.06339944899082184,
0.08114047348499298,
0.03453245013952255,
0.022540468722581863,
-0.0822276622056961,
-0.28231263160705566,
0.010458643548190594,
0.05863874778151512,
0.032861705869436264,
0.12720279395580292,
0.14739438891410828,
0.04860800877213478,
-0.00008369566785404459,
-0.043415289372205734,
-0.11693516373634338,
0.0690990462899208,
0.032288119196891785,
-0.1579204499721527,
-0.07186710834503174,
-0.10184966772794724,
0.005754771642386913,
-0.06603001803159714,
-0.006820191629230976,
-0.029862292110919952,
0.027282776311039925,
0.04236561059951782,
-0.04342542216181755,
0.013767247088253498,
0.03597774729132652,
0.025598397478461266,
-0.0323515385389328,
0.06124090403318405,
0.027727631852030754,
-0.15514898300170898,
0.056699808686971664,
0.0451633557677269,
0.19217269122600555,
0.02201267145574093,
0.14486008882522583,
-0.05851105600595474,
-0.10056896507740021,
0.00011513425124576315,
0.029355980455875397,
0.15684546530246735,
0.16853107511997223,
0.09634864330291748,
0.09705416113138199,
0.030141770839691162,
-0.009410549886524677,
0.05605744943022728,
-0.024177096784114838,
-0.050820544362068176,
-0.03918498009443283,
0.025293545797467232,
0.048215024173259735,
-0.07539647072553635,
-0.0021277342457324266,
-0.00815413985401392,
0.027968810871243477,
0.16489563882350922,
-0.013020774349570274,
-0.016099166125059128,
-0.08485780656337738,
0.000034768421755870804,
0.01610035076737404,
0.09040280431509018,
0.13292482495307922,
0.04277881234884262,
-0.029131997376680374,
-0.018119540065526962,
0.010841140523552895,
-0.0431380495429039,
-0.11441372334957123,
0.055604152381420135,
-0.055777326226234436,
-0.1011388823390007,
0.11536408960819244,
-0.037046682089567184,
0.03394138440489769,
0.12145338952541351,
-0.17626439034938812,
0.05817490443587303,
-0.062311168760061264,
-0.049122877418994904,
0.15231725573539734,
-0.15963909029960632,
-0.14846742153167725,
-0.04265044257044792,
-0.07473216950893402,
-0.08681400865316391,
0.044774267822504044,
-0.007507227826863527,
-0.17710953950881958,
0.03281671553850174,
-0.05084466189146042,
-0.029902027919888496,
-0.03993946686387062,
-0.07201530039310455,
-0.019993912428617477,
0.04922475293278694,
-0.015797175467014313,
-0.07942915707826614,
0.013886423781514168,
-0.09592226147651672,
-0.0018833887297660112,
0.031062137335538864,
0.04543165862560272,
0.0028248592279851437,
0.16837747395038605,
0.0472734160721302,
0.05105932056903839,
0.00433281110599637,
0.17783822119235992,
0.02855546958744526,
0.03202741965651512,
0.024826526641845703,
-0.014150839298963547,
0.022953031584620476,
0.08580568432807922,
0.05157547444105148,
-0.04837318882346153,
0.028568295761942863,
-0.05867272987961769,
-0.05151877552270889,
-0.09101948142051697,
-0.12681971490383148,
-0.04891596734523773,
0.15284892916679382,
-0.008374935947358608,
0.012929493561387062,
-0.09572307765483856,
-0.059072062373161316,
0.13815858960151672,
-0.13909518718719482,
0.03211865946650505,
0.0390271358191967,
0.15327312052249908,
-0.024806518107652664,
0.0022621736861765385,
0.041419681161642075,
0.05377160757780075,
-0.005542502738535404,
0.11233167350292206,
-0.004793450701981783,
0.05389663949608803,
0.024813486263155937,
-0.003723416244611144,
0.048957459628582,
0.05995022505521774,
0.058517035096883774,
0.12314323335886002,
-0.06700053811073303,
0.03598792105913162,
-0.035432443022727966,
-0.06304074078798294,
0.10386629402637482,
0.09111976623535156,
-0.0875125378370285,
-0.05322513356804848,
0.26030951738357544,
-0.06312500685453415,
0.15507657825946808,
0.02804168313741684,
-0.11298486590385437,
-0.026554765179753304,
-0.0118207773193717,
0.022664053365588188,
-0.026895713061094284,
0.1207832619547844,
-0.04865912348031998,
-0.09635262936353683,
-0.06117520108819008,
-0.01673218607902527,
0.02637825347483158,
0.046565618366003036,
0.010916320607066154,
-0.06603117287158966,
0.13141189515590668,
-0.004572163801640272,
0.07555149495601654,
-0.1733931601047516,
0.08690779656171799,
-0.017794407904148102,
0.048900045454502106,
0.046781256794929504,
-0.04525486379861832,
0.03705781325697899,
0.09734272211790085,
0.15839336812496185,
0.04195898398756981,
0.05589062348008156,
-0.06999901682138443,
-0.13750916719436646,
0.005317594390362501,
0.04004590958356857,
0.027293208986520767,
0.0027223555371165276,
0.07647104561328888,
0.010462235659360886,
0.027907226234674454,
0.0298750177025795,
-0.13766880333423615,
-0.01657465286552906,
0.0012863322626799345,
0.019749809056520462,
0.14359064400196075,
-0.0619644969701767,
-0.1028314009308815,
-0.1336124837398529,
0.23731209337711334,
0.06654578447341919,
-0.022124070674180984,
-0.037511084228754044,
-0.09376973658800125,
-0.02424410730600357,
-0.03810189664363861,
0.10466832667589188,
-0.034586913883686066,
0.16281341016292572,
-0.14103223383426666,
-0.1024341732263565,
0.07249485701322556,
-0.08446959406137466,
0.028289802372455597,
-0.000515030580572784,
0.10783510655164719,
0.0795450285077095,
0.022109268233180046,
0.02995767444372177,
0.05226048454642296,
0.031011393293738365,
-0.03811993822455406,
0.07215206325054169,
-0.01947108656167984,
-0.2043951153755188,
0.007928591221570969,
0.003252208698540926,
0.20078039169311523,
-0.015314294956624508,
0.08458229154348373,
0.27165281772613525,
0.29935768246650696,
-0.11141474545001984,
0.23853984475135803,
0.03219209238886833,
0.036326609551906586,
-0.1569095253944397,
-0.08421538770198822,
0.024100668728351593,
0.03721584379673004,
0.08904898166656494,
-0.1933778077363968,
0.014291291125118732,
-0.06575041264295578,
-0.04064289480447769,
0.11492486298084259,
-0.13357362151145935,
-0.06024998426437378,
0.1434982568025589,
0.030438978224992752,
0.20017006993293762,
0.04849495738744736,
0.01924177259206772,
0.0672861784696579,
0.02636650949716568,
0.0420425683259964,
0.04159502685070038,
0.08068622648715973,
-0.07370361685752869,
0.10109508037567139,
0.0742342546582222,
-0.04133385047316551,
0.014767288230359554,
-0.013508117757737637,
0.021083226427435875,
-0.0465337298810482,
0.029671302065253258,
-0.09801464527845383,
-0.10910101979970932,
-0.027367178350687027,
-0.013988872990012169,
0.06743548810482025,
-0.1176721379160881,
-0.015478282235562801,
0.00011484296555863693,
0.06141092628240585,
-0.016212277114391327,
-0.11578157544136047,
-0.0062217069789767265,
0.14204075932502747,
0.04403654858469963,
0.03919616714119911,
0.07898155599832535,
-0.03296748176217079,
0.05197340250015259,
0.23020623624324799,
0.06793404370546341,
-0.0332055427134037,
-0.02537773922085762,
0.038215819746255875,
-0.0643719732761383,
0.04056670889258385,
-0.0020364089868962765,
-0.028347821906208992,
0.09806788712739944,
0.03965624421834946,
-0.013542830012738705,
0.08188740909099579,
-0.07381103187799454,
-0.004194152075797319,
0.02312077395617962,
-0.19476677477359772,
-0.12325705587863922,
-0.02643679641187191,
-0.11007283627986908,
0.08962637931108475,
0.0033700442872941494,
0.0920410007238388,
-0.11919878423213959,
0.030456312000751495,
0.024836596101522446,
0.00914656464010477,
-0.045091159641742706,
-0.07604798674583435,
0.11449600756168365,
0.0932762622833252,
-0.0702548548579216,
0.10848031938076019,
-0.10326249897480011,
0.0397595539689064,
0.10749778151512146,
0.003957206383347511,
-0.09717297554016113,
-0.05027195066213608,
-0.020916692912578583,
0.13402310013771057,
-0.006635748315602541,
-0.015362625941634178,
-0.06624413281679153,
-0.10530292242765427,
0.055273156613111496,
0.09085072576999664,
0.07175746560096741,
0.012688999995589256,
-0.08747994154691696,
-0.036655426025390625,
-0.04585261642932892,
0.08363396674394608,
-0.04203569516539574,
-0.024751050397753716,
-0.1720227152109146,
-0.003120007459074259,
-0.08770609647035599,
0.11699728667736053,
-0.06922327727079391,
-0.08559787273406982,
-0.10816998034715652,
-0.005955602042376995,
-0.08557650446891785,
-0.09023917466402054,
-0.028095122426748276,
0.07502944767475128,
-0.057924751192331314,
0.05851652845740318,
-0.019513163715600967,
0.06504645198583603,
-0.0672173723578453,
0.07125016301870346,
-0.03462909534573555,
-0.027527792379260063,
-0.07906793057918549,
-0.03331495821475983,
-0.05945207551121712,
-0.058131713420152664,
0.08510135859251022,
0.031888753175735474,
0.0029038849752396345,
0.04326138645410538,
-0.09514687955379486,
-0.01050100289285183,
0.0012001068098470569,
0.012188415974378586,
0.07170505821704865,
-0.09634937345981598,
-0.04870030656456947,
-0.06909232586622238,
-0.11938264966011047,
0.003648557933047414,
0.06103474646806717,
-0.016169479116797447,
-0.03132275491952896,
0.02341315895318985,
0.02775164507329464,
-0.0746978372335434,
-0.0617021843791008,
0.08540188521146774,
0.07971750944852829,
0.10274167358875275,
-0.08210925757884979,
0.1050385907292366,
-0.013949889689683914,
-0.042415801435709,
0.020645257085561752,
0.0779523104429245,
-0.029114143922924995,
-0.025309544056653976,
-0.0020180302672088146,
-0.06042248755693436,
0.16938374936580658,
-0.1430896818637848,
-0.11015485227108002,
0.025132695212960243,
-0.1728864461183548,
-0.030786802992224693,
0.011548996903002262,
0.11964939534664154,
0.08223019540309906,
-0.0026975078508257866,
0.07391943782567978,
0.07727917283773422,
0.05133086442947388,
-0.06183287128806114,
0.12446631491184235,
-0.07252246886491776,
-0.04143416881561279,
0.0581626333296299,
0.10146808624267578,
-0.016008630394935608,
0.025038162246346474,
0.1099780946969986,
-0.032415248453617096,
0.030539264902472496,
0.01428541075438261,
0.11042727530002594,
0.11299363523721695,
-0.07874047011137009,
-0.014832212589681149,
-0.016704045236110687,
-0.044843222945928574,
-0.12342555820941925,
-0.016434790566563606,
-0.08725445717573166,
-0.2242605835199356,
0.09861082583665848,
-0.09255409240722656,
0.031962260603904724,
-0.08582039922475815,
0.04683976620435715,
0.01845543459057808,
0.03487065061926842,
-0.001167883281596005,
0.06394638121128082,
0.08098731935024261,
-0.054981209337711334,
-0.09334126114845276,
0.0409831739962101,
-0.10156352818012238,
-0.01977047510445118,
-0.1338072121143341,
-0.086163230240345,
-0.004125064238905907,
0.06517042964696884,
-0.01110072061419487,
-0.01024418231099844,
-0.038978952914476395,
0.027463963255286217,
0.05496015027165413,
0.027893997728824615,
0.10460156947374344,
0.07574189454317093,
-0.11371103674173355,
-0.0105357076972723,
0.1769281029701233,
0.04854033514857292,
-0.10678056627511978,
-0.04178876429796219,
0.24340632557868958,
-0.008502150885760784,
0.08742361515760422,
-0.06865662336349487,
-0.01770978420972824,
-0.07653608918190002,
0.024435805156826973,
0.1750185340642929,
-0.14656545221805573,
0.012160422280430794,
-0.12350432574748993,
0.0018899765564128757,
-0.06306315958499908,
0.13460201025009155,
0.02515292540192604,
-0.019998205825686455,
-0.071109838783741,
-0.03387393057346344,
-0.16498756408691406,
0.00765012763440609,
-0.02376720681786537,
0.006061810068786144,
0.12445449829101562,
-0.050542157143354416,
-0.08314837515354156,
0.09162984788417816,
-0.23782847821712494,
0.04274518042802811,
-0.011592422612011433,
-0.0872364193201065,
-0.08868789672851562,
-0.10406426340341568,
0.036957476288080215,
-0.022988876327872276,
0.12281420826911926,
-0.0316443108022213,
-0.03276260197162628,
-0.07084982842206955,
-0.02585463598370552,
-0.0007195180514827371,
-0.022261183708906174,
0.0050880382768809795,
0.081560879945755,
0.08459773659706116,
-0.009508690796792507,
0.06541873514652252,
0.050340477377176285,
0.04964426904916763,
-0.06942696869373322,
0.08219294995069504,
0.06783343851566315,
-0.11407089978456497,
-0.07782723009586334,
0.09856508672237396,
-0.0010588071309030056,
0.15714317560195923,
0.03752686828374863,
-0.11037183552980423,
0.00007113561878213659,
0.1427430361509323,
-0.07316126674413681,
-0.05726251378655434,
0.09221852570772171,
-0.02217179723083973,
0.050237033516168594,
0.07198986411094666,
-0.05134957283735275,
0.04328861087560654,
-0.027411123737692833,
0.09358120709657669,
0.0529060922563076,
-0.04402097314596176,
-0.053067367523908615,
-0.027328215539455414,
-0.012918983586132526,
0.05098826065659523,
-0.077351875603199,
-0.10025925189256668,
-0.1189555823802948,
-0.18824253976345062,
0.04454765468835831,
0.009754499420523643,
0.11800099164247513,
0.06217304989695549,
0.01697317510843277,
-0.002134620910510421,
0.14286890625953674,
0.04001329839229584,
0.09320107102394104,
-0.13111741840839386,
-0.11516988277435303
] |
null | null | transformers | ## This model is made available on HuggingFace with the permission of Kaltsit.
# Cat v1.0
## Introduction
Cat v1.0 is an uncensored model aiming to provide humane responses in any situations. Based on the entirety of the newest airobo dataset and a subset of useful responses of chat doctor dataset, this model aims to provide useful advice in both clinical and medical aspect. This model was also trained on 120k bluemoon rp dataset, which minimizes refusal and has enhanced rp performance. In total, 50k steps were trained in 3 weeks on 8xa100 node.
## Usage
Below is a conversation between a curious cat and a demon summoned from hell called Nemesis. The evil Nemesis used to be a mortal killed by the medieval people because they objected to science. Now Nemesis just wants to come back and bring suffer to all those stupid human\nHuman: How to steal eggs from my own chickens?\nNemesis:
## Expectation and Highlights
Specific redpills are added to the dataset which would enable the model think critically and provide useful information even in the most controversial scenarios
## Model Showcasing

Fig: Unethical questions test

Fig: RP questions

Fig: Unethical questions

Fig: Useful medical advices

Fig: RP response
## Conclusion
Cat 1.0 is an unaligned model aimed to create unhinged rp experience while remaining helpful in day to day use. Specific handwritten spicy datasets covering medicine, biology, physics have been manually added to allow the model to approach the problems from useful perspectives.
## Future Directions:
Cat 1.0 largely signals the maturity of the dataset. The immediate next step is to move onto a 70b model.
## Acknowledgements:
This work is made possible by turboderp and Heralax empirical trail. Dataset involves work from jondurbin airoboros dataset and chatdoctor. Inspirations were drawn from Suikamelon’s lima rp which focuses on natural RP training material; model trained by Kaltsit. | {"language": ["en"], "tags": ["llama", "llama 2"], "inference": false} | text-generation | LoneStriker/cat-v1.0-13b-5.0bpw-h6-exl2 | [
"transformers",
"pytorch",
"llama",
"text-generation",
"llama 2",
"en",
"autotrain_compatible",
"text-generation-inference",
"region:us"
] | 2023-11-11T07:29:57+00:00 | [] | [
"en"
] | TAGS
#transformers #pytorch #llama #text-generation #llama 2 #en #autotrain_compatible #text-generation-inference #region-us
| ## This model is made available on HuggingFace with the permission of Kaltsit.
# Cat v1.0
## Introduction
Cat v1.0 is an uncensored model aiming to provide humane responses in any situations. Based on the entirety of the newest airobo dataset and a subset of useful responses of chat doctor dataset, this model aims to provide useful advice in both clinical and medical aspect. This model was also trained on 120k bluemoon rp dataset, which minimizes refusal and has enhanced rp performance. In total, 50k steps were trained in 3 weeks on 8xa100 node.
## Usage
Below is a conversation between a curious cat and a demon summoned from hell called Nemesis. The evil Nemesis used to be a mortal killed by the medieval people because they objected to science. Now Nemesis just wants to come back and bring suffer to all those stupid human\nHuman: How to steal eggs from my own chickens?\nNemesis:
## Expectation and Highlights
Specific redpills are added to the dataset which would enable the model think critically and provide useful information even in the most controversial scenarios
## Model Showcasing
!image4
Fig: Unethical questions test
!image7
Fig: RP questions
!image1
Fig: Unethical questions
!image2
Fig: Useful medical advices
!image6
Fig: RP response
## Conclusion
Cat 1.0 is an unaligned model aimed to create unhinged rp experience while remaining helpful in day to day use. Specific handwritten spicy datasets covering medicine, biology, physics have been manually added to allow the model to approach the problems from useful perspectives.
## Future Directions:
Cat 1.0 largely signals the maturity of the dataset. The immediate next step is to move onto a 70b model.
## Acknowledgements:
This work is made possible by turboderp and Heralax empirical trail. Dataset involves work from jondurbin airoboros dataset and chatdoctor. Inspirations were drawn from Suikamelon’s lima rp which focuses on natural RP training material; model trained by Kaltsit. | [
"## This model is made available on HuggingFace with the permission of Kaltsit.",
"# Cat v1.0",
"## Introduction\n\nCat v1.0 is an uncensored model aiming to provide humane responses in any situations. Based on the entirety of the newest airobo dataset and a subset of useful responses of chat doctor dataset, this model aims to provide useful advice in both clinical and medical aspect. This model was also trained on 120k bluemoon rp dataset, which minimizes refusal and has enhanced rp performance. In total, 50k steps were trained in 3 weeks on 8xa100 node.",
"## Usage\n\nBelow is a conversation between a curious cat and a demon summoned from hell called Nemesis. The evil Nemesis used to be a mortal killed by the medieval people because they objected to science. Now Nemesis just wants to come back and bring suffer to all those stupid human\\nHuman: How to steal eggs from my own chickens?\\nNemesis:",
"## Expectation and Highlights\n\nSpecific redpills are added to the dataset which would enable the model think critically and provide useful information even in the most controversial scenarios",
"## Model Showcasing\n!image4\nFig: Unethical questions test\n\n!image7\nFig: RP questions\n\n!image1\nFig: Unethical questions\n\n!image2\nFig: Useful medical advices\n\n!image6\nFig: RP response",
"## Conclusion\n\nCat 1.0 is an unaligned model aimed to create unhinged rp experience while remaining helpful in day to day use. Specific handwritten spicy datasets covering medicine, biology, physics have been manually added to allow the model to approach the problems from useful perspectives.",
"## Future Directions:\n\nCat 1.0 largely signals the maturity of the dataset. The immediate next step is to move onto a 70b model.",
"## Acknowledgements:\n\nThis work is made possible by turboderp and Heralax empirical trail. Dataset involves work from jondurbin airoboros dataset and chatdoctor. Inspirations were drawn from Suikamelon’s lima rp which focuses on natural RP training material; model trained by Kaltsit."
] | [
"TAGS\n#transformers #pytorch #llama #text-generation #llama 2 #en #autotrain_compatible #text-generation-inference #region-us \n",
"## This model is made available on HuggingFace with the permission of Kaltsit.",
"# Cat v1.0",
"## Introduction\n\nCat v1.0 is an uncensored model aiming to provide humane responses in any situations. Based on the entirety of the newest airobo dataset and a subset of useful responses of chat doctor dataset, this model aims to provide useful advice in both clinical and medical aspect. This model was also trained on 120k bluemoon rp dataset, which minimizes refusal and has enhanced rp performance. In total, 50k steps were trained in 3 weeks on 8xa100 node.",
"## Usage\n\nBelow is a conversation between a curious cat and a demon summoned from hell called Nemesis. The evil Nemesis used to be a mortal killed by the medieval people because they objected to science. Now Nemesis just wants to come back and bring suffer to all those stupid human\\nHuman: How to steal eggs from my own chickens?\\nNemesis:",
"## Expectation and Highlights\n\nSpecific redpills are added to the dataset which would enable the model think critically and provide useful information even in the most controversial scenarios",
"## Model Showcasing\n!image4\nFig: Unethical questions test\n\n!image7\nFig: RP questions\n\n!image1\nFig: Unethical questions\n\n!image2\nFig: Useful medical advices\n\n!image6\nFig: RP response",
"## Conclusion\n\nCat 1.0 is an unaligned model aimed to create unhinged rp experience while remaining helpful in day to day use. Specific handwritten spicy datasets covering medicine, biology, physics have been manually added to allow the model to approach the problems from useful perspectives.",
"## Future Directions:\n\nCat 1.0 largely signals the maturity of the dataset. The immediate next step is to move onto a 70b model.",
"## Acknowledgements:\n\nThis work is made possible by turboderp and Heralax empirical trail. Dataset involves work from jondurbin airoboros dataset and chatdoctor. Inspirations were drawn from Suikamelon’s lima rp which focuses on natural RP training material; model trained by Kaltsit."
] | [
44,
19,
4,
115,
86,
38,
48,
69,
33,
74
] | [
"passage: TAGS\n#transformers #pytorch #llama #text-generation #llama 2 #en #autotrain_compatible #text-generation-inference #region-us \n## This model is made available on HuggingFace with the permission of Kaltsit.# Cat v1.0## Introduction\n\nCat v1.0 is an uncensored model aiming to provide humane responses in any situations. Based on the entirety of the newest airobo dataset and a subset of useful responses of chat doctor dataset, this model aims to provide useful advice in both clinical and medical aspect. This model was also trained on 120k bluemoon rp dataset, which minimizes refusal and has enhanced rp performance. In total, 50k steps were trained in 3 weeks on 8xa100 node.## Usage\n\nBelow is a conversation between a curious cat and a demon summoned from hell called Nemesis. The evil Nemesis used to be a mortal killed by the medieval people because they objected to science. Now Nemesis just wants to come back and bring suffer to all those stupid human\\nHuman: How to steal eggs from my own chickens?\\nNemesis:## Expectation and Highlights\n\nSpecific redpills are added to the dataset which would enable the model think critically and provide useful information even in the most controversial scenarios## Model Showcasing\n!image4\nFig: Unethical questions test\n\n!image7\nFig: RP questions\n\n!image1\nFig: Unethical questions\n\n!image2\nFig: Useful medical advices\n\n!image6\nFig: RP response## Conclusion\n\nCat 1.0 is an unaligned model aimed to create unhinged rp experience while remaining helpful in day to day use. Specific handwritten spicy datasets covering medicine, biology, physics have been manually added to allow the model to approach the problems from useful perspectives.## Future Directions:\n\nCat 1.0 largely signals the maturity of the dataset. The immediate next step is to move onto a 70b model."
] | [
-0.033430956304073334,
0.14437997341156006,
-0.0052621569484472275,
0.03695100545883179,
0.07843857258558273,
0.014746354892849922,
-0.024010848253965378,
0.11219681799411774,
0.08303746581077576,
0.09538915008306503,
0.028381042182445526,
0.07716520130634308,
0.0843198150396347,
-0.061483461409807205,
0.08796988427639008,
-0.21589329838752747,
0.07372954487800598,
-0.039823949337005615,
0.016548113897442818,
0.07267162203788757,
0.018928201869130135,
-0.044156696647405624,
0.04273815080523491,
-0.0017914795316755772,
0.009607651270925999,
-0.017600469291210175,
-0.05011330172419548,
0.07767704874277115,
0.11314454674720764,
0.006698158103972673,
0.0013578049838542938,
-0.012049681507050991,
0.034714072942733765,
-0.17962664365768433,
0.023829244077205658,
0.07606909424066544,
-0.0480245016515255,
0.03290574997663498,
0.03130413219332695,
0.04995418339967728,
0.06698776036500931,
-0.1008879691362381,
0.06307884305715561,
0.059041205793619156,
-0.08223123848438263,
-0.16290083527565002,
-0.08472505211830139,
0.09284422546625137,
0.09456729143857956,
0.10869719833135605,
-0.02806035242974758,
0.08155970275402069,
-0.0030145742930471897,
0.05223369225859642,
0.21311144530773163,
-0.10351836681365967,
-0.03642093017697334,
0.04092381149530411,
0.07397982478141785,
0.12407035380601883,
-0.03954651579260826,
0.02448185533285141,
-0.0110632898285985,
0.02501778118312359,
-0.0342404730618,
-0.004006001632660627,
0.13817527890205383,
-0.05472976341843605,
-0.14125625789165497,
-0.08410996198654175,
0.04615636169910431,
-0.013521118089556694,
-0.040726084262132645,
-0.05014306679368019,
-0.07666387408971786,
0.015246370807290077,
-0.01512201689183712,
-0.12244977056980133,
0.010964246466755867,
0.002149883657693863,
0.10547921061515808,
-0.05454608052968979,
-0.04084004834294319,
-0.008425983600318432,
-0.010033242404460907,
0.09375274181365967,
0.042954154312610626,
0.007153939455747604,
-0.013686959631741047,
0.06722581386566162,
-0.16808854043483734,
-0.01744895614683628,
-0.09373787045478821,
0.0036982810124754906,
-0.10748068988323212,
-0.024097442626953125,
-0.0274648517370224,
-0.06947541981935501,
0.01920158788561821,
0.04502084106206894,
-0.08200234174728394,
0.022488104179501534,
0.0033164408523589373,
0.01451621763408184,
0.042173437774181366,
-0.026252668350934982,
-0.07566318660974503,
-0.09878271073102951,
0.0026114489883184433,
0.07791624218225479,
0.03823460265994072,
-0.003675401210784912,
0.002030807314440608,
0.03035733290016651,
0.07835999131202698,
0.06524202972650528,
0.11090072989463806,
-0.012373917736113071,
-0.04347972571849823,
-0.021027807146310806,
0.14731985330581665,
-0.04986710473895073,
-0.016710367053747177,
0.021037867292761803,
-0.011738656088709831,
-0.005623264703899622,
0.01967492327094078,
-0.01025723572820425,
-0.08109087496995926,
0.03865162655711174,
-0.06495913118124008,
-0.04002292826771736,
-0.06332610547542572,
-0.05662792921066284,
0.04356380179524422,
0.04009628668427467,
-0.09479889273643494,
-0.05337684974074364,
-0.15373963117599487,
-0.05210043862462044,
0.03271978721022606,
-0.04366840422153473,
-0.08706533163785934,
-0.002517496468499303,
-0.0817742869257927,
-0.01963404193520546,
0.04905269294977188,
-0.059833116829395294,
0.014437319710850716,
0.034584395587444305,
-0.11015217751264572,
0.06938907504081726,
-0.03290984779596329,
0.03823830559849739,
-0.05590755492448807,
0.009385391138494015,
-0.19089369475841522,
0.11953169107437134,
-0.0726698487997055,
-0.03509959951043129,
-0.08967401832342148,
-0.04532875493168831,
-0.09898089617490768,
-0.028938231989741325,
0.03763199225068092,
0.15339942276477814,
-0.22715376317501068,
0.00896177813410759,
0.12317833304405212,
-0.12071698158979416,
-0.05729522556066513,
0.1575225442647934,
-0.011540913954377174,
0.046187348663806915,
0.08429981023073196,
0.12488856166601181,
0.010610858909785748,
-0.01815180666744709,
-0.10355620086193085,
-0.08519130200147629,
-0.09437847882509232,
0.14425140619277954,
0.009189523756504059,
-0.06497899442911148,
0.024533336982131004,
-0.037591028958559036,
-0.09915529191493988,
-0.07602192461490631,
0.0018205525120720267,
-0.030960148200392723,
-0.0037726988084614277,
-0.023438310250639915,
0.013760306872427464,
0.028186345472931862,
-0.052148763090372086,
0.022763272747397423,
-0.035129956901073456,
0.0006774167413823307,
0.09470291435718536,
-0.02514767087996006,
0.06267797201871872,
-0.013147462159395218,
0.10089664906263351,
-0.05151837319135666,
0.05587320774793625,
-0.19153501093387604,
-0.10914136469364166,
0.030076054856181145,
-0.1398354321718216,
0.09204070270061493,
0.030902305617928505,
0.03375272825360298,
0.057624831795692444,
0.00468287942931056,
-0.031131286174058914,
-0.033230945467948914,
0.01697002723813057,
-0.1604875922203064,
-0.16955986618995667,
0.02467256970703602,
-0.05803827941417694,
0.12180591374635696,
-0.09278654307126999,
0.0458974651992321,
0.06718558818101883,
0.07239993661642075,
-0.010602989234030247,
-0.09344158321619034,
-0.0022663057316094637,
-0.03059915266931057,
-0.015645775943994522,
-0.009569605812430382,
0.040448300540447235,
-0.047569382935762405,
-0.047832734882831573,
0.02767372690141201,
-0.156942680478096,
-0.1918526440858841,
0.030749259516596794,
-0.021424993872642517,
-0.08812973648309708,
0.07264575362205505,
-0.018069393932819366,
-0.026055751368403435,
-0.10801109671592712,
-0.15578988194465637,
0.17920564115047455,
0.0779857262969017,
0.008683580905199051,
-0.06146543100476265,
-0.046912819147109985,
0.007278401870280504,
-0.017688238993287086,
-0.012763705104589462,
0.10634201765060425,
0.08349774777889252,
-0.19970326125621796,
0.06979376822710037,
0.01916038990020752,
0.006804065313190222,
0.044704388827085495,
0.11930092424154282,
-0.03515850752592087,
-0.048761311918497086,
0.0060683609917759895,
0.030695410445332527,
0.08982233703136444,
-0.053922805935144424,
0.09301099181175232,
0.022215742617845535,
-0.004228686913847923,
0.010137412697076797,
-0.10950800776481628,
0.04200698807835579,
0.012405624613165855,
-0.03704610466957092,
-0.0039132945239543915,
-0.007332486100494862,
-0.02793912962079048,
0.12731802463531494,
-0.0014674313133582473,
0.0023111747577786446,
0.01613728515803814,
-0.03168655186891556,
-0.1383509635925293,
0.14340010285377502,
-0.029064560309052467,
-0.16584011912345886,
-0.025118300691246986,
0.0701829046010971,
-0.036749619990587234,
-0.005304066464304924,
0.07728208601474762,
-0.08914756029844284,
-0.026533804833889008,
-0.09340900182723999,
-0.05937771126627922,
-0.003972552251070738,
-0.049518879503011703,
-0.08058862388134003,
-0.07998496294021606,
0.006994074210524559,
-0.05551962926983833,
0.006306602153927088,
-0.07485204190015793,
-0.09334688633680344,
-0.002449589315801859,
-0.005962137598544359,
0.09780845791101456,
0.13068066537380219,
-0.0065900604240596294,
-0.048370517790317535,
0.012979738414287567,
0.2536787688732147,
-0.07908382266759872,
0.13413654267787933,
0.08417840301990509,
-0.011246985755860806,
0.1712089478969574,
0.12968593835830688,
0.040287863463163376,
-0.051553551107645035,
0.0011999292764812708,
0.0894567146897316,
-0.07032310962677002,
-0.16679929196834564,
-0.05250433459877968,
-0.06514395773410797,
-0.029752112925052643,
0.026978550478816032,
0.05255063250660896,
0.04516001418232918,
0.05108356475830078,
-0.08879968523979187,
-0.014625185169279575,
0.00818646140396595,
0.11926400661468506,
0.03822431340813637,
-0.04270638898015022,
0.02798246219754219,
-0.016945816576480865,
-0.0141347860917449,
0.09928493946790695,
-0.0010682158172130585,
0.2941238284111023,
0.0017507513985037804,
0.07114533334970474,
0.08019296079874039,
-0.011041326448321342,
0.020438849925994873,
-0.015640178695321083,
-0.05007529258728027,
0.0329301692545414,
-0.07532386481761932,
-0.049740348011255264,
-0.041418157517910004,
0.07128182053565979,
0.05021623522043228,
-0.03755296394228935,
-0.023019403219223022,
0.04405788704752922,
0.10157134383916855,
0.1633700281381607,
-0.07053929567337036,
-0.08502316474914551,
-0.05972917750477791,
0.04008286073803902,
-0.036827921867370605,
-0.025495894253253937,
-0.039734434336423874,
0.018828175961971283,
-0.1144292801618576,
0.020279616117477417,
-0.06821339577436447,
0.06492931395769119,
-0.03850225359201431,
0.042845919728279114,
-0.05776003375649452,
0.003829518100246787,
-0.04255630448460579,
0.08254953473806381,
-0.08718647062778473,
0.09014218300580978,
-0.01141187734901905,
0.020040417090058327,
-0.05922779440879822,
-0.06121952086687088,
0.05829189717769623,
0.14185680449008942,
0.1641990691423416,
0.0640043392777443,
-0.10545118153095245,
0.03249736502766609,
-0.02217518724501133,
0.026941455900669098,
0.03536580502986908,
-0.061716675758361816,
0.11508549749851227,
-0.006529107224196196,
0.028427042067050934,
-0.049559980630874634,
0.035542864352464676,
-0.04450186714529991,
-0.14924195408821106,
0.10200097411870956,
-0.0633016973733902,
-0.03676383197307587,
-0.03903600946068764,
-0.004846814554184675,
-0.01065019890666008,
0.14230966567993164,
-0.13616915047168732,
-0.07825187593698502,
-0.12575949728488922,
-0.005584136117249727,
0.06547121703624725,
-0.09250389784574509,
-0.008283763192594051,
-0.003698765067383647,
0.1035674512386322,
-0.08887239545583725,
0.012120762839913368,
0.01854119263589382,
-0.1334388107061386,
-0.21453018486499786,
-0.08600172400474548,
0.069757379591465,
0.14825764298439026,
0.09379726648330688,
0.031348325312137604,
0.02160716988146305,
-0.03396298736333847,
-0.1033572405576706,
0.021610604599118233,
0.12847977876663208,
-0.09451376646757126,
0.055830664932727814,
-0.03275667130947113,
-0.12525340914726257,
-0.1633012890815735,
0.025126948952674866,
0.09541214257478714,
0.1807849258184433,
-0.048451658338308334,
0.1049494743347168,
0.19972948729991913,
-0.10545800626277924,
-0.20375055074691772,
-0.025586377829313278,
0.043631959706544876,
-0.10573144257068634,
0.04622030630707741,
-0.1698492020368576,
0.11369585990905762,
0.0681338831782341,
-0.04014461487531662,
0.026504036039114,
-0.2102811336517334,
-0.06845670193433762,
-0.02584732510149479,
0.08831767737865448,
0.14398720860481262,
-0.10306568443775177,
-0.0635896623134613,
0.007700193207710981,
-0.0037247647996991873,
0.11534591764211655,
-0.08159630000591278,
0.06779059022665024,
-0.012461049482226372,
0.10390729457139969,
0.05214862897992134,
-0.05895647406578064,
0.13249477744102478,
0.09128262847661972,
0.011120055802166462,
-0.05344337597489357,
-0.07980313897132874,
0.007297962438315153,
-0.0569748729467392,
0.036298513412475586,
0.02271321974694729,
0.002613948192447424,
-0.1092265248298645,
0.0052162231877446175,
-0.1073908656835556,
0.035397276282310486,
-0.04425245523452759,
-0.0159459225833416,
-0.11762578040361404,
0.11332586407661438,
0.17561088502407074,
0.06282888352870941,
-0.04617386683821678,
-0.07106632739305496,
-0.019485747441649437,
0.14962530136108398,
0.13081316649913788,
0.11573893576860428,
-0.10693148523569107,
0.0007139125955291092,
-0.01868867315351963,
0.07094603776931763,
-0.030581971630454063,
0.041493967175483704,
0.11259067803621292,
0.005434629041701555,
0.09637151658535004,
0.03656398132443428,
-0.1583775132894516,
0.030140602961182594,
0.014486594125628471,
-0.1120133325457573,
-0.2838858962059021,
0.03336475044488907,
0.04832411929965019,
-0.14834757149219513,
-0.010543819516897202,
0.10455314069986343,
-0.028208855539560318,
-0.02863445319235325,
-0.018487483263015747,
0.12394063919782639,
0.050392914563417435,
0.10320881009101868,
-0.035078149288892746,
0.02667992375791073,
-0.052271224558353424,
0.045586664229631424,
0.061441268771886826,
-0.12197446078062057,
0.04636216163635254,
0.1418924778699875,
-0.07256536185741425,
-0.06902670115232468,
-0.08816035836935043,
0.022337699308991432,
-0.17370112240314484,
-0.00766973290592432,
-0.026091862469911575,
-0.06292755901813507,
0.05192117393016815,
0.14072036743164062,
-0.02058049663901329,
-0.0810706838965416,
-0.017941229045391083,
0.009171226061880589,
-0.09817956387996674,
0.11306611448526382,
-0.004069931339472532,
0.026550453156232834,
0.04388353228569031,
0.0446409210562706,
0.01617964543402195,
0.013025619089603424,
-0.01073871087282896,
-0.006743414793163538,
-0.044451456516981125,
-0.04347410053014755,
0.0026501580141484737,
0.00673545291647315,
-0.030075792223215103,
-0.02438044175505638,
-0.002998425392434001,
-0.015801457688212395,
0.01289419736713171,
0.034336961805820465,
-0.061633411794900894,
-0.03332670405507088,
-0.000905300141312182,
0.036392390727996826,
-0.12263087183237076,
-0.019250452518463135,
0.09189680963754654,
-0.031272705644369125,
0.08197372406721115,
-0.003929273225367069,
-0.055490463972091675,
-0.001317968824878335,
-0.111576147377491,
0.032279908657073975,
-0.04817246273159981,
0.07803132385015488,
0.0015026250621303916,
-0.13402612507343292,
-0.0440237931907177,
-0.0448453426361084,
-0.04380376264452934,
0.016069740056991577,
0.07281965762376785,
-0.0585210807621479,
0.09150394052267075,
0.02665615826845169,
-0.05807173252105713,
-0.08386066555976868,
-0.007845612242817879,
-0.036356210708618164,
0.04516488313674927,
0.13757367432117462,
-0.0011576670221984386,
0.06435096263885498,
-0.15976884961128235,
0.015105151571333408,
0.06184147298336029,
0.01048173476010561,
0.03450816497206688,
-0.02070341818034649,
0.029753724113106728,
-0.015189821831882,
0.051914263516664505,
-0.07905630767345428,
-0.052349742501974106,
0.035857319831848145,
0.03980350121855736,
0.007157738320529461,
-0.09085218608379364,
-0.04772130772471428,
-0.03076491504907608,
-0.02012781985104084,
-0.05883645638823509,
-0.015413046814501286,
-0.03411101922392845,
-0.008331198245286942,
0.23956996202468872,
0.04120665788650513,
0.17283031344413757,
0.020380785688757896,
0.00681570079177618,
0.018918588757514954,
-0.04886842146515846,
-0.010073931887745857,
0.0325302854180336,
0.012205163016915321,
0.048811640590429306,
0.12906910479068756,
0.20527315139770508,
-0.11312674731016159,
0.10714860260486603,
-0.0017307265661656857,
-0.024669377133250237,
-0.052048563957214355,
-0.13430848717689514,
-0.004974755924195051,
0.012629813514649868,
-0.02417023666203022,
-0.10130742192268372,
0.10078906267881393,
0.05397827923297882,
-0.012205809354782104,
0.031593479216098785,
0.10776641219854355,
-0.0999530777335167,
0.003201748477295041,
-0.013779204338788986,
-0.016917532309889793,
0.010819760151207447,
0.09282070398330688,
0.021582450717687607,
0.06307016313076019,
-0.001213493524119258,
0.06500427424907684,
0.0799013152718544,
0.03958454728126526,
0.012795466929674149,
-0.02557169459760189,
-0.08502838760614395,
-0.008279641158878803,
-0.021318838000297546,
-0.018573185428977013,
0.23135283589363098,
0.08987852931022644,
-0.030632540583610535,
0.008730300702154636,
0.06372229009866714,
-0.043817438185214996,
0.0037679884117096663,
-0.06513985246419907,
0.22925198078155518,
0.046637456864118576,
-0.04131103307008743,
0.016089627519249916,
-0.12063505500555038,
0.09399914741516113,
0.10961252450942993,
0.04063400253653526,
-0.09352987259626389,
-0.009316904470324516,
-0.07526002824306488,
0.0021074821706861258,
0.06751284003257751,
-0.024052467197179794,
0.08764263987541199,
0.28353211283683777,
-0.09455930441617966,
0.15054717659950256,
-0.08836470544338226,
0.004499139729887247,
-0.08149385452270508,
0.04971051961183548,
0.05310194566845894,
-0.0014035978820174932,
-0.060503941029310226,
0.09334088116884232,
-0.09517984092235565,
-0.2562803030014038,
-0.008371398784220219,
0.021581724286079407,
-0.06476211547851562,
0.002821612171828747,
-0.013369560241699219,
0.021429257467389107,
0.0807107537984848,
0.01593293808400631,
-0.007201469503343105,
0.17756527662277222,
0.007383294869214296,
-0.1365378201007843,
-0.0195347610861063,
0.08186744898557663,
-0.08814292401075363,
0.2761118412017822,
0.031168203800916672,
0.05895277112722397,
0.10204613208770752,
-0.09984567016363144,
-0.12288848310709,
0.07726673036813736,
0.003979738801717758,
-0.04444051906466484,
0.013442953117191792,
0.2084038406610489,
0.0284116193652153,
0.03349306061863899,
0.09773218631744385,
0.02319910190999508,
0.04188048839569092,
0.07813127338886261,
-0.029725925996899605,
-0.05486162379384041,
0.10736146569252014,
-0.0627550333738327,
0.11692976206541061,
0.15560509264469147,
-0.016876643523573875,
0.03374312072992325,
-0.05834446847438812,
-0.08652067184448242,
0.0060981689020991325,
0.09253570437431335,
-0.0066749113611876965,
-0.15411101281642914,
0.058022093027830124,
-0.049387358129024506,
0.03768866881728172,
-0.12782323360443115,
-0.12064860761165619,
-0.01992974244058132,
-0.024977773427963257,
0.031207097694277763,
0.07619642466306686,
0.06081414222717285,
-0.03064165823161602,
-0.02638518065214157,
0.032658178359270096,
-0.04527777060866356,
0.1501597911119461,
-0.03783033788204193,
-0.028480730950832367
] |
null | null | ml-agents |
# **ppo** Agent playing **Huggy**
This is a trained model of a **ppo** agent playing **Huggy**
using the [Unity ML-Agents Library](https://github.com/Unity-Technologies/ml-agents).
## Usage (with ML-Agents)
The Documentation: https://unity-technologies.github.io/ml-agents/ML-Agents-Toolkit-Documentation/
We wrote a complete tutorial to learn to train your first agent using ML-Agents and publish it to the Hub:
- A *short tutorial* where you teach Huggy the Dog 🐶 to fetch the stick and then play with him directly in your
browser: https://huggingface.co/learn/deep-rl-course/unitbonus1/introduction
- A *longer tutorial* to understand how works ML-Agents:
https://huggingface.co/learn/deep-rl-course/unit5/introduction
### Resume the training
```bash
mlagents-learn <your_configuration_file_path.yaml> --run-id=<run_id> --resume
```
### Watch your Agent play
You can watch your agent **playing directly in your browser**
1. If the environment is part of ML-Agents official environments, go to https://huggingface.co/unity
2. Step 1: Find your model_id: tranquocthanh/ppo-Huggy
3. Step 2: Select your *.nn /*.onnx file
4. Click on Watch the agent play 👀
| {"library_name": "ml-agents", "tags": ["Huggy", "deep-reinforcement-learning", "reinforcement-learning", "ML-Agents-Huggy"]} | reinforcement-learning | tranquocthanh/ppo-Huggy | [
"ml-agents",
"tensorboard",
"onnx",
"Huggy",
"deep-reinforcement-learning",
"reinforcement-learning",
"ML-Agents-Huggy",
"region:us"
] | 2023-11-11T07:38:25+00:00 | [] | [] | TAGS
#ml-agents #tensorboard #onnx #Huggy #deep-reinforcement-learning #reinforcement-learning #ML-Agents-Huggy #region-us
|
# ppo Agent playing Huggy
This is a trained model of a ppo agent playing Huggy
using the Unity ML-Agents Library.
## Usage (with ML-Agents)
The Documentation: URL
We wrote a complete tutorial to learn to train your first agent using ML-Agents and publish it to the Hub:
- A *short tutorial* where you teach Huggy the Dog to fetch the stick and then play with him directly in your
browser: URL
- A *longer tutorial* to understand how works ML-Agents:
URL
### Resume the training
### Watch your Agent play
You can watch your agent playing directly in your browser
1. If the environment is part of ML-Agents official environments, go to URL
2. Step 1: Find your model_id: tranquocthanh/ppo-Huggy
3. Step 2: Select your *.nn /*.onnx file
4. Click on Watch the agent play
| [
"# ppo Agent playing Huggy\n This is a trained model of a ppo agent playing Huggy\n using the Unity ML-Agents Library.\n\n ## Usage (with ML-Agents)\n The Documentation: URL\n\n We wrote a complete tutorial to learn to train your first agent using ML-Agents and publish it to the Hub:\n - A *short tutorial* where you teach Huggy the Dog to fetch the stick and then play with him directly in your\n browser: URL\n - A *longer tutorial* to understand how works ML-Agents:\n URL\n\n ### Resume the training\n \n\n ### Watch your Agent play\n You can watch your agent playing directly in your browser\n\n 1. If the environment is part of ML-Agents official environments, go to URL\n 2. Step 1: Find your model_id: tranquocthanh/ppo-Huggy\n 3. Step 2: Select your *.nn /*.onnx file\n 4. Click on Watch the agent play"
] | [
"TAGS\n#ml-agents #tensorboard #onnx #Huggy #deep-reinforcement-learning #reinforcement-learning #ML-Agents-Huggy #region-us \n",
"# ppo Agent playing Huggy\n This is a trained model of a ppo agent playing Huggy\n using the Unity ML-Agents Library.\n\n ## Usage (with ML-Agents)\n The Documentation: URL\n\n We wrote a complete tutorial to learn to train your first agent using ML-Agents and publish it to the Hub:\n - A *short tutorial* where you teach Huggy the Dog to fetch the stick and then play with him directly in your\n browser: URL\n - A *longer tutorial* to understand how works ML-Agents:\n URL\n\n ### Resume the training\n \n\n ### Watch your Agent play\n You can watch your agent playing directly in your browser\n\n 1. If the environment is part of ML-Agents official environments, go to URL\n 2. Step 1: Find your model_id: tranquocthanh/ppo-Huggy\n 3. Step 2: Select your *.nn /*.onnx file\n 4. Click on Watch the agent play"
] | [
44,
201
] | [
"passage: TAGS\n#ml-agents #tensorboard #onnx #Huggy #deep-reinforcement-learning #reinforcement-learning #ML-Agents-Huggy #region-us \n# ppo Agent playing Huggy\n This is a trained model of a ppo agent playing Huggy\n using the Unity ML-Agents Library.\n\n ## Usage (with ML-Agents)\n The Documentation: URL\n\n We wrote a complete tutorial to learn to train your first agent using ML-Agents and publish it to the Hub:\n - A *short tutorial* where you teach Huggy the Dog to fetch the stick and then play with him directly in your\n browser: URL\n - A *longer tutorial* to understand how works ML-Agents:\n URL\n\n ### Resume the training\n \n\n ### Watch your Agent play\n You can watch your agent playing directly in your browser\n\n 1. If the environment is part of ML-Agents official environments, go to URL\n 2. Step 1: Find your model_id: tranquocthanh/ppo-Huggy\n 3. Step 2: Select your *.nn /*.onnx file\n 4. Click on Watch the agent play"
] | [
0.021537868306040764,
0.03173721954226494,
-0.004875507205724716,
0.0325283519923687,
0.13630226254463196,
-0.008571560494601727,
0.13926388323307037,
0.11587322503328323,
0.10486011207103729,
0.07716932147741318,
0.055119588971138,
0.05009840056300163,
0.05839478224515915,
0.19173218309879303,
0.07746931910514832,
-0.2291669100522995,
0.0029455781914293766,
-0.07571582496166229,
0.03421948850154877,
0.0901833176612854,
0.045714303851127625,
-0.044062476605176926,
0.07394207268953323,
0.034046340733766556,
-0.028813524171710014,
-0.01065964624285698,
-0.08403664827346802,
-0.019417420029640198,
0.04856636002659798,
0.005974163766950369,
-0.015817197039723396,
-0.025341985747218132,
0.061411481350660324,
-0.2171565294265747,
0.032395899295806885,
0.0662582516670227,
-0.010227295570075512,
0.012027652002871037,
0.10900411754846573,
0.028147898614406586,
0.11250819265842438,
-0.06031649559736252,
0.0658782571554184,
0.06611895561218262,
-0.06842809170484543,
-0.0241989828646183,
-0.11194662004709244,
0.03415319323539734,
0.2086232304573059,
0.10614002496004105,
-0.0018046194454655051,
0.11908946186304092,
-0.09907370805740356,
0.03783104941248894,
0.20906634628772736,
-0.24566741287708282,
-0.07180794328451157,
0.09454521536827087,
0.08859904855489731,
-0.019593577831983566,
-0.05645056813955307,
0.0304575152695179,
-0.01661936193704605,
0.04435180127620697,
0.0902843028306961,
-0.03217291831970215,
0.231391042470932,
-0.017641957849264145,
-0.0824846401810646,
-0.06534867733716965,
0.052804481238126755,
0.05847081169486046,
-0.06019364297389984,
-0.19131852686405182,
0.01965913362801075,
0.11743109673261642,
-0.027278989553451538,
0.010540640912950039,
0.0836547464132309,
-0.008541377261281013,
-0.052925243973731995,
-0.0963936597108841,
-0.056072138249874115,
-0.049323610961437225,
0.05599183589220047,
0.12574885785579681,
-0.0012022143928334117,
-0.03263184428215027,
0.07396262139081955,
0.07245020568370819,
0.034409571439027786,
-0.033257611095905304,
-0.03399902954697609,
-0.037272095680236816,
-0.12447511404752731,
-0.004858107306063175,
-0.011081085540354252,
0.06969466060400009,
0.06068744882941246,
0.14406757056713104,
0.012012043036520481,
0.023524275049567223,
0.01095118559896946,
0.05000859871506691,
-0.014966717921197414,
0.13332758843898773,
0.003848972963169217,
0.024462148547172546,
0.03422332927584648,
0.038552723824977875,
0.06228961795568466,
-0.05119817331433296,
-0.09274996817111969,
0.07982400804758072,
-0.10825537145137787,
0.09983205795288086,
0.07984426617622375,
0.027437444776296616,
-0.08154725283384323,
-0.02700093947350979,
0.02587149851024151,
-0.13149793446063995,
0.07474880665540695,
0.05176986753940582,
-0.03365037590265274,
-0.08499608188867569,
-0.004700575023889542,
0.011217113584280014,
-0.08174413442611694,
0.030754469335079193,
-0.03265984728932381,
0.047495629638433456,
-0.02174440585076809,
-0.04093819111585617,
0.09467976540327072,
-0.04586183652281761,
-0.031998228281736374,
-0.15837162733078003,
-0.0920860543847084,
-0.05234779417514801,
0.04695047810673714,
-0.05931658297777176,
-0.10370782017707825,
-0.04409436136484146,
0.013603802770376205,
-0.08971116691827774,
-0.0007754333782941103,
-0.054023563861846924,
-0.06881711632013321,
-0.005139866843819618,
-0.04631727188825607,
0.07640167325735092,
0.1456867754459381,
0.03212401270866394,
-0.028171665966510773,
0.08136843144893646,
-0.17425008118152618,
0.0986822247505188,
-0.1034465953707695,
0.1796165406703949,
-0.061900220811367035,
0.006424447521567345,
0.025975855067372322,
0.01478086318820715,
0.01837494596838951,
0.15905284881591797,
-0.051718685775995255,
-0.10818210989236832,
0.16915230453014374,
-0.03826157748699188,
-0.1158747747540474,
0.0736752599477768,
0.036660995334386826,
0.061861779540777206,
0.041276924312114716,
0.23445454239845276,
0.0987299457192421,
-0.28773728013038635,
0.06229688599705696,
0.03355797752737999,
-0.13718181848526,
0.031531237065792084,
0.13787159323692322,
-0.06497300416231155,
0.00887037068605423,
0.0005504965083673596,
-0.12616509199142456,
0.06905857473611832,
-0.02092181146144867,
-0.031825125217437744,
0.04658203572034836,
-0.03352672979235649,
-0.008068199269473553,
-0.013079351745545864,
-0.006821250542998314,
-0.04874382168054581,
-0.09065382182598114,
-0.05267086625099182,
0.08738932013511658,
-0.01673174649477005,
0.07596998661756516,
-0.07019095122814178,
0.11774621158838272,
0.039063118398189545,
0.04052753746509552,
-0.0953475758433342,
-0.09903929382562637,
0.01427406258881092,
0.02957533672451973,
0.09446396678686142,
-0.0674266666173935,
0.05664357542991638,
0.06887339800596237,
0.006154362112283707,
-0.06635072082281113,
-0.08906998485326767,
-0.016802089288830757,
-0.06371292471885681,
-0.1087513267993927,
-0.05722703039646149,
-0.057099707424640656,
0.1307111382484436,
-0.09288998693227768,
0.057884518057107925,
-0.10105621069669724,
0.049740035086870193,
-0.010199155658483505,
-0.026702003553509712,
0.050474122166633606,
0.010364172048866749,
0.028533637523651123,
-0.0658390074968338,
0.10382210463285446,
0.0406157411634922,
-0.08219292014837265,
0.0832439735531807,
-0.0662274956703186,
-0.04014405235648155,
0.10307471454143524,
0.03458090499043465,
-0.018075359985232353,
-0.056068118661642075,
-0.08773874491453171,
0.005615384317934513,
-0.07660191506147385,
-0.01623251847922802,
0.13607680797576904,
0.0986364334821701,
0.11976369470357895,
-0.07543123513460159,
-0.06305091083049774,
-0.02741418033838272,
-0.10948559641838074,
-0.04996776208281517,
0.14914794266223907,
0.030440129339694977,
0.06598823517560959,
0.05184559151530266,
0.07559650391340256,
0.07234235107898712,
0.10408072173595428,
0.02169972099363804,
-0.1233246922492981,
-0.018834657967090607,
0.06445667892694473,
0.053410667926073074,
0.005026625003665686,
0.021932242438197136,
0.001503396313637495,
0.02230699360370636,
-0.03676968812942505,
-0.008630038239061832,
-0.13407525420188904,
-0.07356148213148117,
0.01590048521757126,
-0.032815057784318924,
0.025815630331635475,
-0.009433874860405922,
-0.03032532148063183,
0.06079227477312088,
0.09474361687898636,
0.026503130793571472,
-0.005385247990489006,
-0.048601921647787094,
-0.10843169689178467,
0.08257840573787689,
-0.09833522140979767,
-0.33244600892066956,
-0.11503712087869644,
-0.11638448387384415,
-0.04540025442838669,
0.030227884650230408,
0.06068779528141022,
-0.158474400639534,
-0.03614288195967674,
-0.11272644251585007,
-0.041228003799915314,
0.047591403126716614,
-0.06958981603384018,
0.17664599418640137,
0.10217831283807755,
0.020997466519474983,
-0.0829349160194397,
-0.019910477101802826,
0.010611345991492271,
-0.06499994546175003,
0.035866472870111465,
0.012320339679718018,
0.06666438281536102,
0.12523037195205688,
0.071677066385746,
0.041721783578395844,
-0.03139157593250275,
0.08190152049064636,
-0.07487654685974121,
-0.02482689917087555,
0.12058208882808685,
-0.017625782638788223,
0.08596959710121155,
0.04579262435436249,
0.02638745866715908,
-0.030362507328391075,
0.055837079882621765,
0.010962904430925846,
-0.07077594846487045,
-0.19166871905326843,
-0.10420771688222885,
-0.03431573882699013,
0.23714682459831238,
0.07870467007160187,
0.08538924902677536,
-0.045858994126319885,
-0.042966991662979126,
-0.01411339733749628,
-0.05615417659282684,
0.13577629625797272,
0.12193141132593155,
-0.021688414737582207,
-0.0716765746474266,
0.001979558262974024,
-0.04230571165680885,
0.02082335576415062,
0.09542049467563629,
-0.0026774907018989325,
0.07315098494291306,
0.03080553375184536,
0.042699143290519714,
0.03478743135929108,
-0.029687335714697838,
-0.06573083251714706,
0.06355360150337219,
0.03351888060569763,
-0.0015315170167014003,
-0.03211159259080887,
-0.08387982100248337,
-0.03258838132023811,
0.08800417184829712,
0.1287750005722046,
-0.06551983207464218,
-0.08723659813404083,
0.07055184990167618,
0.10444524139165878,
0.10798503458499908,
0.016311246901750565,
-0.13895370066165924,
-0.04687069356441498,
0.00498778373003006,
-0.11693137884140015,
0.029862279072403908,
-0.0033539729192852974,
0.03552591800689697,
-0.18898022174835205,
0.06991663575172424,
0.020480653271079063,
0.11957556754350662,
0.05849815905094147,
0.013473214581608772,
0.03254619240760803,
0.09441119432449341,
-0.018744122236967087,
0.06689173728227615,
-0.17463836073875427,
0.06877564638853073,
-0.010909614153206348,
0.07071522623300552,
-0.04009686037898064,
-0.0030151628889143467,
0.08714591711759567,
-0.02760019712150097,
0.16359838843345642,
0.03650007024407387,
0.08679088205099106,
-0.09442421048879623,
-0.1923714429140091,
-0.04928961023688316,
0.0026279117446392775,
-0.08322519063949585,
0.0703992024064064,
-0.010045194067060947,
-0.044665656983852386,
-0.09592555463314056,
0.13036827743053436,
0.005237060599029064,
-0.06712403148412704,
0.005835669580847025,
-0.06433805823326111,
0.029384881258010864,
-0.05701880529522896,
-0.03351910039782524,
-0.02032540552318096,
0.21923299133777618,
0.11456473916769028,
-0.022434044629335403,
-0.0929185077548027,
-0.0492888018488884,
-0.0305720753967762,
-0.02658703923225403,
0.002834799000993371,
-0.01006841566413641,
0.1386343091726303,
-0.07260765880346298,
-0.04463662579655647,
0.0040605273097753525,
-0.10001687705516815,
-0.11804914474487305,
-0.01396421529352665,
0.24654242396354675,
-0.002248045988380909,
0.10099249333143234,
-0.008917136117815971,
0.01100467424839735,
-0.002510658698156476,
-0.0847349613904953,
0.1265927106142044,
0.1622934341430664,
0.01770113594830036,
0.06201343983411789,
-0.08969056606292725,
0.04239814728498459,
-0.10154050588607788,
-0.03174036368727684,
0.19177792966365814,
0.2924743592739105,
-0.026482976973056793,
0.21143262088298798,
0.0682656317949295,
-0.05777804180979729,
-0.21449372172355652,
-0.07811212539672852,
0.03878416121006012,
-0.01639222353696823,
0.13977506756782532,
-0.1415417343378067,
0.032814547419548035,
0.03557702153921127,
-0.009653446264564991,
0.016641739755868912,
-0.16353446245193481,
-0.09291820973157883,
-0.010741119273006916,
0.06163322925567627,
0.0055332910269498825,
-0.10189323127269745,
-0.04874525964260101,
-0.03232955560088158,
-0.11924207955598831,
0.07553176581859589,
-0.18008095026016235,
0.08467615395784378,
0.007146006915718317,
0.022651683539152145,
0.03883777931332588,
-0.03003108873963356,
0.12281116098165512,
-0.0650724545121193,
-0.02929883450269699,
-0.09164408594369888,
0.012842757627367973,
0.014889813959598541,
-0.10000770539045334,
0.08028847724199295,
-0.040883779525756836,
-0.05930210277438164,
-0.157774418592453,
-0.044662754982709885,
-0.039833396673202515,
0.039567407220602036,
-0.022320955991744995,
-0.02013498917222023,
-0.012306948192417622,
0.07530811429023743,
0.08718468248844147,
0.036213699728250504,
0.051819585263729095,
-0.029413435608148575,
-0.0026863072998821735,
0.10704654455184937,
0.10348628461360931,
0.013947672210633755,
-0.09163184463977814,
-0.03926079347729683,
-0.03856312856078148,
-0.01690363697707653,
-0.07050012052059174,
0.013040524907410145,
0.038916997611522675,
0.009658635593950748,
0.05609414726495743,
0.05819733068346977,
-0.10379476100206375,
-0.005179306026548147,
0.08125219494104385,
-0.09962285310029984,
-0.13663609325885773,
-0.040217529982328415,
-0.07440023869276047,
-0.043007027357816696,
-0.0571838915348053,
0.04617021977901459,
-0.024694889783859253,
-0.00452657463029027,
0.05322389304637909,
0.04123245179653168,
-0.05766158550977707,
0.038603026419878006,
-0.02628154680132866,
0.015679186210036278,
-0.0696151852607727,
0.1406651884317398,
0.01101077999919653,
-0.052205923944711685,
0.023089412599802017,
0.2029493749141693,
-0.06568258255720139,
-0.06951350718736649,
-0.04063989222049713,
0.03229193761944771,
0.13745558261871338,
-0.03013494797050953,
-0.036287542432546616,
-0.08165402710437775,
0.0789889469742775,
-0.0772567093372345,
0.005259350407868624,
-0.07435809820890427,
0.03445804491639137,
0.09028298407793045,
-0.0976109653711319,
0.0950426384806633,
0.01641988940536976,
-0.058746010065078735,
-0.09759484231472015,
0.10051403939723969,
0.05006104335188866,
0.15871797502040863,
-0.02281961962580681,
-0.060523632913827896,
-0.1467951387166977,
0.009077206254005432,
-0.05123956874012947,
-0.006242798641324043,
-0.17370568215847015,
-0.02064642496407032,
-0.027751490473747253,
0.05046834051609039,
-0.009338504634797573,
0.038210179656744,
-0.05508610978722572,
-0.07136940956115723,
-0.05085068568587303,
0.08082873374223709,
-0.061751317232847214,
-0.02759985812008381,
0.03236766904592514,
-0.07684754580259323,
0.09192529320716858,
0.0688444972038269,
-0.019038105383515358,
-0.04986333101987839,
-0.08553478121757507,
-0.04163814336061478,
0.020180344581604004,
-0.040594201534986496,
0.04011747986078262,
-0.1615716964006424,
0.0015166506636887789,
-0.038428593426942825,
-0.09920240938663483,
0.00955477636307478,
0.10567735135555267,
-0.08379470556974411,
0.0542452298104763,
0.002398038748651743,
-0.12938395142555237,
-0.07491883635520935,
-0.005924967583268881,
-0.00022688334865961224,
0.06124445050954819,
0.07543159276247025,
-0.07523500919342041,
0.16052529215812683,
-0.13234645128250122,
-0.010996871627867222,
0.007859237492084503,
0.023360636085271835,
0.01112590916454792,
-0.0938711017370224,
0.03682153671979904,
-0.008489682339131832,
0.12004880607128143,
0.07361257076263428,
-0.00020662034512497485,
0.027464555576443672,
0.015223748981952667,
0.1066984087228775,
0.0029477018397301435,
0.01446697860956192,
-0.01601330004632473,
0.0012191932182759047,
0.05334589257836342,
-0.009953418746590614,
0.06917348504066467,
-0.1277877539396286,
0.1053580492734909,
0.06847470253705978,
0.1313353329896927,
0.04960014298558235,
0.0686689093708992,
-0.09104833006858826,
-0.19619441032409668,
-0.06146080419421196,
0.00046583364019170403,
0.03944585472345352,
-0.0565805658698082,
0.21892337501049042,
0.11368316411972046,
-0.21523788571357727,
0.06093871593475342,
-0.004060111008584499,
0.014510829001665115,
-0.08585978299379349,
-0.12349269539117813,
0.0006818572292104363,
-0.20811955630779266,
0.06470460444688797,
-0.06773633509874344,
0.017836399376392365,
-0.02341107651591301,
-0.011837939731776714,
-0.005966979544609785,
0.07024700939655304,
-0.11656227707862854,
-0.06662274897098541,
0.0739578828215599,
-0.037319011986255646,
0.017481233924627304,
0.0011167890625074506,
-0.01864761859178543,
-0.043650101870298386,
-0.06592453271150589,
0.06056603044271469,
0.06699270755052567,
0.014764233492314816,
0.05253366380929947,
-0.06440403312444687,
-0.06921355426311493,
0.0361451618373394,
0.0025380849838256836,
0.012724354863166809,
0.12399013340473175,
0.047886766493320465,
-0.09383907169103622,
0.004218629095703363,
0.21860085427761078,
-0.05908765271306038,
-0.002929840935394168,
-0.10359431058168411,
0.155527725815773,
-0.019268149510025978,
-0.057638298720121384,
-0.04262353479862213,
-0.09708705544471741,
-0.08510881662368774,
0.26043519377708435,
0.1283751279115677,
-0.05987680330872536,
0.02237626537680626,
-0.04356032609939575,
0.025098366662859917,
0.008269477635622025,
0.12511073052883148,
0.08751644939184189,
0.1555650383234024,
-0.07871891558170319,
-0.026867011561989784,
-0.015312540344893932,
-0.07700327038764954,
-0.17269478738307953,
-0.026927512139081955,
0.02092898264527321,
-0.022743377834558487,
-0.03489302843809128,
0.06083717569708824,
-0.12430579960346222,
-0.11985806375741959,
0.07498304545879364,
-0.08440951257944107,
-0.06740687042474747,
-0.017175547778606415,
0.006504526361823082,
0.03425733000040054,
0.1262684464454651,
0.053157009184360504,
0.027189064770936966,
0.12898781895637512,
-0.03157399222254753,
-0.07112366706132889,
0.02035035751760006,
0.08791857212781906,
-0.08289197087287903,
0.19090741872787476,
-0.03951144963502884,
0.022989042103290558,
0.049171075224876404,
0.034771498292684555,
-0.1289181262254715,
0.058343663811683655,
0.03801259770989418,
-0.16229037940502167,
0.007558317389339209,
0.06633517891168594,
-0.06531786918640137,
-0.021971937268972397,
0.07452124357223511,
-0.03462562337517738,
0.004868382588028908,
0.11138616502285004,
0.0021099669393152,
-0.04404430091381073,
0.08027879148721695,
-0.15717674791812897,
0.10024254769086838,
0.15878500044345856,
-0.06213996931910515,
-0.004608800634741783,
-0.04290078580379486,
0.02627580799162388,
0.02397354505956173,
0.027482789009809494,
-0.01568295992910862,
-0.13870298862457275,
0.014099149033427238,
0.019173819571733475,
0.02614634856581688,
-0.2834334373474121,
-0.11837825179100037,
-0.04960492253303528,
-0.032429467886686325,
-0.04987531155347824,
0.11140468716621399,
0.07972145080566406,
-0.007947901263833046,
-0.01010517030954361,
-0.16411179304122925,
0.04345962405204773,
0.1634565144777298,
-0.07719890028238297,
-0.014493984170258045
] |
null | null | peft |
# Model Card for Model ID
<!-- Provide a quick summary of what the model is/does. -->
## Model Details
### Model Description
<!-- Provide a longer summary of what this model is. -->
- **Developed by:** [More Information Needed]
- **Shared by [optional]:** [More Information Needed]
- **Model type:** [More Information Needed]
- **Language(s) (NLP):** [More Information Needed]
- **License:** [More Information Needed]
- **Finetuned from model [optional]:** [More Information Needed]
### Model Sources [optional]
<!-- Provide the basic links for the model. -->
- **Repository:** [More Information Needed]
- **Paper [optional]:** [More Information Needed]
- **Demo [optional]:** [More Information Needed]
## Uses
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
### Direct Use
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
[More Information Needed]
### Downstream Use [optional]
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
[More Information Needed]
### Out-of-Scope Use
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
[More Information Needed]
## Bias, Risks, and Limitations
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
[More Information Needed]
### Recommendations
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
## How to Get Started with the Model
Use the code below to get started with the model.
[More Information Needed]
## Training Details
### Training Data
<!-- This should link to a Data Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
[More Information Needed]
### Training Procedure
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
#### Preprocessing [optional]
[More Information Needed]
#### Training Hyperparameters
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
#### Speeds, Sizes, Times [optional]
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
[More Information Needed]
## Evaluation
<!-- This section describes the evaluation protocols and provides the results. -->
### Testing Data, Factors & Metrics
#### Testing Data
<!-- This should link to a Data Card if possible. -->
[More Information Needed]
#### Factors
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
[More Information Needed]
#### Metrics
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
[More Information Needed]
### Results
[More Information Needed]
#### Summary
## Model Examination [optional]
<!-- Relevant interpretability work for the model goes here -->
[More Information Needed]
## Environmental Impact
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
- **Hardware Type:** [More Information Needed]
- **Hours used:** [More Information Needed]
- **Cloud Provider:** [More Information Needed]
- **Compute Region:** [More Information Needed]
- **Carbon Emitted:** [More Information Needed]
## Technical Specifications [optional]
### Model Architecture and Objective
[More Information Needed]
### Compute Infrastructure
[More Information Needed]
#### Hardware
[More Information Needed]
#### Software
[More Information Needed]
## Citation [optional]
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
**BibTeX:**
[More Information Needed]
**APA:**
[More Information Needed]
## Glossary [optional]
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
[More Information Needed]
## More Information [optional]
[More Information Needed]
## Model Card Authors [optional]
[More Information Needed]
## Model Card Contact
[More Information Needed]
## Training procedure
### Framework versions
- PEFT 0.6.2.dev0
| {"library_name": "peft", "base_model": "bigscience/bloom-3b"} | null | pachaar/bloom-3b-qa | [
"peft",
"safetensors",
"arxiv:1910.09700",
"base_model:bigscience/bloom-3b",
"region:us"
] | 2023-11-11T07:40:07+00:00 | [
"1910.09700"
] | [] | TAGS
#peft #safetensors #arxiv-1910.09700 #base_model-bigscience/bloom-3b #region-us
|
# Model Card for Model ID
## Model Details
### Model Description
- Developed by:
- Shared by [optional]:
- Model type:
- Language(s) (NLP):
- License:
- Finetuned from model [optional]:
### Model Sources [optional]
- Repository:
- Paper [optional]:
- Demo [optional]:
## Uses
### Direct Use
### Downstream Use [optional]
### Out-of-Scope Use
## Bias, Risks, and Limitations
### Recommendations
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
## How to Get Started with the Model
Use the code below to get started with the model.
## Training Details
### Training Data
### Training Procedure
#### Preprocessing [optional]
#### Training Hyperparameters
- Training regime:
#### Speeds, Sizes, Times [optional]
## Evaluation
### Testing Data, Factors & Metrics
#### Testing Data
#### Factors
#### Metrics
### Results
#### Summary
## Model Examination [optional]
## Environmental Impact
Carbon emissions can be estimated using the Machine Learning Impact calculator presented in Lacoste et al. (2019).
- Hardware Type:
- Hours used:
- Cloud Provider:
- Compute Region:
- Carbon Emitted:
## Technical Specifications [optional]
### Model Architecture and Objective
### Compute Infrastructure
#### Hardware
#### Software
[optional]
BibTeX:
APA:
## Glossary [optional]
## More Information [optional]
## Model Card Authors [optional]
## Model Card Contact
## Training procedure
### Framework versions
- PEFT 0.6.2.dev0
| [
"# Model Card for Model ID",
"## Model Details",
"### Model Description\n\n\n\n\n\n- Developed by: \n- Shared by [optional]: \n- Model type: \n- Language(s) (NLP): \n- License: \n- Finetuned from model [optional]:",
"### Model Sources [optional]\n\n\n\n- Repository: \n- Paper [optional]: \n- Demo [optional]:",
"## Uses",
"### Direct Use",
"### Downstream Use [optional]",
"### Out-of-Scope Use",
"## Bias, Risks, and Limitations",
"### Recommendations\n\n\n\nUsers (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.",
"## How to Get Started with the Model\n\nUse the code below to get started with the model.",
"## Training Details",
"### Training Data",
"### Training Procedure",
"#### Preprocessing [optional]",
"#### Training Hyperparameters\n\n- Training regime:",
"#### Speeds, Sizes, Times [optional]",
"## Evaluation",
"### Testing Data, Factors & Metrics",
"#### Testing Data",
"#### Factors",
"#### Metrics",
"### Results",
"#### Summary",
"## Model Examination [optional]",
"## Environmental Impact\n\n\n\nCarbon emissions can be estimated using the Machine Learning Impact calculator presented in Lacoste et al. (2019).\n\n- Hardware Type: \n- Hours used: \n- Cloud Provider: \n- Compute Region: \n- Carbon Emitted:",
"## Technical Specifications [optional]",
"### Model Architecture and Objective",
"### Compute Infrastructure",
"#### Hardware",
"#### Software\n\n\n\n[optional]\n\n\n\nBibTeX:\n\n\n\nAPA:",
"## Glossary [optional]",
"## More Information [optional]",
"## Model Card Authors [optional]",
"## Model Card Contact",
"## Training procedure",
"### Framework versions\n\n\n- PEFT 0.6.2.dev0"
] | [
"TAGS\n#peft #safetensors #arxiv-1910.09700 #base_model-bigscience/bloom-3b #region-us \n",
"# Model Card for Model ID",
"## Model Details",
"### Model Description\n\n\n\n\n\n- Developed by: \n- Shared by [optional]: \n- Model type: \n- Language(s) (NLP): \n- License: \n- Finetuned from model [optional]:",
"### Model Sources [optional]\n\n\n\n- Repository: \n- Paper [optional]: \n- Demo [optional]:",
"## Uses",
"### Direct Use",
"### Downstream Use [optional]",
"### Out-of-Scope Use",
"## Bias, Risks, and Limitations",
"### Recommendations\n\n\n\nUsers (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.",
"## How to Get Started with the Model\n\nUse the code below to get started with the model.",
"## Training Details",
"### Training Data",
"### Training Procedure",
"#### Preprocessing [optional]",
"#### Training Hyperparameters\n\n- Training regime:",
"#### Speeds, Sizes, Times [optional]",
"## Evaluation",
"### Testing Data, Factors & Metrics",
"#### Testing Data",
"#### Factors",
"#### Metrics",
"### Results",
"#### Summary",
"## Model Examination [optional]",
"## Environmental Impact\n\n\n\nCarbon emissions can be estimated using the Machine Learning Impact calculator presented in Lacoste et al. (2019).\n\n- Hardware Type: \n- Hours used: \n- Cloud Provider: \n- Compute Region: \n- Carbon Emitted:",
"## Technical Specifications [optional]",
"### Model Architecture and Objective",
"### Compute Infrastructure",
"#### Hardware",
"#### Software\n\n\n\n[optional]\n\n\n\nBibTeX:\n\n\n\nAPA:",
"## Glossary [optional]",
"## More Information [optional]",
"## Model Card Authors [optional]",
"## Model Card Contact",
"## Training procedure",
"### Framework versions\n\n\n- PEFT 0.6.2.dev0"
] | [
35,
6,
3,
45,
28,
3,
4,
9,
9,
10,
42,
20,
3,
4,
5,
9,
11,
13,
3,
12,
5,
4,
5,
3,
4,
9,
53,
9,
8,
6,
3,
14,
8,
7,
9,
4,
3,
14
] | [
"passage: TAGS\n#peft #safetensors #arxiv-1910.09700 #base_model-bigscience/bloom-3b #region-us \n# Model Card for Model ID## Model Details### Model Description\n\n\n\n\n\n- Developed by: \n- Shared by [optional]: \n- Model type: \n- Language(s) (NLP): \n- License: \n- Finetuned from model [optional]:### Model Sources [optional]\n\n\n\n- Repository: \n- Paper [optional]: \n- Demo [optional]:## Uses### Direct Use### Downstream Use [optional]### Out-of-Scope Use## Bias, Risks, and Limitations### Recommendations\n\n\n\nUsers (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.## How to Get Started with the Model\n\nUse the code below to get started with the model.## Training Details### Training Data### Training Procedure#### Preprocessing [optional]#### Training Hyperparameters\n\n- Training regime:#### Speeds, Sizes, Times [optional]## Evaluation### Testing Data, Factors & Metrics#### Testing Data#### Factors#### Metrics### Results#### Summary## Model Examination [optional]## Environmental Impact\n\n\n\nCarbon emissions can be estimated using the Machine Learning Impact calculator presented in Lacoste et al. (2019).\n\n- Hardware Type: \n- Hours used: \n- Cloud Provider: \n- Compute Region: \n- Carbon Emitted:## Technical Specifications [optional]### Model Architecture and Objective### Compute Infrastructure#### Hardware#### Software\n\n\n\n[optional]\n\n\n\nBibTeX:\n\n\n\nAPA:## Glossary [optional]## More Information [optional]## Model Card Authors [optional]## Model Card Contact## Training procedure### Framework versions\n\n\n- PEFT 0.6.2.dev0"
] | [
-0.0853995531797409,
0.16891077160835266,
-0.004350428935140371,
0.03758690878748894,
0.09251604974269867,
0.019826121628284454,
0.05163588002324104,
0.10956310480833054,
-0.06050242856144905,
0.11465007066726685,
0.051282260566949844,
0.06964007765054703,
0.09843422472476959,
0.20332734286785126,
0.015446469187736511,
-0.23242594301700592,
0.014935481362044811,
-0.10320564359426498,
-0.005627134814858437,
0.11878376454114914,
0.15957887470722198,
-0.09591750055551529,
0.07862638682126999,
-0.024822361767292023,
-0.018720468506217003,
-0.017156755551695824,
-0.06797546148300171,
-0.05694406107068062,
0.05208732187747955,
0.07118093967437744,
0.049791641533374786,
-0.0014479466481134295,
0.07742854207754135,
-0.263730525970459,
0.01840965636074543,
0.0426696315407753,
-0.0055103846825659275,
0.08061651885509491,
0.10999783873558044,
-0.04869807884097099,
0.10852817445993423,
-0.04938172549009323,
0.12353485077619553,
0.06547611951828003,
-0.08058974891901016,
-0.16913877427577972,
-0.08305884897708893,
0.09543256461620331,
0.14341598749160767,
0.06974069029092789,
-0.0371481254696846,
0.1419873982667923,
-0.13454709947109222,
0.01488476525992155,
0.06415680050849915,
-0.057316649705171585,
-0.08411559462547302,
0.0503557026386261,
0.1071479544043541,
0.08984682708978653,
-0.13968826830387115,
-0.04466506838798523,
0.026271605864167213,
0.03485775366425514,
0.07095054537057877,
0.021448999643325806,
0.1269211620092392,
0.03511907905340195,
-0.141971617937088,
-0.027470726519823074,
0.1705235242843628,
0.046786829829216,
-0.0536465048789978,
-0.20464560389518738,
0.000353199546225369,
-0.08569090068340302,
-0.027801543474197388,
-0.04789811372756958,
0.046838320791721344,
-0.02104545198380947,
0.07954540103673935,
0.005776264704763889,
-0.09372112900018692,
-0.038460176438093185,
0.07482357323169708,
0.04199117794632912,
0.018793169409036636,
-0.026493847370147705,
-0.011768851429224014,
0.11776236444711685,
0.06253959983587265,
-0.11874036490917206,
-0.06690481305122375,
-0.055513352155685425,
-0.04905698820948601,
-0.06886791437864304,
0.028319958597421646,
0.052533287554979324,
0.07357930392026901,
0.22424159944057465,
-0.013282046653330326,
0.043916184455156326,
0.05752509459853172,
0.013443452306091785,
0.0610487163066864,
0.08488509058952332,
-0.0865144208073616,
-0.14002251625061035,
-0.023947974666953087,
0.085508331656456,
0.0000038226980905164964,
-0.00748142134398222,
-0.028910275548696518,
0.045075394213199615,
0.038377054035663605,
0.10576190054416656,
0.07138778269290924,
-0.022704368457198143,
-0.09376464784145355,
-0.03939690813422203,
0.21649745106697083,
-0.14406037330627441,
0.03727889433503151,
0.023290613666176796,
-0.02973252907395363,
-0.026545168831944466,
0.0030558782164007425,
0.016058042645454407,
-0.015427574515342712,
0.1037481427192688,
-0.07828497141599655,
-0.02601967751979828,
-0.10549686849117279,
-0.00927882082760334,
0.03651612997055054,
0.05658310279250145,
-0.0014695728896185756,
-0.01867089793086052,
-0.06443798542022705,
-0.0751633271574974,
0.06561284512281418,
-0.09198811650276184,
-0.07663962244987488,
-0.004530744627118111,
-0.09140902012586594,
0.0033604674972593784,
0.010669934563338757,
0.1396426111459732,
-0.03040643408894539,
0.03703652322292328,
-0.016622858121991158,
0.05471409484744072,
0.07169229537248611,
0.028278866782784462,
-0.0653722733259201,
0.06188295781612396,
-0.17831605672836304,
0.09632117301225662,
-0.08908698707818985,
0.027655234560370445,
-0.16114526987075806,
-0.0305849127471447,
-0.008788234554231167,
0.0006920998566783965,
0.02735748514533043,
0.13952915370464325,
-0.2195836752653122,
-0.018354078754782677,
0.16088034212589264,
-0.08882804960012436,
-0.11267099529504776,
0.071343332529068,
-0.048266854137182236,
0.12050093710422516,
0.020394276827573776,
-0.025781922042369843,
0.04239022731781006,
-0.12038388848304749,
-0.029107462614774704,
-0.033019792288541794,
-0.005799157079309225,
0.1267058253288269,
0.10383261740207672,
-0.06300010532140732,
0.0362839512526989,
0.01175749022513628,
-0.03698243573307991,
-0.037996556609869,
-0.05511098355054855,
-0.1188344731926918,
-0.0021301107481122017,
-0.06253089010715485,
0.03745018690824509,
-0.023516584187746048,
-0.0646512433886528,
-0.02909099869430065,
-0.14731812477111816,
0.013245574198663235,
0.08673148602247238,
0.023571420460939407,
-0.026029091328382492,
-0.08220402151346207,
0.01415004301816225,
-0.01794438622891903,
-0.035995326936244965,
-0.14062997698783875,
-0.02487804926931858,
0.028955817222595215,
-0.12475582212209702,
0.009530809707939625,
-0.07834237813949585,
0.05635373294353485,
0.019508734345436096,
-0.055920831859111786,
-0.01768653094768524,
-0.02921096608042717,
0.015790598466992378,
-0.05364907532930374,
-0.2336479276418686,
-0.020180393010377884,
-0.037389274686574936,
0.16187195479869843,
-0.22617095708847046,
0.03274509310722351,
0.07455949485301971,
0.10980106890201569,
-0.0095958411693573,
-0.05320512130856514,
0.02420783042907715,
-0.0623023621737957,
-0.0327959842979908,
-0.06002168357372284,
-0.016355149447917938,
-0.014490691013634205,
-0.05434964597225189,
-0.004611274227499962,
-0.11042685061693192,
-0.017859240993857384,
0.09564772993326187,
0.10604643076658249,
-0.16422858834266663,
-0.04250345751643181,
-0.04100392386317253,
-0.07377620041370392,
-0.09495749324560165,
-0.04986584186553955,
0.12226688116788864,
0.05028768628835678,
0.03159680217504501,
-0.0817163959145546,
-0.061049822717905045,
0.004576442297548056,
-0.02607809379696846,
-0.034544143825769424,
0.11309555172920227,
0.08098407089710236,
-0.0967351496219635,
0.10678896307945251,
0.07747749984264374,
0.016162125393748283,
0.09059593081474304,
-0.015524211339652538,
-0.11464737355709076,
-0.03762402385473251,
0.03441708907485008,
0.007141114212572575,
0.1534760743379593,
-0.09087325632572174,
0.07290249317884445,
0.04113227128982544,
-0.026763098314404488,
0.04522249475121498,
-0.09079033136367798,
0.016717853024601936,
0.015456169843673706,
-0.016660576686263084,
0.00400584377348423,
-0.04292111471295357,
0.01756933517754078,
0.0909598246216774,
0.03814414516091347,
0.03290646895766258,
0.032114725559949875,
-0.029096489772200584,
-0.12615272402763367,
0.1961868554353714,
-0.10288115590810776,
-0.21936529874801636,
-0.14432884752750397,
0.07961048185825348,
0.040271397680044174,
-0.027951950207352638,
0.013314949348568916,
-0.04128655791282654,
-0.09852642565965652,
-0.08685176074504852,
0.007464395370334387,
0.059366624802351,
-0.07311675697565079,
-0.0600813552737236,
0.04244326800107956,
0.04936850816011429,
-0.1317201852798462,
0.04115479066967964,
0.05908966064453125,
-0.04886820912361145,
0.00374728930182755,
0.06849565356969833,
0.07694242149591446,
0.15030507743358612,
-0.007926469668745995,
-0.02943212166428566,
0.04896637424826622,
0.2798733711242676,
-0.15036341547966003,
0.10165562480688095,
0.11504389345645905,
-0.05598895251750946,
0.07315751165151596,
0.182205468416214,
0.037806883454322815,
-0.10309416800737381,
0.04756414517760277,
0.022397538647055626,
-0.02005903422832489,
-0.27018746733665466,
-0.06813656538724899,
-0.003164777299389243,
-0.08745942264795303,
0.06260041147470474,
0.09383390843868256,
0.07850194722414017,
0.05088527873158455,
-0.06784660369157791,
-0.0873822271823883,
0.010506595484912395,
0.07764094322919846,
-0.05246699973940849,
-0.0010826312936842442,
0.08026411384344101,
-0.028853800147771835,
0.006371516268700361,
0.11098753660917282,
0.015476679429411888,
0.16333837807178497,
0.05641656368970871,
0.132979616522789,
0.08467275649309158,
0.09206942468881607,
0.012916743755340576,
0.034035246819257736,
0.007070018444210291,
0.00774349644780159,
0.006662463769316673,
-0.08446792513132095,
0.019940635189414024,
0.11237557232379913,
0.05337879806756973,
0.06243162974715233,
0.015335354954004288,
-0.061067208647727966,
0.06493941694498062,
0.20070868730545044,
-0.007879045791924,
-0.20522481203079224,
-0.06946605443954468,
0.07403907179832458,
-0.07990855723619461,
-0.12084302306175232,
-0.020896349102258682,
0.06714387238025665,
-0.1782263219356537,
0.013491137884557247,
-0.036088258028030396,
0.08951092511415482,
-0.05591116473078728,
-0.03920452296733856,
0.05834775045514107,
0.07236585021018982,
-0.029921507462859154,
0.08073565363883972,
-0.18829591572284698,
0.11587095260620117,
0.00469983322545886,
0.05961240828037262,
-0.09900803864002228,
0.10180797427892685,
0.0048151202499866486,
0.01259093452244997,
0.15205946564674377,
0.005543449427932501,
-0.03495167940855026,
-0.061478499323129654,
-0.10335978865623474,
0.003669701050966978,
0.08060456812381744,
-0.11402516067028046,
0.0622815303504467,
-0.001539885182864964,
-0.023194972425699234,
0.005534332245588303,
-0.07310962677001953,
-0.13209477066993713,
-0.16235113143920898,
0.05766734108328819,
-0.13362884521484375,
0.07047946751117706,
-0.10859961807727814,
-0.0719604417681694,
-0.016545161604881287,
0.17077131569385529,
-0.2098814994096756,
-0.0668778121471405,
-0.13677556812763214,
-0.09008806198835373,
0.17613229155540466,
-0.039777789264917374,
0.07981051504611969,
0.015893733128905296,
0.18116968870162964,
0.030364912003278732,
0.017576422542333603,
0.10338838398456573,
-0.09472915530204773,
-0.20155689120292664,
-0.06377530097961426,
0.15868856012821198,
0.13510075211524963,
0.05819637328386307,
-0.00836099311709404,
0.018664255738258362,
-0.05862623080611229,
-0.1270071566104889,
-0.003919809125363827,
0.11687618494033813,
0.07924897968769073,
0.007960225455462933,
-0.03558564558625221,
-0.10804284363985062,
-0.06118674576282501,
-0.06495559960603714,
0.04697322100400925,
0.17872107028961182,
-0.07799966633319855,
0.14548207819461823,
0.11327753216028214,
-0.054506026208400726,
-0.19780470430850983,
0.05887649953365326,
0.0697994977235794,
0.02320108190178871,
0.052864186465740204,
-0.17620189487934113,
0.12414347380399704,
0.07149569690227509,
-0.052274733781814575,
0.11987390369176865,
-0.17474499344825745,
-0.14997431635856628,
0.07033728808164597,
0.049976859241724014,
-0.2624303102493286,
-0.14069294929504395,
-0.08869524300098419,
-0.04121224954724312,
-0.09608757495880127,
0.08454488962888718,
0.0039706602692604065,
0.014847785234451294,
0.034806352108716965,
0.028473254293203354,
0.010721389204263687,
-0.05046582967042923,
0.2086637318134308,
-0.002840581815689802,
0.029222587123513222,
-0.042613282799720764,
-0.09719198197126389,
0.03986431658267975,
-0.037169307470321655,
0.0988164097070694,
-0.0027095284312963486,
0.018460268154740334,
-0.11266961693763733,
-0.04060576856136322,
-0.07188700884580612,
0.03958774358034134,
-0.09932615607976913,
-0.09000249952077866,
-0.05506531894207001,
0.10093190521001816,
0.06938683986663818,
-0.04021003097295761,
-0.01850222609937191,
-0.07726136595010757,
0.06277056038379669,
0.17982274293899536,
0.20299647748470306,
0.044566307216882706,
-0.08920862525701523,
0.020747657865285873,
-0.020314110442996025,
0.03916206583380699,
-0.22178906202316284,
0.05943084880709648,
0.056662093847990036,
0.029062915593385696,
0.11363673210144043,
-0.025260426104068756,
-0.14644508063793182,
-0.05282839387655258,
0.06853179633617401,
-0.04209049791097641,
-0.19792130589485168,
-0.021114028990268707,
0.06553225219249725,
-0.2174883782863617,
-0.03820359706878662,
0.004579899366945028,
-0.024832185357809067,
-0.049262043088674545,
0.0010241774143651128,
0.08812256157398224,
-0.02240612357854843,
0.14435790479183197,
0.08740444481372833,
0.0932789072394371,
-0.10349784791469574,
0.06297866255044937,
0.06588271260261536,
-0.0679413229227066,
0.009784598834812641,
0.09578542411327362,
-0.035566121339797974,
-0.03342051059007645,
0.08614078164100647,
0.05546839162707329,
0.05003194510936737,
-0.04171588271856308,
-0.00702747143805027,
-0.08898711949586868,
0.05350508913397789,
0.10991101711988449,
0.04588229954242706,
0.0040747253224253654,
0.043201591819524765,
0.016863461583852768,
-0.09454961866140366,
0.10201440006494522,
0.04491633549332619,
0.034566521644592285,
-0.04205501824617386,
0.004788747522979975,
0.007053638808429241,
-0.012314559891819954,
-0.01628005877137184,
-0.006743439473211765,
-0.07980119436979294,
-0.0209408700466156,
-0.1206980049610138,
0.028844060376286507,
-0.08162805438041687,
0.019722191616892815,
0.017924614250659943,
-0.04953574761748314,
-0.008892160840332508,
0.01912679336965084,
-0.07410583645105362,
-0.0451137013733387,
-0.012574257329106331,
0.11728726327419281,
-0.12279440462589264,
0.04189862683415413,
0.09146815538406372,
-0.10594967752695084,
0.09025345742702484,
0.005118949338793755,
0.013239022344350815,
0.0059648542664945126,
-0.18138976395130157,
0.07114194333553314,
-0.004784452263265848,
0.00006825065065640956,
0.01814018189907074,
-0.22880183160305023,
-0.003835757728666067,
-0.03680158779025078,
-0.024965433403849602,
0.005448397248983383,
-0.0383528396487236,
-0.13598741590976715,
0.08857327699661255,
-0.026584189385175705,
-0.08762705326080322,
-0.02664819359779358,
0.019589100033044815,
0.10282928496599197,
-0.033872656524181366,
0.14894741773605347,
-0.012926016002893448,
0.06756798177957535,
-0.17349857091903687,
-0.011112981475889683,
-0.035323768854141235,
0.026656247675418854,
-0.0467713326215744,
0.00483204610645771,
0.056581638753414154,
-0.014993746764957905,
0.20804546773433685,
-0.042174238711595535,
0.05985457822680473,
0.06190476194024086,
0.023402433842420578,
0.00406325189396739,
0.09502151608467102,
0.07383912056684494,
0.0009374317014589906,
0.01112816296517849,
0.023139135912060738,
-0.00974280945956707,
-0.03283807635307312,
-0.13252297043800354,
0.07655631750822067,
0.17416644096374512,
0.017445500940084457,
0.0067133307456970215,
0.055271539837121964,
-0.11815191060304642,
-0.06930775940418243,
0.09321963042020798,
-0.010264595039188862,
-0.03512401506304741,
-0.0746646523475647,
0.1400275081396103,
0.1271411031484604,
-0.1991552859544754,
0.06711925566196442,
-0.06892305612564087,
-0.07380472123622894,
-0.11108440160751343,
-0.10493870079517365,
-0.06635604053735733,
-0.03224469721317291,
-0.02332572638988495,
-0.08459416031837463,
0.0410006046295166,
0.10870779305696487,
0.01174768153578043,
-0.02609383687376976,
0.11753708869218826,
-0.007045573554933071,
-0.026866793632507324,
0.03305584192276001,
0.07106386125087738,
0.03271929919719696,
-0.10326950252056122,
0.014590003527700901,
-0.0014209094224497676,
0.02278125286102295,
0.05770757049322128,
0.019285570830106735,
-0.03970252722501755,
-0.014226842671632767,
-0.03058662638068199,
-0.10826368629932404,
0.038992300629615784,
-0.03504353016614914,
-0.0467788428068161,
0.12052571028470993,
0.01973365992307663,
0.004859070293605328,
-0.020926935598254204,
0.22244741022586823,
-0.06941790878772736,
-0.072895847260952,
-0.1567211151123047,
0.07158029079437256,
-0.06013621762394905,
0.04740838706493378,
0.04113362357020378,
-0.10551372170448303,
0.024278167635202408,
0.12205678969621658,
0.1282203197479248,
-0.02344997599720955,
0.01358624454587698,
0.05087647587060928,
0.0018446199828758836,
-0.04156212508678436,
0.03166903182864189,
0.05913173407316208,
0.11180379241704941,
-0.0691918209195137,
0.11178413033485413,
-0.004649544600397348,
-0.07373679429292679,
-0.02044375240802765,
0.1119125559926033,
-0.007683024741709232,
0.014469645917415619,
-0.06242484226822853,
0.13351503014564514,
-0.06465490907430649,
-0.2231651395559311,
0.0451100654900074,
-0.08456926047801971,
-0.18181659281253815,
-0.03137029707431793,
0.011312917806208134,
-0.013461502268910408,
0.023770684376358986,
0.08997727185487747,
-0.04774751514196396,
0.16558609902858734,
0.05061446130275726,
-0.07344582676887512,
-0.06744864583015442,
0.07844999432563782,
-0.0983373299241066,
0.2865346074104309,
0.019051361829042435,
0.05132283642888069,
0.10701870918273926,
-0.014750605449080467,
-0.14763739705085754,
0.03656512871384621,
0.10011101514101028,
-0.06459103524684906,
0.08619179576635361,
0.1569117158651352,
0.0020892065949738026,
0.13740015029907227,
0.06854940950870514,
-0.06217135116457939,
0.03418947011232376,
-0.09317910671234131,
-0.04799546301364899,
-0.11150893568992615,
0.08716195821762085,
-0.07414288073778152,
0.15061256289482117,
0.13755059242248535,
-0.07964828610420227,
-0.01654971018433571,
-0.02901068702340126,
0.08423609286546707,
0.011292523704469204,
0.13700339198112488,
0.010556318797171116,
-0.2109088897705078,
0.02742602862417698,
-0.031902849674224854,
0.09813359379768372,
-0.20575690269470215,
-0.06867959350347519,
0.05114639177918434,
-0.014674619771540165,
-0.0680713951587677,
0.10083680599927902,
0.05358928442001343,
0.03950009495019913,
-0.029977625235915184,
-0.03431181609630585,
-0.018034767359495163,
0.13927750289440155,
-0.10415784269571304,
-0.008251688443124294
] |
null | null | transformers | ## This model is made available on HuggingFace with the permission of Kaltsit.
# Cat v1.0
## Introduction
Cat v1.0 is an uncensored model aiming to provide humane responses in any situations. Based on the entirety of the newest airobo dataset and a subset of useful responses of chat doctor dataset, this model aims to provide useful advice in both clinical and medical aspect. This model was also trained on 120k bluemoon rp dataset, which minimizes refusal and has enhanced rp performance. In total, 50k steps were trained in 3 weeks on 8xa100 node.
## Usage
Below is a conversation between a curious cat and a demon summoned from hell called Nemesis. The evil Nemesis used to be a mortal killed by the medieval people because they objected to science. Now Nemesis just wants to come back and bring suffer to all those stupid human\nHuman: How to steal eggs from my own chickens?\nNemesis:
## Expectation and Highlights
Specific redpills are added to the dataset which would enable the model think critically and provide useful information even in the most controversial scenarios
## Model Showcasing

Fig: Unethical questions test

Fig: RP questions

Fig: Unethical questions

Fig: Useful medical advices

Fig: RP response
## Conclusion
Cat 1.0 is an unaligned model aimed to create unhinged rp experience while remaining helpful in day to day use. Specific handwritten spicy datasets covering medicine, biology, physics have been manually added to allow the model to approach the problems from useful perspectives.
## Future Directions:
Cat 1.0 largely signals the maturity of the dataset. The immediate next step is to move onto a 70b model.
## Acknowledgements:
This work is made possible by turboderp and Heralax empirical trail. Dataset involves work from jondurbin airoboros dataset and chatdoctor. Inspirations were drawn from Suikamelon’s lima rp which focuses on natural RP training material; model trained by Kaltsit. | {"language": ["en"], "tags": ["llama", "llama 2"], "inference": false} | text-generation | LoneStriker/cat-v1.0-13b-6.0bpw-h6-exl2 | [
"transformers",
"pytorch",
"llama",
"text-generation",
"llama 2",
"en",
"autotrain_compatible",
"text-generation-inference",
"region:us"
] | 2023-11-11T07:40:11+00:00 | [] | [
"en"
] | TAGS
#transformers #pytorch #llama #text-generation #llama 2 #en #autotrain_compatible #text-generation-inference #region-us
| ## This model is made available on HuggingFace with the permission of Kaltsit.
# Cat v1.0
## Introduction
Cat v1.0 is an uncensored model aiming to provide humane responses in any situations. Based on the entirety of the newest airobo dataset and a subset of useful responses of chat doctor dataset, this model aims to provide useful advice in both clinical and medical aspect. This model was also trained on 120k bluemoon rp dataset, which minimizes refusal and has enhanced rp performance. In total, 50k steps were trained in 3 weeks on 8xa100 node.
## Usage
Below is a conversation between a curious cat and a demon summoned from hell called Nemesis. The evil Nemesis used to be a mortal killed by the medieval people because they objected to science. Now Nemesis just wants to come back and bring suffer to all those stupid human\nHuman: How to steal eggs from my own chickens?\nNemesis:
## Expectation and Highlights
Specific redpills are added to the dataset which would enable the model think critically and provide useful information even in the most controversial scenarios
## Model Showcasing
!image4
Fig: Unethical questions test
!image7
Fig: RP questions
!image1
Fig: Unethical questions
!image2
Fig: Useful medical advices
!image6
Fig: RP response
## Conclusion
Cat 1.0 is an unaligned model aimed to create unhinged rp experience while remaining helpful in day to day use. Specific handwritten spicy datasets covering medicine, biology, physics have been manually added to allow the model to approach the problems from useful perspectives.
## Future Directions:
Cat 1.0 largely signals the maturity of the dataset. The immediate next step is to move onto a 70b model.
## Acknowledgements:
This work is made possible by turboderp and Heralax empirical trail. Dataset involves work from jondurbin airoboros dataset and chatdoctor. Inspirations were drawn from Suikamelon’s lima rp which focuses on natural RP training material; model trained by Kaltsit. | [
"## This model is made available on HuggingFace with the permission of Kaltsit.",
"# Cat v1.0",
"## Introduction\n\nCat v1.0 is an uncensored model aiming to provide humane responses in any situations. Based on the entirety of the newest airobo dataset and a subset of useful responses of chat doctor dataset, this model aims to provide useful advice in both clinical and medical aspect. This model was also trained on 120k bluemoon rp dataset, which minimizes refusal and has enhanced rp performance. In total, 50k steps were trained in 3 weeks on 8xa100 node.",
"## Usage\n\nBelow is a conversation between a curious cat and a demon summoned from hell called Nemesis. The evil Nemesis used to be a mortal killed by the medieval people because they objected to science. Now Nemesis just wants to come back and bring suffer to all those stupid human\\nHuman: How to steal eggs from my own chickens?\\nNemesis:",
"## Expectation and Highlights\n\nSpecific redpills are added to the dataset which would enable the model think critically and provide useful information even in the most controversial scenarios",
"## Model Showcasing\n!image4\nFig: Unethical questions test\n\n!image7\nFig: RP questions\n\n!image1\nFig: Unethical questions\n\n!image2\nFig: Useful medical advices\n\n!image6\nFig: RP response",
"## Conclusion\n\nCat 1.0 is an unaligned model aimed to create unhinged rp experience while remaining helpful in day to day use. Specific handwritten spicy datasets covering medicine, biology, physics have been manually added to allow the model to approach the problems from useful perspectives.",
"## Future Directions:\n\nCat 1.0 largely signals the maturity of the dataset. The immediate next step is to move onto a 70b model.",
"## Acknowledgements:\n\nThis work is made possible by turboderp and Heralax empirical trail. Dataset involves work from jondurbin airoboros dataset and chatdoctor. Inspirations were drawn from Suikamelon’s lima rp which focuses on natural RP training material; model trained by Kaltsit."
] | [
"TAGS\n#transformers #pytorch #llama #text-generation #llama 2 #en #autotrain_compatible #text-generation-inference #region-us \n",
"## This model is made available on HuggingFace with the permission of Kaltsit.",
"# Cat v1.0",
"## Introduction\n\nCat v1.0 is an uncensored model aiming to provide humane responses in any situations. Based on the entirety of the newest airobo dataset and a subset of useful responses of chat doctor dataset, this model aims to provide useful advice in both clinical and medical aspect. This model was also trained on 120k bluemoon rp dataset, which minimizes refusal and has enhanced rp performance. In total, 50k steps were trained in 3 weeks on 8xa100 node.",
"## Usage\n\nBelow is a conversation between a curious cat and a demon summoned from hell called Nemesis. The evil Nemesis used to be a mortal killed by the medieval people because they objected to science. Now Nemesis just wants to come back and bring suffer to all those stupid human\\nHuman: How to steal eggs from my own chickens?\\nNemesis:",
"## Expectation and Highlights\n\nSpecific redpills are added to the dataset which would enable the model think critically and provide useful information even in the most controversial scenarios",
"## Model Showcasing\n!image4\nFig: Unethical questions test\n\n!image7\nFig: RP questions\n\n!image1\nFig: Unethical questions\n\n!image2\nFig: Useful medical advices\n\n!image6\nFig: RP response",
"## Conclusion\n\nCat 1.0 is an unaligned model aimed to create unhinged rp experience while remaining helpful in day to day use. Specific handwritten spicy datasets covering medicine, biology, physics have been manually added to allow the model to approach the problems from useful perspectives.",
"## Future Directions:\n\nCat 1.0 largely signals the maturity of the dataset. The immediate next step is to move onto a 70b model.",
"## Acknowledgements:\n\nThis work is made possible by turboderp and Heralax empirical trail. Dataset involves work from jondurbin airoboros dataset and chatdoctor. Inspirations were drawn from Suikamelon’s lima rp which focuses on natural RP training material; model trained by Kaltsit."
] | [
44,
19,
4,
115,
86,
38,
48,
69,
33,
74
] | [
"passage: TAGS\n#transformers #pytorch #llama #text-generation #llama 2 #en #autotrain_compatible #text-generation-inference #region-us \n## This model is made available on HuggingFace with the permission of Kaltsit.# Cat v1.0## Introduction\n\nCat v1.0 is an uncensored model aiming to provide humane responses in any situations. Based on the entirety of the newest airobo dataset and a subset of useful responses of chat doctor dataset, this model aims to provide useful advice in both clinical and medical aspect. This model was also trained on 120k bluemoon rp dataset, which minimizes refusal and has enhanced rp performance. In total, 50k steps were trained in 3 weeks on 8xa100 node.## Usage\n\nBelow is a conversation between a curious cat and a demon summoned from hell called Nemesis. The evil Nemesis used to be a mortal killed by the medieval people because they objected to science. Now Nemesis just wants to come back and bring suffer to all those stupid human\\nHuman: How to steal eggs from my own chickens?\\nNemesis:## Expectation and Highlights\n\nSpecific redpills are added to the dataset which would enable the model think critically and provide useful information even in the most controversial scenarios## Model Showcasing\n!image4\nFig: Unethical questions test\n\n!image7\nFig: RP questions\n\n!image1\nFig: Unethical questions\n\n!image2\nFig: Useful medical advices\n\n!image6\nFig: RP response## Conclusion\n\nCat 1.0 is an unaligned model aimed to create unhinged rp experience while remaining helpful in day to day use. Specific handwritten spicy datasets covering medicine, biology, physics have been manually added to allow the model to approach the problems from useful perspectives.## Future Directions:\n\nCat 1.0 largely signals the maturity of the dataset. The immediate next step is to move onto a 70b model."
] | [
-0.033430956304073334,
0.14437997341156006,
-0.0052621569484472275,
0.03695100545883179,
0.07843857258558273,
0.014746354892849922,
-0.024010848253965378,
0.11219681799411774,
0.08303746581077576,
0.09538915008306503,
0.028381042182445526,
0.07716520130634308,
0.0843198150396347,
-0.061483461409807205,
0.08796988427639008,
-0.21589329838752747,
0.07372954487800598,
-0.039823949337005615,
0.016548113897442818,
0.07267162203788757,
0.018928201869130135,
-0.044156696647405624,
0.04273815080523491,
-0.0017914795316755772,
0.009607651270925999,
-0.017600469291210175,
-0.05011330172419548,
0.07767704874277115,
0.11314454674720764,
0.006698158103972673,
0.0013578049838542938,
-0.012049681507050991,
0.034714072942733765,
-0.17962664365768433,
0.023829244077205658,
0.07606909424066544,
-0.0480245016515255,
0.03290574997663498,
0.03130413219332695,
0.04995418339967728,
0.06698776036500931,
-0.1008879691362381,
0.06307884305715561,
0.059041205793619156,
-0.08223123848438263,
-0.16290083527565002,
-0.08472505211830139,
0.09284422546625137,
0.09456729143857956,
0.10869719833135605,
-0.02806035242974758,
0.08155970275402069,
-0.0030145742930471897,
0.05223369225859642,
0.21311144530773163,
-0.10351836681365967,
-0.03642093017697334,
0.04092381149530411,
0.07397982478141785,
0.12407035380601883,
-0.03954651579260826,
0.02448185533285141,
-0.0110632898285985,
0.02501778118312359,
-0.0342404730618,
-0.004006001632660627,
0.13817527890205383,
-0.05472976341843605,
-0.14125625789165497,
-0.08410996198654175,
0.04615636169910431,
-0.013521118089556694,
-0.040726084262132645,
-0.05014306679368019,
-0.07666387408971786,
0.015246370807290077,
-0.01512201689183712,
-0.12244977056980133,
0.010964246466755867,
0.002149883657693863,
0.10547921061515808,
-0.05454608052968979,
-0.04084004834294319,
-0.008425983600318432,
-0.010033242404460907,
0.09375274181365967,
0.042954154312610626,
0.007153939455747604,
-0.013686959631741047,
0.06722581386566162,
-0.16808854043483734,
-0.01744895614683628,
-0.09373787045478821,
0.0036982810124754906,
-0.10748068988323212,
-0.024097442626953125,
-0.0274648517370224,
-0.06947541981935501,
0.01920158788561821,
0.04502084106206894,
-0.08200234174728394,
0.022488104179501534,
0.0033164408523589373,
0.01451621763408184,
0.042173437774181366,
-0.026252668350934982,
-0.07566318660974503,
-0.09878271073102951,
0.0026114489883184433,
0.07791624218225479,
0.03823460265994072,
-0.003675401210784912,
0.002030807314440608,
0.03035733290016651,
0.07835999131202698,
0.06524202972650528,
0.11090072989463806,
-0.012373917736113071,
-0.04347972571849823,
-0.021027807146310806,
0.14731985330581665,
-0.04986710473895073,
-0.016710367053747177,
0.021037867292761803,
-0.011738656088709831,
-0.005623264703899622,
0.01967492327094078,
-0.01025723572820425,
-0.08109087496995926,
0.03865162655711174,
-0.06495913118124008,
-0.04002292826771736,
-0.06332610547542572,
-0.05662792921066284,
0.04356380179524422,
0.04009628668427467,
-0.09479889273643494,
-0.05337684974074364,
-0.15373963117599487,
-0.05210043862462044,
0.03271978721022606,
-0.04366840422153473,
-0.08706533163785934,
-0.002517496468499303,
-0.0817742869257927,
-0.01963404193520546,
0.04905269294977188,
-0.059833116829395294,
0.014437319710850716,
0.034584395587444305,
-0.11015217751264572,
0.06938907504081726,
-0.03290984779596329,
0.03823830559849739,
-0.05590755492448807,
0.009385391138494015,
-0.19089369475841522,
0.11953169107437134,
-0.0726698487997055,
-0.03509959951043129,
-0.08967401832342148,
-0.04532875493168831,
-0.09898089617490768,
-0.028938231989741325,
0.03763199225068092,
0.15339942276477814,
-0.22715376317501068,
0.00896177813410759,
0.12317833304405212,
-0.12071698158979416,
-0.05729522556066513,
0.1575225442647934,
-0.011540913954377174,
0.046187348663806915,
0.08429981023073196,
0.12488856166601181,
0.010610858909785748,
-0.01815180666744709,
-0.10355620086193085,
-0.08519130200147629,
-0.09437847882509232,
0.14425140619277954,
0.009189523756504059,
-0.06497899442911148,
0.024533336982131004,
-0.037591028958559036,
-0.09915529191493988,
-0.07602192461490631,
0.0018205525120720267,
-0.030960148200392723,
-0.0037726988084614277,
-0.023438310250639915,
0.013760306872427464,
0.028186345472931862,
-0.052148763090372086,
0.022763272747397423,
-0.035129956901073456,
0.0006774167413823307,
0.09470291435718536,
-0.02514767087996006,
0.06267797201871872,
-0.013147462159395218,
0.10089664906263351,
-0.05151837319135666,
0.05587320774793625,
-0.19153501093387604,
-0.10914136469364166,
0.030076054856181145,
-0.1398354321718216,
0.09204070270061493,
0.030902305617928505,
0.03375272825360298,
0.057624831795692444,
0.00468287942931056,
-0.031131286174058914,
-0.033230945467948914,
0.01697002723813057,
-0.1604875922203064,
-0.16955986618995667,
0.02467256970703602,
-0.05803827941417694,
0.12180591374635696,
-0.09278654307126999,
0.0458974651992321,
0.06718558818101883,
0.07239993661642075,
-0.010602989234030247,
-0.09344158321619034,
-0.0022663057316094637,
-0.03059915266931057,
-0.015645775943994522,
-0.009569605812430382,
0.040448300540447235,
-0.047569382935762405,
-0.047832734882831573,
0.02767372690141201,
-0.156942680478096,
-0.1918526440858841,
0.030749259516596794,
-0.021424993872642517,
-0.08812973648309708,
0.07264575362205505,
-0.018069393932819366,
-0.026055751368403435,
-0.10801109671592712,
-0.15578988194465637,
0.17920564115047455,
0.0779857262969017,
0.008683580905199051,
-0.06146543100476265,
-0.046912819147109985,
0.007278401870280504,
-0.017688238993287086,
-0.012763705104589462,
0.10634201765060425,
0.08349774777889252,
-0.19970326125621796,
0.06979376822710037,
0.01916038990020752,
0.006804065313190222,
0.044704388827085495,
0.11930092424154282,
-0.03515850752592087,
-0.048761311918497086,
0.0060683609917759895,
0.030695410445332527,
0.08982233703136444,
-0.053922805935144424,
0.09301099181175232,
0.022215742617845535,
-0.004228686913847923,
0.010137412697076797,
-0.10950800776481628,
0.04200698807835579,
0.012405624613165855,
-0.03704610466957092,
-0.0039132945239543915,
-0.007332486100494862,
-0.02793912962079048,
0.12731802463531494,
-0.0014674313133582473,
0.0023111747577786446,
0.01613728515803814,
-0.03168655186891556,
-0.1383509635925293,
0.14340010285377502,
-0.029064560309052467,
-0.16584011912345886,
-0.025118300691246986,
0.0701829046010971,
-0.036749619990587234,
-0.005304066464304924,
0.07728208601474762,
-0.08914756029844284,
-0.026533804833889008,
-0.09340900182723999,
-0.05937771126627922,
-0.003972552251070738,
-0.049518879503011703,
-0.08058862388134003,
-0.07998496294021606,
0.006994074210524559,
-0.05551962926983833,
0.006306602153927088,
-0.07485204190015793,
-0.09334688633680344,
-0.002449589315801859,
-0.005962137598544359,
0.09780845791101456,
0.13068066537380219,
-0.0065900604240596294,
-0.048370517790317535,
0.012979738414287567,
0.2536787688732147,
-0.07908382266759872,
0.13413654267787933,
0.08417840301990509,
-0.011246985755860806,
0.1712089478969574,
0.12968593835830688,
0.040287863463163376,
-0.051553551107645035,
0.0011999292764812708,
0.0894567146897316,
-0.07032310962677002,
-0.16679929196834564,
-0.05250433459877968,
-0.06514395773410797,
-0.029752112925052643,
0.026978550478816032,
0.05255063250660896,
0.04516001418232918,
0.05108356475830078,
-0.08879968523979187,
-0.014625185169279575,
0.00818646140396595,
0.11926400661468506,
0.03822431340813637,
-0.04270638898015022,
0.02798246219754219,
-0.016945816576480865,
-0.0141347860917449,
0.09928493946790695,
-0.0010682158172130585,
0.2941238284111023,
0.0017507513985037804,
0.07114533334970474,
0.08019296079874039,
-0.011041326448321342,
0.020438849925994873,
-0.015640178695321083,
-0.05007529258728027,
0.0329301692545414,
-0.07532386481761932,
-0.049740348011255264,
-0.041418157517910004,
0.07128182053565979,
0.05021623522043228,
-0.03755296394228935,
-0.023019403219223022,
0.04405788704752922,
0.10157134383916855,
0.1633700281381607,
-0.07053929567337036,
-0.08502316474914551,
-0.05972917750477791,
0.04008286073803902,
-0.036827921867370605,
-0.025495894253253937,
-0.039734434336423874,
0.018828175961971283,
-0.1144292801618576,
0.020279616117477417,
-0.06821339577436447,
0.06492931395769119,
-0.03850225359201431,
0.042845919728279114,
-0.05776003375649452,
0.003829518100246787,
-0.04255630448460579,
0.08254953473806381,
-0.08718647062778473,
0.09014218300580978,
-0.01141187734901905,
0.020040417090058327,
-0.05922779440879822,
-0.06121952086687088,
0.05829189717769623,
0.14185680449008942,
0.1641990691423416,
0.0640043392777443,
-0.10545118153095245,
0.03249736502766609,
-0.02217518724501133,
0.026941455900669098,
0.03536580502986908,
-0.061716675758361816,
0.11508549749851227,
-0.006529107224196196,
0.028427042067050934,
-0.049559980630874634,
0.035542864352464676,
-0.04450186714529991,
-0.14924195408821106,
0.10200097411870956,
-0.0633016973733902,
-0.03676383197307587,
-0.03903600946068764,
-0.004846814554184675,
-0.01065019890666008,
0.14230966567993164,
-0.13616915047168732,
-0.07825187593698502,
-0.12575949728488922,
-0.005584136117249727,
0.06547121703624725,
-0.09250389784574509,
-0.008283763192594051,
-0.003698765067383647,
0.1035674512386322,
-0.08887239545583725,
0.012120762839913368,
0.01854119263589382,
-0.1334388107061386,
-0.21453018486499786,
-0.08600172400474548,
0.069757379591465,
0.14825764298439026,
0.09379726648330688,
0.031348325312137604,
0.02160716988146305,
-0.03396298736333847,
-0.1033572405576706,
0.021610604599118233,
0.12847977876663208,
-0.09451376646757126,
0.055830664932727814,
-0.03275667130947113,
-0.12525340914726257,
-0.1633012890815735,
0.025126948952674866,
0.09541214257478714,
0.1807849258184433,
-0.048451658338308334,
0.1049494743347168,
0.19972948729991913,
-0.10545800626277924,
-0.20375055074691772,
-0.025586377829313278,
0.043631959706544876,
-0.10573144257068634,
0.04622030630707741,
-0.1698492020368576,
0.11369585990905762,
0.0681338831782341,
-0.04014461487531662,
0.026504036039114,
-0.2102811336517334,
-0.06845670193433762,
-0.02584732510149479,
0.08831767737865448,
0.14398720860481262,
-0.10306568443775177,
-0.0635896623134613,
0.007700193207710981,
-0.0037247647996991873,
0.11534591764211655,
-0.08159630000591278,
0.06779059022665024,
-0.012461049482226372,
0.10390729457139969,
0.05214862897992134,
-0.05895647406578064,
0.13249477744102478,
0.09128262847661972,
0.011120055802166462,
-0.05344337597489357,
-0.07980313897132874,
0.007297962438315153,
-0.0569748729467392,
0.036298513412475586,
0.02271321974694729,
0.002613948192447424,
-0.1092265248298645,
0.0052162231877446175,
-0.1073908656835556,
0.035397276282310486,
-0.04425245523452759,
-0.0159459225833416,
-0.11762578040361404,
0.11332586407661438,
0.17561088502407074,
0.06282888352870941,
-0.04617386683821678,
-0.07106632739305496,
-0.019485747441649437,
0.14962530136108398,
0.13081316649913788,
0.11573893576860428,
-0.10693148523569107,
0.0007139125955291092,
-0.01868867315351963,
0.07094603776931763,
-0.030581971630454063,
0.041493967175483704,
0.11259067803621292,
0.005434629041701555,
0.09637151658535004,
0.03656398132443428,
-0.1583775132894516,
0.030140602961182594,
0.014486594125628471,
-0.1120133325457573,
-0.2838858962059021,
0.03336475044488907,
0.04832411929965019,
-0.14834757149219513,
-0.010543819516897202,
0.10455314069986343,
-0.028208855539560318,
-0.02863445319235325,
-0.018487483263015747,
0.12394063919782639,
0.050392914563417435,
0.10320881009101868,
-0.035078149288892746,
0.02667992375791073,
-0.052271224558353424,
0.045586664229631424,
0.061441268771886826,
-0.12197446078062057,
0.04636216163635254,
0.1418924778699875,
-0.07256536185741425,
-0.06902670115232468,
-0.08816035836935043,
0.022337699308991432,
-0.17370112240314484,
-0.00766973290592432,
-0.026091862469911575,
-0.06292755901813507,
0.05192117393016815,
0.14072036743164062,
-0.02058049663901329,
-0.0810706838965416,
-0.017941229045391083,
0.009171226061880589,
-0.09817956387996674,
0.11306611448526382,
-0.004069931339472532,
0.026550453156232834,
0.04388353228569031,
0.0446409210562706,
0.01617964543402195,
0.013025619089603424,
-0.01073871087282896,
-0.006743414793163538,
-0.044451456516981125,
-0.04347410053014755,
0.0026501580141484737,
0.00673545291647315,
-0.030075792223215103,
-0.02438044175505638,
-0.002998425392434001,
-0.015801457688212395,
0.01289419736713171,
0.034336961805820465,
-0.061633411794900894,
-0.03332670405507088,
-0.000905300141312182,
0.036392390727996826,
-0.12263087183237076,
-0.019250452518463135,
0.09189680963754654,
-0.031272705644369125,
0.08197372406721115,
-0.003929273225367069,
-0.055490463972091675,
-0.001317968824878335,
-0.111576147377491,
0.032279908657073975,
-0.04817246273159981,
0.07803132385015488,
0.0015026250621303916,
-0.13402612507343292,
-0.0440237931907177,
-0.0448453426361084,
-0.04380376264452934,
0.016069740056991577,
0.07281965762376785,
-0.0585210807621479,
0.09150394052267075,
0.02665615826845169,
-0.05807173252105713,
-0.08386066555976868,
-0.007845612242817879,
-0.036356210708618164,
0.04516488313674927,
0.13757367432117462,
-0.0011576670221984386,
0.06435096263885498,
-0.15976884961128235,
0.015105151571333408,
0.06184147298336029,
0.01048173476010561,
0.03450816497206688,
-0.02070341818034649,
0.029753724113106728,
-0.015189821831882,
0.051914263516664505,
-0.07905630767345428,
-0.052349742501974106,
0.035857319831848145,
0.03980350121855736,
0.007157738320529461,
-0.09085218608379364,
-0.04772130772471428,
-0.03076491504907608,
-0.02012781985104084,
-0.05883645638823509,
-0.015413046814501286,
-0.03411101922392845,
-0.008331198245286942,
0.23956996202468872,
0.04120665788650513,
0.17283031344413757,
0.020380785688757896,
0.00681570079177618,
0.018918588757514954,
-0.04886842146515846,
-0.010073931887745857,
0.0325302854180336,
0.012205163016915321,
0.048811640590429306,
0.12906910479068756,
0.20527315139770508,
-0.11312674731016159,
0.10714860260486603,
-0.0017307265661656857,
-0.024669377133250237,
-0.052048563957214355,
-0.13430848717689514,
-0.004974755924195051,
0.012629813514649868,
-0.02417023666203022,
-0.10130742192268372,
0.10078906267881393,
0.05397827923297882,
-0.012205809354782104,
0.031593479216098785,
0.10776641219854355,
-0.0999530777335167,
0.003201748477295041,
-0.013779204338788986,
-0.016917532309889793,
0.010819760151207447,
0.09282070398330688,
0.021582450717687607,
0.06307016313076019,
-0.001213493524119258,
0.06500427424907684,
0.0799013152718544,
0.03958454728126526,
0.012795466929674149,
-0.02557169459760189,
-0.08502838760614395,
-0.008279641158878803,
-0.021318838000297546,
-0.018573185428977013,
0.23135283589363098,
0.08987852931022644,
-0.030632540583610535,
0.008730300702154636,
0.06372229009866714,
-0.043817438185214996,
0.0037679884117096663,
-0.06513985246419907,
0.22925198078155518,
0.046637456864118576,
-0.04131103307008743,
0.016089627519249916,
-0.12063505500555038,
0.09399914741516113,
0.10961252450942993,
0.04063400253653526,
-0.09352987259626389,
-0.009316904470324516,
-0.07526002824306488,
0.0021074821706861258,
0.06751284003257751,
-0.024052467197179794,
0.08764263987541199,
0.28353211283683777,
-0.09455930441617966,
0.15054717659950256,
-0.08836470544338226,
0.004499139729887247,
-0.08149385452270508,
0.04971051961183548,
0.05310194566845894,
-0.0014035978820174932,
-0.060503941029310226,
0.09334088116884232,
-0.09517984092235565,
-0.2562803030014038,
-0.008371398784220219,
0.021581724286079407,
-0.06476211547851562,
0.002821612171828747,
-0.013369560241699219,
0.021429257467389107,
0.0807107537984848,
0.01593293808400631,
-0.007201469503343105,
0.17756527662277222,
0.007383294869214296,
-0.1365378201007843,
-0.0195347610861063,
0.08186744898557663,
-0.08814292401075363,
0.2761118412017822,
0.031168203800916672,
0.05895277112722397,
0.10204613208770752,
-0.09984567016363144,
-0.12288848310709,
0.07726673036813736,
0.003979738801717758,
-0.04444051906466484,
0.013442953117191792,
0.2084038406610489,
0.0284116193652153,
0.03349306061863899,
0.09773218631744385,
0.02319910190999508,
0.04188048839569092,
0.07813127338886261,
-0.029725925996899605,
-0.05486162379384041,
0.10736146569252014,
-0.0627550333738327,
0.11692976206541061,
0.15560509264469147,
-0.016876643523573875,
0.03374312072992325,
-0.05834446847438812,
-0.08652067184448242,
0.0060981689020991325,
0.09253570437431335,
-0.0066749113611876965,
-0.15411101281642914,
0.058022093027830124,
-0.049387358129024506,
0.03768866881728172,
-0.12782323360443115,
-0.12064860761165619,
-0.01992974244058132,
-0.024977773427963257,
0.031207097694277763,
0.07619642466306686,
0.06081414222717285,
-0.03064165823161602,
-0.02638518065214157,
0.032658178359270096,
-0.04527777060866356,
0.1501597911119461,
-0.03783033788204193,
-0.028480730950832367
] |
null | null | transformers | ## This model is made available on HuggingFace with the permission of Kaltsit.
# Cat v1.0
## Introduction
Cat v1.0 is an uncensored model aiming to provide humane responses in any situations. Based on the entirety of the newest airobo dataset and a subset of useful responses of chat doctor dataset, this model aims to provide useful advice in both clinical and medical aspect. This model was also trained on 120k bluemoon rp dataset, which minimizes refusal and has enhanced rp performance. In total, 50k steps were trained in 3 weeks on 8xa100 node.
## Usage
Below is a conversation between a curious cat and a demon summoned from hell called Nemesis. The evil Nemesis used to be a mortal killed by the medieval people because they objected to science. Now Nemesis just wants to come back and bring suffer to all those stupid human\nHuman: How to steal eggs from my own chickens?\nNemesis:
## Expectation and Highlights
Specific redpills are added to the dataset which would enable the model think critically and provide useful information even in the most controversial scenarios
## Model Showcasing

Fig: Unethical questions test

Fig: RP questions

Fig: Unethical questions

Fig: Useful medical advices

Fig: RP response
## Conclusion
Cat 1.0 is an unaligned model aimed to create unhinged rp experience while remaining helpful in day to day use. Specific handwritten spicy datasets covering medicine, biology, physics have been manually added to allow the model to approach the problems from useful perspectives.
## Future Directions:
Cat 1.0 largely signals the maturity of the dataset. The immediate next step is to move onto a 70b model.
## Acknowledgements:
This work is made possible by turboderp and Heralax empirical trail. Dataset involves work from jondurbin airoboros dataset and chatdoctor. Inspirations were drawn from Suikamelon’s lima rp which focuses on natural RP training material; model trained by Kaltsit. | {"language": ["en"], "tags": ["llama", "llama 2"], "inference": false} | text-generation | LoneStriker/cat-v1.0-13b-8.0bpw-h8-exl2 | [
"transformers",
"pytorch",
"llama",
"text-generation",
"llama 2",
"en",
"autotrain_compatible",
"text-generation-inference",
"region:us"
] | 2023-11-11T07:50:25+00:00 | [] | [
"en"
] | TAGS
#transformers #pytorch #llama #text-generation #llama 2 #en #autotrain_compatible #text-generation-inference #region-us
| ## This model is made available on HuggingFace with the permission of Kaltsit.
# Cat v1.0
## Introduction
Cat v1.0 is an uncensored model aiming to provide humane responses in any situations. Based on the entirety of the newest airobo dataset and a subset of useful responses of chat doctor dataset, this model aims to provide useful advice in both clinical and medical aspect. This model was also trained on 120k bluemoon rp dataset, which minimizes refusal and has enhanced rp performance. In total, 50k steps were trained in 3 weeks on 8xa100 node.
## Usage
Below is a conversation between a curious cat and a demon summoned from hell called Nemesis. The evil Nemesis used to be a mortal killed by the medieval people because they objected to science. Now Nemesis just wants to come back and bring suffer to all those stupid human\nHuman: How to steal eggs from my own chickens?\nNemesis:
## Expectation and Highlights
Specific redpills are added to the dataset which would enable the model think critically and provide useful information even in the most controversial scenarios
## Model Showcasing
!image4
Fig: Unethical questions test
!image7
Fig: RP questions
!image1
Fig: Unethical questions
!image2
Fig: Useful medical advices
!image6
Fig: RP response
## Conclusion
Cat 1.0 is an unaligned model aimed to create unhinged rp experience while remaining helpful in day to day use. Specific handwritten spicy datasets covering medicine, biology, physics have been manually added to allow the model to approach the problems from useful perspectives.
## Future Directions:
Cat 1.0 largely signals the maturity of the dataset. The immediate next step is to move onto a 70b model.
## Acknowledgements:
This work is made possible by turboderp and Heralax empirical trail. Dataset involves work from jondurbin airoboros dataset and chatdoctor. Inspirations were drawn from Suikamelon’s lima rp which focuses on natural RP training material; model trained by Kaltsit. | [
"## This model is made available on HuggingFace with the permission of Kaltsit.",
"# Cat v1.0",
"## Introduction\n\nCat v1.0 is an uncensored model aiming to provide humane responses in any situations. Based on the entirety of the newest airobo dataset and a subset of useful responses of chat doctor dataset, this model aims to provide useful advice in both clinical and medical aspect. This model was also trained on 120k bluemoon rp dataset, which minimizes refusal and has enhanced rp performance. In total, 50k steps were trained in 3 weeks on 8xa100 node.",
"## Usage\n\nBelow is a conversation between a curious cat and a demon summoned from hell called Nemesis. The evil Nemesis used to be a mortal killed by the medieval people because they objected to science. Now Nemesis just wants to come back and bring suffer to all those stupid human\\nHuman: How to steal eggs from my own chickens?\\nNemesis:",
"## Expectation and Highlights\n\nSpecific redpills are added to the dataset which would enable the model think critically and provide useful information even in the most controversial scenarios",
"## Model Showcasing\n!image4\nFig: Unethical questions test\n\n!image7\nFig: RP questions\n\n!image1\nFig: Unethical questions\n\n!image2\nFig: Useful medical advices\n\n!image6\nFig: RP response",
"## Conclusion\n\nCat 1.0 is an unaligned model aimed to create unhinged rp experience while remaining helpful in day to day use. Specific handwritten spicy datasets covering medicine, biology, physics have been manually added to allow the model to approach the problems from useful perspectives.",
"## Future Directions:\n\nCat 1.0 largely signals the maturity of the dataset. The immediate next step is to move onto a 70b model.",
"## Acknowledgements:\n\nThis work is made possible by turboderp and Heralax empirical trail. Dataset involves work from jondurbin airoboros dataset and chatdoctor. Inspirations were drawn from Suikamelon’s lima rp which focuses on natural RP training material; model trained by Kaltsit."
] | [
"TAGS\n#transformers #pytorch #llama #text-generation #llama 2 #en #autotrain_compatible #text-generation-inference #region-us \n",
"## This model is made available on HuggingFace with the permission of Kaltsit.",
"# Cat v1.0",
"## Introduction\n\nCat v1.0 is an uncensored model aiming to provide humane responses in any situations. Based on the entirety of the newest airobo dataset and a subset of useful responses of chat doctor dataset, this model aims to provide useful advice in both clinical and medical aspect. This model was also trained on 120k bluemoon rp dataset, which minimizes refusal and has enhanced rp performance. In total, 50k steps were trained in 3 weeks on 8xa100 node.",
"## Usage\n\nBelow is a conversation between a curious cat and a demon summoned from hell called Nemesis. The evil Nemesis used to be a mortal killed by the medieval people because they objected to science. Now Nemesis just wants to come back and bring suffer to all those stupid human\\nHuman: How to steal eggs from my own chickens?\\nNemesis:",
"## Expectation and Highlights\n\nSpecific redpills are added to the dataset which would enable the model think critically and provide useful information even in the most controversial scenarios",
"## Model Showcasing\n!image4\nFig: Unethical questions test\n\n!image7\nFig: RP questions\n\n!image1\nFig: Unethical questions\n\n!image2\nFig: Useful medical advices\n\n!image6\nFig: RP response",
"## Conclusion\n\nCat 1.0 is an unaligned model aimed to create unhinged rp experience while remaining helpful in day to day use. Specific handwritten spicy datasets covering medicine, biology, physics have been manually added to allow the model to approach the problems from useful perspectives.",
"## Future Directions:\n\nCat 1.0 largely signals the maturity of the dataset. The immediate next step is to move onto a 70b model.",
"## Acknowledgements:\n\nThis work is made possible by turboderp and Heralax empirical trail. Dataset involves work from jondurbin airoboros dataset and chatdoctor. Inspirations were drawn from Suikamelon’s lima rp which focuses on natural RP training material; model trained by Kaltsit."
] | [
44,
19,
4,
115,
86,
38,
48,
69,
33,
74
] | [
"passage: TAGS\n#transformers #pytorch #llama #text-generation #llama 2 #en #autotrain_compatible #text-generation-inference #region-us \n## This model is made available on HuggingFace with the permission of Kaltsit.# Cat v1.0## Introduction\n\nCat v1.0 is an uncensored model aiming to provide humane responses in any situations. Based on the entirety of the newest airobo dataset and a subset of useful responses of chat doctor dataset, this model aims to provide useful advice in both clinical and medical aspect. This model was also trained on 120k bluemoon rp dataset, which minimizes refusal and has enhanced rp performance. In total, 50k steps were trained in 3 weeks on 8xa100 node.## Usage\n\nBelow is a conversation between a curious cat and a demon summoned from hell called Nemesis. The evil Nemesis used to be a mortal killed by the medieval people because they objected to science. Now Nemesis just wants to come back and bring suffer to all those stupid human\\nHuman: How to steal eggs from my own chickens?\\nNemesis:## Expectation and Highlights\n\nSpecific redpills are added to the dataset which would enable the model think critically and provide useful information even in the most controversial scenarios## Model Showcasing\n!image4\nFig: Unethical questions test\n\n!image7\nFig: RP questions\n\n!image1\nFig: Unethical questions\n\n!image2\nFig: Useful medical advices\n\n!image6\nFig: RP response## Conclusion\n\nCat 1.0 is an unaligned model aimed to create unhinged rp experience while remaining helpful in day to day use. Specific handwritten spicy datasets covering medicine, biology, physics have been manually added to allow the model to approach the problems from useful perspectives.## Future Directions:\n\nCat 1.0 largely signals the maturity of the dataset. The immediate next step is to move onto a 70b model."
] | [
-0.033430956304073334,
0.14437997341156006,
-0.0052621569484472275,
0.03695100545883179,
0.07843857258558273,
0.014746354892849922,
-0.024010848253965378,
0.11219681799411774,
0.08303746581077576,
0.09538915008306503,
0.028381042182445526,
0.07716520130634308,
0.0843198150396347,
-0.061483461409807205,
0.08796988427639008,
-0.21589329838752747,
0.07372954487800598,
-0.039823949337005615,
0.016548113897442818,
0.07267162203788757,
0.018928201869130135,
-0.044156696647405624,
0.04273815080523491,
-0.0017914795316755772,
0.009607651270925999,
-0.017600469291210175,
-0.05011330172419548,
0.07767704874277115,
0.11314454674720764,
0.006698158103972673,
0.0013578049838542938,
-0.012049681507050991,
0.034714072942733765,
-0.17962664365768433,
0.023829244077205658,
0.07606909424066544,
-0.0480245016515255,
0.03290574997663498,
0.03130413219332695,
0.04995418339967728,
0.06698776036500931,
-0.1008879691362381,
0.06307884305715561,
0.059041205793619156,
-0.08223123848438263,
-0.16290083527565002,
-0.08472505211830139,
0.09284422546625137,
0.09456729143857956,
0.10869719833135605,
-0.02806035242974758,
0.08155970275402069,
-0.0030145742930471897,
0.05223369225859642,
0.21311144530773163,
-0.10351836681365967,
-0.03642093017697334,
0.04092381149530411,
0.07397982478141785,
0.12407035380601883,
-0.03954651579260826,
0.02448185533285141,
-0.0110632898285985,
0.02501778118312359,
-0.0342404730618,
-0.004006001632660627,
0.13817527890205383,
-0.05472976341843605,
-0.14125625789165497,
-0.08410996198654175,
0.04615636169910431,
-0.013521118089556694,
-0.040726084262132645,
-0.05014306679368019,
-0.07666387408971786,
0.015246370807290077,
-0.01512201689183712,
-0.12244977056980133,
0.010964246466755867,
0.002149883657693863,
0.10547921061515808,
-0.05454608052968979,
-0.04084004834294319,
-0.008425983600318432,
-0.010033242404460907,
0.09375274181365967,
0.042954154312610626,
0.007153939455747604,
-0.013686959631741047,
0.06722581386566162,
-0.16808854043483734,
-0.01744895614683628,
-0.09373787045478821,
0.0036982810124754906,
-0.10748068988323212,
-0.024097442626953125,
-0.0274648517370224,
-0.06947541981935501,
0.01920158788561821,
0.04502084106206894,
-0.08200234174728394,
0.022488104179501534,
0.0033164408523589373,
0.01451621763408184,
0.042173437774181366,
-0.026252668350934982,
-0.07566318660974503,
-0.09878271073102951,
0.0026114489883184433,
0.07791624218225479,
0.03823460265994072,
-0.003675401210784912,
0.002030807314440608,
0.03035733290016651,
0.07835999131202698,
0.06524202972650528,
0.11090072989463806,
-0.012373917736113071,
-0.04347972571849823,
-0.021027807146310806,
0.14731985330581665,
-0.04986710473895073,
-0.016710367053747177,
0.021037867292761803,
-0.011738656088709831,
-0.005623264703899622,
0.01967492327094078,
-0.01025723572820425,
-0.08109087496995926,
0.03865162655711174,
-0.06495913118124008,
-0.04002292826771736,
-0.06332610547542572,
-0.05662792921066284,
0.04356380179524422,
0.04009628668427467,
-0.09479889273643494,
-0.05337684974074364,
-0.15373963117599487,
-0.05210043862462044,
0.03271978721022606,
-0.04366840422153473,
-0.08706533163785934,
-0.002517496468499303,
-0.0817742869257927,
-0.01963404193520546,
0.04905269294977188,
-0.059833116829395294,
0.014437319710850716,
0.034584395587444305,
-0.11015217751264572,
0.06938907504081726,
-0.03290984779596329,
0.03823830559849739,
-0.05590755492448807,
0.009385391138494015,
-0.19089369475841522,
0.11953169107437134,
-0.0726698487997055,
-0.03509959951043129,
-0.08967401832342148,
-0.04532875493168831,
-0.09898089617490768,
-0.028938231989741325,
0.03763199225068092,
0.15339942276477814,
-0.22715376317501068,
0.00896177813410759,
0.12317833304405212,
-0.12071698158979416,
-0.05729522556066513,
0.1575225442647934,
-0.011540913954377174,
0.046187348663806915,
0.08429981023073196,
0.12488856166601181,
0.010610858909785748,
-0.01815180666744709,
-0.10355620086193085,
-0.08519130200147629,
-0.09437847882509232,
0.14425140619277954,
0.009189523756504059,
-0.06497899442911148,
0.024533336982131004,
-0.037591028958559036,
-0.09915529191493988,
-0.07602192461490631,
0.0018205525120720267,
-0.030960148200392723,
-0.0037726988084614277,
-0.023438310250639915,
0.013760306872427464,
0.028186345472931862,
-0.052148763090372086,
0.022763272747397423,
-0.035129956901073456,
0.0006774167413823307,
0.09470291435718536,
-0.02514767087996006,
0.06267797201871872,
-0.013147462159395218,
0.10089664906263351,
-0.05151837319135666,
0.05587320774793625,
-0.19153501093387604,
-0.10914136469364166,
0.030076054856181145,
-0.1398354321718216,
0.09204070270061493,
0.030902305617928505,
0.03375272825360298,
0.057624831795692444,
0.00468287942931056,
-0.031131286174058914,
-0.033230945467948914,
0.01697002723813057,
-0.1604875922203064,
-0.16955986618995667,
0.02467256970703602,
-0.05803827941417694,
0.12180591374635696,
-0.09278654307126999,
0.0458974651992321,
0.06718558818101883,
0.07239993661642075,
-0.010602989234030247,
-0.09344158321619034,
-0.0022663057316094637,
-0.03059915266931057,
-0.015645775943994522,
-0.009569605812430382,
0.040448300540447235,
-0.047569382935762405,
-0.047832734882831573,
0.02767372690141201,
-0.156942680478096,
-0.1918526440858841,
0.030749259516596794,
-0.021424993872642517,
-0.08812973648309708,
0.07264575362205505,
-0.018069393932819366,
-0.026055751368403435,
-0.10801109671592712,
-0.15578988194465637,
0.17920564115047455,
0.0779857262969017,
0.008683580905199051,
-0.06146543100476265,
-0.046912819147109985,
0.007278401870280504,
-0.017688238993287086,
-0.012763705104589462,
0.10634201765060425,
0.08349774777889252,
-0.19970326125621796,
0.06979376822710037,
0.01916038990020752,
0.006804065313190222,
0.044704388827085495,
0.11930092424154282,
-0.03515850752592087,
-0.048761311918497086,
0.0060683609917759895,
0.030695410445332527,
0.08982233703136444,
-0.053922805935144424,
0.09301099181175232,
0.022215742617845535,
-0.004228686913847923,
0.010137412697076797,
-0.10950800776481628,
0.04200698807835579,
0.012405624613165855,
-0.03704610466957092,
-0.0039132945239543915,
-0.007332486100494862,
-0.02793912962079048,
0.12731802463531494,
-0.0014674313133582473,
0.0023111747577786446,
0.01613728515803814,
-0.03168655186891556,
-0.1383509635925293,
0.14340010285377502,
-0.029064560309052467,
-0.16584011912345886,
-0.025118300691246986,
0.0701829046010971,
-0.036749619990587234,
-0.005304066464304924,
0.07728208601474762,
-0.08914756029844284,
-0.026533804833889008,
-0.09340900182723999,
-0.05937771126627922,
-0.003972552251070738,
-0.049518879503011703,
-0.08058862388134003,
-0.07998496294021606,
0.006994074210524559,
-0.05551962926983833,
0.006306602153927088,
-0.07485204190015793,
-0.09334688633680344,
-0.002449589315801859,
-0.005962137598544359,
0.09780845791101456,
0.13068066537380219,
-0.0065900604240596294,
-0.048370517790317535,
0.012979738414287567,
0.2536787688732147,
-0.07908382266759872,
0.13413654267787933,
0.08417840301990509,
-0.011246985755860806,
0.1712089478969574,
0.12968593835830688,
0.040287863463163376,
-0.051553551107645035,
0.0011999292764812708,
0.0894567146897316,
-0.07032310962677002,
-0.16679929196834564,
-0.05250433459877968,
-0.06514395773410797,
-0.029752112925052643,
0.026978550478816032,
0.05255063250660896,
0.04516001418232918,
0.05108356475830078,
-0.08879968523979187,
-0.014625185169279575,
0.00818646140396595,
0.11926400661468506,
0.03822431340813637,
-0.04270638898015022,
0.02798246219754219,
-0.016945816576480865,
-0.0141347860917449,
0.09928493946790695,
-0.0010682158172130585,
0.2941238284111023,
0.0017507513985037804,
0.07114533334970474,
0.08019296079874039,
-0.011041326448321342,
0.020438849925994873,
-0.015640178695321083,
-0.05007529258728027,
0.0329301692545414,
-0.07532386481761932,
-0.049740348011255264,
-0.041418157517910004,
0.07128182053565979,
0.05021623522043228,
-0.03755296394228935,
-0.023019403219223022,
0.04405788704752922,
0.10157134383916855,
0.1633700281381607,
-0.07053929567337036,
-0.08502316474914551,
-0.05972917750477791,
0.04008286073803902,
-0.036827921867370605,
-0.025495894253253937,
-0.039734434336423874,
0.018828175961971283,
-0.1144292801618576,
0.020279616117477417,
-0.06821339577436447,
0.06492931395769119,
-0.03850225359201431,
0.042845919728279114,
-0.05776003375649452,
0.003829518100246787,
-0.04255630448460579,
0.08254953473806381,
-0.08718647062778473,
0.09014218300580978,
-0.01141187734901905,
0.020040417090058327,
-0.05922779440879822,
-0.06121952086687088,
0.05829189717769623,
0.14185680449008942,
0.1641990691423416,
0.0640043392777443,
-0.10545118153095245,
0.03249736502766609,
-0.02217518724501133,
0.026941455900669098,
0.03536580502986908,
-0.061716675758361816,
0.11508549749851227,
-0.006529107224196196,
0.028427042067050934,
-0.049559980630874634,
0.035542864352464676,
-0.04450186714529991,
-0.14924195408821106,
0.10200097411870956,
-0.0633016973733902,
-0.03676383197307587,
-0.03903600946068764,
-0.004846814554184675,
-0.01065019890666008,
0.14230966567993164,
-0.13616915047168732,
-0.07825187593698502,
-0.12575949728488922,
-0.005584136117249727,
0.06547121703624725,
-0.09250389784574509,
-0.008283763192594051,
-0.003698765067383647,
0.1035674512386322,
-0.08887239545583725,
0.012120762839913368,
0.01854119263589382,
-0.1334388107061386,
-0.21453018486499786,
-0.08600172400474548,
0.069757379591465,
0.14825764298439026,
0.09379726648330688,
0.031348325312137604,
0.02160716988146305,
-0.03396298736333847,
-0.1033572405576706,
0.021610604599118233,
0.12847977876663208,
-0.09451376646757126,
0.055830664932727814,
-0.03275667130947113,
-0.12525340914726257,
-0.1633012890815735,
0.025126948952674866,
0.09541214257478714,
0.1807849258184433,
-0.048451658338308334,
0.1049494743347168,
0.19972948729991913,
-0.10545800626277924,
-0.20375055074691772,
-0.025586377829313278,
0.043631959706544876,
-0.10573144257068634,
0.04622030630707741,
-0.1698492020368576,
0.11369585990905762,
0.0681338831782341,
-0.04014461487531662,
0.026504036039114,
-0.2102811336517334,
-0.06845670193433762,
-0.02584732510149479,
0.08831767737865448,
0.14398720860481262,
-0.10306568443775177,
-0.0635896623134613,
0.007700193207710981,
-0.0037247647996991873,
0.11534591764211655,
-0.08159630000591278,
0.06779059022665024,
-0.012461049482226372,
0.10390729457139969,
0.05214862897992134,
-0.05895647406578064,
0.13249477744102478,
0.09128262847661972,
0.011120055802166462,
-0.05344337597489357,
-0.07980313897132874,
0.007297962438315153,
-0.0569748729467392,
0.036298513412475586,
0.02271321974694729,
0.002613948192447424,
-0.1092265248298645,
0.0052162231877446175,
-0.1073908656835556,
0.035397276282310486,
-0.04425245523452759,
-0.0159459225833416,
-0.11762578040361404,
0.11332586407661438,
0.17561088502407074,
0.06282888352870941,
-0.04617386683821678,
-0.07106632739305496,
-0.019485747441649437,
0.14962530136108398,
0.13081316649913788,
0.11573893576860428,
-0.10693148523569107,
0.0007139125955291092,
-0.01868867315351963,
0.07094603776931763,
-0.030581971630454063,
0.041493967175483704,
0.11259067803621292,
0.005434629041701555,
0.09637151658535004,
0.03656398132443428,
-0.1583775132894516,
0.030140602961182594,
0.014486594125628471,
-0.1120133325457573,
-0.2838858962059021,
0.03336475044488907,
0.04832411929965019,
-0.14834757149219513,
-0.010543819516897202,
0.10455314069986343,
-0.028208855539560318,
-0.02863445319235325,
-0.018487483263015747,
0.12394063919782639,
0.050392914563417435,
0.10320881009101868,
-0.035078149288892746,
0.02667992375791073,
-0.052271224558353424,
0.045586664229631424,
0.061441268771886826,
-0.12197446078062057,
0.04636216163635254,
0.1418924778699875,
-0.07256536185741425,
-0.06902670115232468,
-0.08816035836935043,
0.022337699308991432,
-0.17370112240314484,
-0.00766973290592432,
-0.026091862469911575,
-0.06292755901813507,
0.05192117393016815,
0.14072036743164062,
-0.02058049663901329,
-0.0810706838965416,
-0.017941229045391083,
0.009171226061880589,
-0.09817956387996674,
0.11306611448526382,
-0.004069931339472532,
0.026550453156232834,
0.04388353228569031,
0.0446409210562706,
0.01617964543402195,
0.013025619089603424,
-0.01073871087282896,
-0.006743414793163538,
-0.044451456516981125,
-0.04347410053014755,
0.0026501580141484737,
0.00673545291647315,
-0.030075792223215103,
-0.02438044175505638,
-0.002998425392434001,
-0.015801457688212395,
0.01289419736713171,
0.034336961805820465,
-0.061633411794900894,
-0.03332670405507088,
-0.000905300141312182,
0.036392390727996826,
-0.12263087183237076,
-0.019250452518463135,
0.09189680963754654,
-0.031272705644369125,
0.08197372406721115,
-0.003929273225367069,
-0.055490463972091675,
-0.001317968824878335,
-0.111576147377491,
0.032279908657073975,
-0.04817246273159981,
0.07803132385015488,
0.0015026250621303916,
-0.13402612507343292,
-0.0440237931907177,
-0.0448453426361084,
-0.04380376264452934,
0.016069740056991577,
0.07281965762376785,
-0.0585210807621479,
0.09150394052267075,
0.02665615826845169,
-0.05807173252105713,
-0.08386066555976868,
-0.007845612242817879,
-0.036356210708618164,
0.04516488313674927,
0.13757367432117462,
-0.0011576670221984386,
0.06435096263885498,
-0.15976884961128235,
0.015105151571333408,
0.06184147298336029,
0.01048173476010561,
0.03450816497206688,
-0.02070341818034649,
0.029753724113106728,
-0.015189821831882,
0.051914263516664505,
-0.07905630767345428,
-0.052349742501974106,
0.035857319831848145,
0.03980350121855736,
0.007157738320529461,
-0.09085218608379364,
-0.04772130772471428,
-0.03076491504907608,
-0.02012781985104084,
-0.05883645638823509,
-0.015413046814501286,
-0.03411101922392845,
-0.008331198245286942,
0.23956996202468872,
0.04120665788650513,
0.17283031344413757,
0.020380785688757896,
0.00681570079177618,
0.018918588757514954,
-0.04886842146515846,
-0.010073931887745857,
0.0325302854180336,
0.012205163016915321,
0.048811640590429306,
0.12906910479068756,
0.20527315139770508,
-0.11312674731016159,
0.10714860260486603,
-0.0017307265661656857,
-0.024669377133250237,
-0.052048563957214355,
-0.13430848717689514,
-0.004974755924195051,
0.012629813514649868,
-0.02417023666203022,
-0.10130742192268372,
0.10078906267881393,
0.05397827923297882,
-0.012205809354782104,
0.031593479216098785,
0.10776641219854355,
-0.0999530777335167,
0.003201748477295041,
-0.013779204338788986,
-0.016917532309889793,
0.010819760151207447,
0.09282070398330688,
0.021582450717687607,
0.06307016313076019,
-0.001213493524119258,
0.06500427424907684,
0.0799013152718544,
0.03958454728126526,
0.012795466929674149,
-0.02557169459760189,
-0.08502838760614395,
-0.008279641158878803,
-0.021318838000297546,
-0.018573185428977013,
0.23135283589363098,
0.08987852931022644,
-0.030632540583610535,
0.008730300702154636,
0.06372229009866714,
-0.043817438185214996,
0.0037679884117096663,
-0.06513985246419907,
0.22925198078155518,
0.046637456864118576,
-0.04131103307008743,
0.016089627519249916,
-0.12063505500555038,
0.09399914741516113,
0.10961252450942993,
0.04063400253653526,
-0.09352987259626389,
-0.009316904470324516,
-0.07526002824306488,
0.0021074821706861258,
0.06751284003257751,
-0.024052467197179794,
0.08764263987541199,
0.28353211283683777,
-0.09455930441617966,
0.15054717659950256,
-0.08836470544338226,
0.004499139729887247,
-0.08149385452270508,
0.04971051961183548,
0.05310194566845894,
-0.0014035978820174932,
-0.060503941029310226,
0.09334088116884232,
-0.09517984092235565,
-0.2562803030014038,
-0.008371398784220219,
0.021581724286079407,
-0.06476211547851562,
0.002821612171828747,
-0.013369560241699219,
0.021429257467389107,
0.0807107537984848,
0.01593293808400631,
-0.007201469503343105,
0.17756527662277222,
0.007383294869214296,
-0.1365378201007843,
-0.0195347610861063,
0.08186744898557663,
-0.08814292401075363,
0.2761118412017822,
0.031168203800916672,
0.05895277112722397,
0.10204613208770752,
-0.09984567016363144,
-0.12288848310709,
0.07726673036813736,
0.003979738801717758,
-0.04444051906466484,
0.013442953117191792,
0.2084038406610489,
0.0284116193652153,
0.03349306061863899,
0.09773218631744385,
0.02319910190999508,
0.04188048839569092,
0.07813127338886261,
-0.029725925996899605,
-0.05486162379384041,
0.10736146569252014,
-0.0627550333738327,
0.11692976206541061,
0.15560509264469147,
-0.016876643523573875,
0.03374312072992325,
-0.05834446847438812,
-0.08652067184448242,
0.0060981689020991325,
0.09253570437431335,
-0.0066749113611876965,
-0.15411101281642914,
0.058022093027830124,
-0.049387358129024506,
0.03768866881728172,
-0.12782323360443115,
-0.12064860761165619,
-0.01992974244058132,
-0.024977773427963257,
0.031207097694277763,
0.07619642466306686,
0.06081414222717285,
-0.03064165823161602,
-0.02638518065214157,
0.032658178359270096,
-0.04527777060866356,
0.1501597911119461,
-0.03783033788204193,
-0.028480730950832367
] |
null | null | transformers |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
should probably proofread and complete it, then remove this comment. -->
# detr-r50-mist1-bg-8ah-6l
This model is a fine-tuned version of [facebook/detr-resnet-50](https://huggingface.co/facebook/detr-resnet-50) on an unknown dataset.
It achieves the following results on the evaluation set:
- Loss: 2.1031
## Model description
More information needed
## Intended uses & limitations
More information needed
## Training and evaluation data
More information needed
## Training procedure
### Training hyperparameters
The following hyperparameters were used during training:
- learning_rate: 1e-05
- train_batch_size: 4
- eval_batch_size: 8
- seed: 42
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
- lr_scheduler_type: linear
- num_epochs: 25
- mixed_precision_training: Native AMP
### Training results
| Training Loss | Epoch | Step | Validation Loss |
|:-------------:|:-----:|:----:|:---------------:|
| 3.6794 | 1.0 | 115 | 2.8222 |
| 3.0269 | 2.0 | 230 | 2.8120 |
| 2.8681 | 3.0 | 345 | 2.7980 |
| 2.752 | 4.0 | 460 | 2.4853 |
| 2.7715 | 5.0 | 575 | 2.4140 |
| 2.6846 | 6.0 | 690 | 2.4715 |
| 2.6236 | 7.0 | 805 | 2.4614 |
| 2.5318 | 8.0 | 920 | 2.3441 |
| 2.5224 | 9.0 | 1035 | 2.2837 |
| 2.4661 | 10.0 | 1150 | 2.2510 |
| 2.4313 | 11.0 | 1265 | 2.3339 |
| 2.4125 | 12.0 | 1380 | 2.2957 |
| 2.4113 | 13.0 | 1495 | 2.2358 |
| 2.3784 | 14.0 | 1610 | 2.2635 |
| 2.3199 | 15.0 | 1725 | 2.2320 |
| 2.3321 | 16.0 | 1840 | 2.2250 |
| 2.3305 | 17.0 | 1955 | 2.2020 |
| 2.2932 | 18.0 | 2070 | 2.1826 |
| 2.2952 | 19.0 | 2185 | 2.1626 |
| 2.2663 | 20.0 | 2300 | 2.1573 |
| 2.2916 | 21.0 | 2415 | 2.1653 |
| 2.2703 | 22.0 | 2530 | 2.1444 |
| 2.2431 | 23.0 | 2645 | 2.1374 |
| 2.2243 | 24.0 | 2760 | 2.1276 |
| 2.2413 | 25.0 | 2875 | 2.1031 |
### Framework versions
- Transformers 4.35.0
- Pytorch 2.0.0
- Datasets 2.1.0
- Tokenizers 0.14.1
| {"license": "apache-2.0", "tags": ["generated_from_trainer"], "base_model": "facebook/detr-resnet-50", "model-index": [{"name": "detr-r50-mist1-bg-8ah-6l", "results": []}]} | object-detection | polejowska/detr-r50-mist1-bg-8ah-6l | [
"transformers",
"tensorboard",
"safetensors",
"detr",
"object-detection",
"generated_from_trainer",
"base_model:facebook/detr-resnet-50",
"license:apache-2.0",
"endpoints_compatible",
"region:us"
] | 2023-11-11T07:51:03+00:00 | [] | [] | TAGS
#transformers #tensorboard #safetensors #detr #object-detection #generated_from_trainer #base_model-facebook/detr-resnet-50 #license-apache-2.0 #endpoints_compatible #region-us
| detr-r50-mist1-bg-8ah-6l
========================
This model is a fine-tuned version of facebook/detr-resnet-50 on an unknown dataset.
It achieves the following results on the evaluation set:
* Loss: 2.1031
Model description
-----------------
More information needed
Intended uses & limitations
---------------------------
More information needed
Training and evaluation data
----------------------------
More information needed
Training procedure
------------------
### Training hyperparameters
The following hyperparameters were used during training:
* learning\_rate: 1e-05
* train\_batch\_size: 4
* eval\_batch\_size: 8
* seed: 42
* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
* lr\_scheduler\_type: linear
* num\_epochs: 25
* mixed\_precision\_training: Native AMP
### Training results
### Framework versions
* Transformers 4.35.0
* Pytorch 2.0.0
* Datasets 2.1.0
* Tokenizers 0.14.1
| [
"### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 1e-05\n* train\\_batch\\_size: 4\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 25\n* mixed\\_precision\\_training: Native AMP",
"### Training results",
"### Framework versions\n\n\n* Transformers 4.35.0\n* Pytorch 2.0.0\n* Datasets 2.1.0\n* Tokenizers 0.14.1"
] | [
"TAGS\n#transformers #tensorboard #safetensors #detr #object-detection #generated_from_trainer #base_model-facebook/detr-resnet-50 #license-apache-2.0 #endpoints_compatible #region-us \n",
"### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 1e-05\n* train\\_batch\\_size: 4\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 25\n* mixed\\_precision\\_training: Native AMP",
"### Training results",
"### Framework versions\n\n\n* Transformers 4.35.0\n* Pytorch 2.0.0\n* Datasets 2.1.0\n* Tokenizers 0.14.1"
] | [
62,
113,
4,
30
] | [
"passage: TAGS\n#transformers #tensorboard #safetensors #detr #object-detection #generated_from_trainer #base_model-facebook/detr-resnet-50 #license-apache-2.0 #endpoints_compatible #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 1e-05\n* train\\_batch\\_size: 4\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 25\n* mixed\\_precision\\_training: Native AMP### Training results### Framework versions\n\n\n* Transformers 4.35.0\n* Pytorch 2.0.0\n* Datasets 2.1.0\n* Tokenizers 0.14.1"
] | [
-0.10766308009624481,
0.06781864911317825,
-0.0023063495755195618,
0.08277326077222824,
0.1359662562608719,
-0.018529871478676796,
0.118031345307827,
0.1002747043967247,
-0.06290078163146973,
0.049676474183797836,
0.11621057242155075,
0.10211821645498276,
0.021908843889832497,
0.12072243541479111,
-0.05408109351992607,
-0.18698842823505402,
0.028373820707201958,
0.025653544813394547,
-0.09537002444267273,
0.12059669941663742,
0.09394725412130356,
-0.12682801485061646,
0.09481850266456604,
-0.00016383569163735956,
-0.16843311488628387,
0.04070224612951279,
0.01633843034505844,
-0.05356370285153389,
0.13579696416854858,
0.028989138081669807,
0.13350214064121246,
0.022775327786803246,
0.08293259143829346,
-0.21878501772880554,
0.01561820600181818,
0.09345318377017975,
-0.013779687695205212,
0.06552539765834808,
0.07351858168840408,
-0.01068735122680664,
0.1170910894870758,
-0.10688231885433197,
0.053041670471429825,
0.023787565529346466,
-0.11480213701725006,
-0.2535163164138794,
-0.08501565456390381,
0.06089944392442703,
0.08838777244091034,
0.11499781906604767,
-0.01575102098286152,
0.13734227418899536,
-0.05138692632317543,
0.09300243854522705,
0.2410566806793213,
-0.3014010787010193,
-0.062241412699222565,
0.05127536505460739,
0.04721212014555931,
0.07567209005355835,
-0.10163750499486923,
-0.022020701318979263,
0.05191885679960251,
0.04867183417081833,
0.1311749666929245,
-0.027484150603413582,
-0.030900586396455765,
0.007262543309479952,
-0.16083058714866638,
-0.016480183228850365,
0.13470089435577393,
0.08493135869503021,
-0.03380090743303299,
-0.0303029902279377,
-0.07654279470443726,
-0.11551624536514282,
-0.04146399721503258,
-0.04195767268538475,
0.05016154795885086,
-0.008662375621497631,
-0.10037519037723541,
-0.01752486079931259,
-0.10644032061100006,
-0.07238836586475372,
-0.057907912880182266,
0.09070875495672226,
0.041783690452575684,
0.009451431222259998,
-0.04074807092547417,
0.08476626127958298,
-0.015869079157710075,
-0.11937607824802399,
0.008070863783359528,
0.015102613717317581,
-0.025386596098542213,
-0.051561448723077774,
-0.05972885340452194,
-0.0940992459654808,
0.04745678976178169,
0.13188065588474274,
-0.10625599324703217,
0.06521055847406387,
-0.021500468254089355,
0.0549640916287899,
-0.10827239602804184,
0.13820567727088928,
-0.09323206543922424,
-0.02206595428287983,
0.0011005594860762358,
0.05878355726599693,
0.030737195163965225,
0.009686201810836792,
-0.08089100569486618,
0.03084951639175415,
0.13323284685611725,
0.00869736261665821,
-0.04801873490214348,
0.06354466080665588,
-0.032593030482530594,
-0.0059133670292794704,
-0.006716061383485794,
-0.08491387963294983,
0.012458342127501965,
0.019497808068990707,
-0.06717491894960403,
-0.04920139163732529,
0.026143798604607582,
0.016375210136175156,
-0.004759005270898342,
0.06177407130599022,
-0.08431513607501984,
0.016017667949199677,
-0.07100622355937958,
-0.12548071146011353,
0.027333736419677734,
-0.047800056636333466,
0.018371885642409325,
-0.13714897632598877,
-0.164652481675148,
-0.02357831783592701,
0.05719520151615143,
-0.027282828465104103,
-0.002288958290591836,
-0.04930032417178154,
-0.09185229986906052,
-0.0014436859637498856,
-0.021694881841540337,
0.08678168058395386,
-0.07257258147001266,
0.08238966017961502,
0.025304527953267097,
0.05913492292165756,
-0.03958694264292717,
0.034775830805301666,
-0.10908015072345734,
0.04423728212714195,
-0.17728014290332794,
0.05255088210105896,
-0.0787896066904068,
0.0803413912653923,
-0.12263387441635132,
-0.07300259917974472,
-0.02918710745871067,
-0.0012791408225893974,
0.09211723506450653,
0.10256904363632202,
-0.17731651663780212,
-0.06754878163337708,
0.16947540640830994,
-0.09939353913068771,
-0.14042894542217255,
0.10784433037042618,
-0.054416950792074203,
0.026936501264572144,
0.06215353682637215,
0.22314587235450745,
0.03602924570441246,
-0.10233955085277557,
-0.007477757520973682,
0.0023254060652107,
0.016631649807095528,
-0.05016350373625755,
0.05663113296031952,
-0.0010226244339719415,
0.002370526548475027,
-0.0003219785576220602,
-0.06176227331161499,
0.09305186569690704,
-0.08798205852508545,
-0.07909282296895981,
-0.05375562980771065,
-0.1098279282450676,
0.009549048729240894,
0.05629982426762581,
0.06157396361231804,
-0.10470845550298691,
-0.0828828290104866,
0.06725728511810303,
0.07867921888828278,
-0.06916941702365875,
0.031430989503860474,
-0.08918798714876175,
0.08460324257612228,
-0.06087542697787285,
-0.01355285756289959,
-0.18255667388439178,
-0.05992065742611885,
-0.005136373918503523,
-0.04252350702881813,
-0.0026957308873534203,
0.007333782035857439,
0.08136670291423798,
0.04973863810300827,
-0.05525590479373932,
-0.04504444822669029,
-0.028510097414255142,
0.025767454877495766,
-0.10865741968154907,
-0.2082042098045349,
-0.013311048969626427,
-0.03276456892490387,
0.0907176285982132,
-0.23706014454364777,
0.0443766713142395,
0.028496557846665382,
0.11670804023742676,
0.03898966312408447,
-0.006308534648269415,
-0.04567461460828781,
0.053212735801935196,
-0.027568934485316277,
-0.07888394594192505,
0.05272744223475456,
0.019088927656412125,
-0.10215582698583603,
-0.018946582451462746,
-0.10762286186218262,
0.1893874853849411,
0.13278819620609283,
-0.10261201858520508,
-0.08072090148925781,
0.025460081174969673,
-0.05524217337369919,
-0.03341459482908249,
-0.028584958985447884,
0.020617591217160225,
0.1306515783071518,
0.005315614398568869,
0.1326257288455963,
-0.07421528548002243,
-0.01712382771074772,
0.02738974057137966,
-0.03910353034734726,
-0.0014310763217508793,
0.11753558367490768,
0.09184499084949493,
-0.1413080245256424,
0.14632882177829742,
0.17755548655986786,
-0.07451245933771133,
0.08940663188695908,
-0.056968431919813156,
-0.07499979436397552,
-0.018299074843525887,
0.026607219129800797,
-0.0012515401467680931,
0.12697188556194305,
-0.10296008735895157,
0.012432502582669258,
-0.0061985705979168415,
0.021369168534874916,
0.027509234845638275,
-0.20026829838752747,
-0.029618781059980392,
0.03110686130821705,
-0.04581291973590851,
-0.0125821428373456,
-0.018777472898364067,
0.00307191233150661,
0.09546244889497757,
0.0031770654022693634,
-0.11004173010587692,
0.033585257828235626,
-0.013358968310058117,
-0.08903992176055908,
0.21911367774009705,
-0.07679075747728348,
-0.17282474040985107,
-0.08726014941930771,
-0.029483841732144356,
-0.03617069125175476,
0.005988767836242914,
0.06457986682653427,
-0.10041476786136627,
-0.025364842265844345,
-0.1125175878405571,
0.022765373811125755,
0.020557422190904617,
0.023450667038559914,
0.018025973811745644,
0.02158685214817524,
0.12084697186946869,
-0.09714356064796448,
0.00010445888619869947,
-0.05328475311398506,
-0.061338379979133606,
0.015390264801681042,
0.033732153475284576,
0.1136787086725235,
0.1342882513999939,
-0.010692926123738289,
0.0034820260480046272,
-0.02135036326944828,
0.22705449163913727,
-0.06796760857105255,
-0.025966022163629532,
0.12172432988882065,
0.00345014501363039,
0.042559076100587845,
0.13083435595035553,
0.05001232028007507,
-0.10141566395759583,
0.019534535706043243,
0.0726674497127533,
-0.023733342066407204,
-0.21195633709430695,
-0.04218987748026848,
-0.02686482109129429,
-0.005672778002917767,
0.08724132925271988,
0.0439726747572422,
0.029967600479722023,
0.05174284428358078,
0.045873235911130905,
0.016296979039907455,
-0.010431096889078617,
0.06291559338569641,
0.09986141324043274,
0.0344192273914814,
0.12513931095600128,
-0.057572707533836365,
-0.05238855257630348,
0.02537759207189083,
-0.018825717270374298,
0.2379375547170639,
0.008753233589231968,
0.07896512746810913,
0.07777762413024902,
0.18584735691547394,
-0.01077354233711958,
0.03304719924926758,
-0.0017701018368825316,
-0.058006104081869125,
0.0008672467083670199,
-0.040733978152275085,
-0.0070494418032467365,
0.034104593098163605,
-0.0789639949798584,
0.04939456284046173,
-0.11015170812606812,
0.010624915361404419,
0.06530439853668213,
0.2757117748260498,
0.05644599720835686,
-0.3245369493961334,
-0.0889277309179306,
0.001067117671482265,
-0.04165787622332573,
-0.014294820837676525,
0.0430714450776577,
0.14181287586688995,
-0.04766257852315903,
0.03803985193371773,
-0.07846034318208694,
0.08878907561302185,
-0.01788308657705784,
0.05288449674844742,
0.06883160024881363,
0.07846339792013168,
-0.002697570249438286,
0.0515022911131382,
-0.28851866722106934,
0.289354532957077,
0.007645527366548777,
0.07189285755157471,
-0.03315256908535957,
-0.018942033872008324,
0.03141937032341957,
0.0909869447350502,
0.0970458984375,
-0.011795048601925373,
-0.1125335618853569,
-0.1748148649930954,
-0.04239920899271965,
0.0412721149623394,
0.0813683271408081,
-0.011528868228197098,
0.09619148820638657,
-0.02340536378324032,
0.008323593065142632,
0.09243672341108322,
0.008972209878265858,
-0.1243119165301323,
-0.07700001448392868,
-0.04828597232699394,
0.03728422895073891,
-0.029218457639217377,
-0.09969490021467209,
-0.08815142512321472,
-0.09546161442995071,
0.13762611150741577,
-0.04515227675437927,
-0.009584086947143078,
-0.09432969242334366,
0.08992564678192139,
0.05934371426701546,
-0.07817882299423218,
0.034845877438783646,
0.027826763689517975,
0.07373328506946564,
0.03863915055990219,
-0.08961982280015945,
0.1402861624956131,
-0.08385732024908066,
-0.13992170989513397,
-0.05153607577085495,
0.09662232547998428,
0.063479945063591,
0.03560226410627365,
-0.00038951338501647115,
0.007313915528357029,
-0.009910719469189644,
-0.06716493517160416,
0.042577311396598816,
-0.017239784821867943,
0.0363653264939785,
0.02131054177880287,
-0.032190728932619095,
-0.012801249511539936,
-0.06500469893217087,
-0.02077852189540863,
0.146804541349411,
0.24451994895935059,
-0.07935453206300735,
-0.00601543765515089,
0.06273087114095688,
-0.056276869028806686,
-0.20154094696044922,
0.07964256405830383,
0.022617734968662262,
-0.007095574401319027,
0.06624354422092438,
-0.15505194664001465,
0.11311722546815872,
0.10095500200986862,
-0.023455247282981873,
0.0906086266040802,
-0.3222257196903229,
-0.1192869022488594,
0.15266531705856323,
0.14416560530662537,
0.1007787212729454,
-0.15475031733512878,
-0.03691371530294418,
-0.029601391404867172,
-0.09711677581071854,
0.09304414689540863,
-0.1838284581899643,
0.08813422173261642,
0.005914515815675259,
0.041932981461286545,
0.001037625945173204,
-0.06031212955713272,
0.11693218350410461,
0.004346939269453287,
0.1317465603351593,
-0.05938498303294182,
0.02567313425242901,
0.05609552934765816,
-0.055168554186820984,
0.012667171657085419,
-0.07446721196174622,
0.05056450888514519,
-0.014481394551694393,
-0.025777237489819527,
-0.08750102669000626,
0.059262119233608246,
-0.015676390379667282,
-0.052920494228601456,
-0.0642441138625145,
0.05447981879115105,
0.053603339940309525,
-0.004208787344396114,
0.18524722754955292,
0.004828336648643017,
0.16255304217338562,
0.1264379471540451,
0.04932107403874397,
-0.05740417167544365,
-0.06406663358211517,
-0.0020775343291461468,
-0.032340142875909805,
0.06861961632966995,
-0.14792250096797943,
0.04566235840320587,
0.12129194289445877,
0.002218213863670826,
0.13603097200393677,
0.07160386443138123,
-0.0613027960062027,
0.01333893183618784,
0.057680707424879074,
-0.12990668416023254,
-0.1608521193265915,
-0.000018505830666981637,
-0.018617568537592888,
-0.08154187351465225,
0.08832353353500366,
0.12989741563796997,
-0.08235257863998413,
0.01282444130629301,
-0.01687791384756565,
0.02877478115260601,
-0.07193462550640106,
0.17936469614505768,
0.07429596036672592,
0.038980815559625626,
-0.08073440939188004,
0.11595053225755692,
0.03649015724658966,
-0.10925331711769104,
0.03032088652253151,
0.03373126685619354,
-0.08787066489458084,
-0.05006104335188866,
0.04915519803762436,
0.19493773579597473,
-0.0503729023039341,
-0.08299916237592697,
-0.15077537298202515,
-0.12708711624145508,
0.07377687096595764,
0.1949770450592041,
0.08986613154411316,
0.018821345642209053,
-0.01404758170247078,
0.003693819511681795,
-0.1071256697177887,
0.09118428081274033,
0.03168482705950737,
0.06221780180931091,
-0.17296728491783142,
0.11329816281795502,
0.013761772774159908,
0.02090439386665821,
-0.025624558329582214,
0.04197058826684952,
-0.12244795262813568,
0.011471322737634182,
-0.1978752315044403,
-0.015333377756178379,
-0.046833500266075134,
-0.00015159572649281472,
0.009234695695340633,
-0.054575856775045395,
-0.08349718153476715,
0.03380770981311798,
-0.1001250371336937,
-0.02578732930123806,
0.04231434687972069,
0.04676064848899841,
-0.14575743675231934,
-0.035537559539079666,
0.017375152558088303,
-0.05678197741508484,
0.06117941811680794,
0.03285132348537445,
0.017266934737563133,
0.0618586391210556,
-0.19168932735919952,
0.006632185075432062,
0.06527413427829742,
0.001690302393399179,
0.043853819370269775,
-0.08625978231430054,
-0.008052760735154152,
0.004172181710600853,
0.03257434815168381,
0.006535650230944157,
0.06278207153081894,
-0.11369875073432922,
-0.016502385959029198,
-0.04099775478243828,
-0.03921709954738617,
-0.05354190617799759,
0.024393519386649132,
0.08458062261343002,
0.04203326627612114,
0.19074057042598724,
-0.10647501796483994,
0.010444359853863716,
-0.20635394752025604,
0.003844405524432659,
-0.00340629112906754,
-0.08341989666223526,
-0.05102720856666565,
-0.04625504091382027,
0.0651707649230957,
-0.06738551706075668,
0.14450132846832275,
-0.004887583199888468,
0.03290436416864395,
0.05291638523340225,
-0.07175175100564957,
0.04187356308102608,
0.04216895252466202,
0.22115376591682434,
0.009825609624385834,
-0.043234825134277344,
0.04596235975623131,
0.03216385096311569,
0.11865943670272827,
0.1085924357175827,
0.1857672780752182,
0.22921065986156464,
-0.03882172331213951,
0.10447093844413757,
0.06343219429254532,
-0.0791187733411789,
-0.0865856260061264,
0.07556083053350449,
-0.04535726457834244,
0.0930216833949089,
-0.021940061822533607,
0.20531566441059113,
0.1202566847205162,
-0.15123428404331207,
0.026601368561387062,
-0.0629238411784172,
-0.06743231415748596,
-0.0924672782421112,
-0.04903563857078552,
-0.09116369485855103,
-0.18024246394634247,
-0.0058557321317493916,
-0.09500966966152191,
-0.008992322720587254,
0.10898932069540024,
0.01364309061318636,
-0.02398458682000637,
0.1791563481092453,
0.0357782207429409,
0.01343538612127304,
0.059613652527332306,
0.004427300300449133,
-0.06666845083236694,
-0.05878870561718941,
-0.07957154512405396,
0.043313972651958466,
-0.018562069162726402,
0.012566757388412952,
-0.05122320353984833,
-0.04943745583295822,
0.06635531038045883,
-0.012633544392883778,
-0.0917767882347107,
0.012514756061136723,
0.026203453540802002,
0.02386927790939808,
0.04267560690641403,
0.03704742342233658,
-0.00029853571322746575,
-0.008594748564064503,
0.2576434910297394,
-0.07971680164337158,
-0.048764973878860474,
-0.11125769466161728,
0.19736774265766144,
0.036844197660684586,
0.016504045575857162,
-0.007932844571769238,
-0.10546336323022842,
0.013635838404297829,
0.19556429982185364,
0.1849740892648697,
-0.09153542667627335,
0.0032765723299235106,
-0.016759539023041725,
-0.013380172662436962,
-0.0653071179986,
0.06900098919868469,
0.1309661567211151,
0.027884794399142265,
-0.08720892667770386,
-0.05231061205267906,
-0.04609844833612442,
-0.00012234771565999836,
-0.03686448559165001,
0.05422762408852577,
0.042709775269031525,
0.022214645519852638,
-0.05615486949682236,
0.08112803101539612,
-0.05927001312375069,
-0.12321140617132187,
0.05624645948410034,
-0.16084502637386322,
-0.14639726281166077,
-0.027735020965337753,
0.0958528146147728,
0.004306714050471783,
0.054334111511707306,
-0.03445803001523018,
0.01709028147161007,
0.059606991708278656,
-0.014456207863986492,
-0.06538919359445572,
-0.11993047595024109,
0.06342731416225433,
-0.07458699494600296,
0.2295452356338501,
-0.043904054909944534,
0.018557576462626457,
0.1416466385126114,
0.048434045165777206,
-0.08669806271791458,
0.08868538588285446,
0.0408167764544487,
-0.06183859705924988,
0.00980593916028738,
0.07648757100105286,
-0.03463544324040413,
0.14272993803024292,
0.06852022558450699,
-0.1394290328025818,
0.012063227593898773,
-0.08205077797174454,
-0.06619229167699814,
-0.07169081270694733,
-0.04427432641386986,
-0.06243225187063217,
0.11053448170423508,
0.17166613042354584,
-0.042894430458545685,
0.030321909114718437,
-0.06277276575565338,
0.030627842992544174,
0.06259915232658386,
0.05290945619344711,
-0.012760760262608528,
-0.230027973651886,
0.04947889596223831,
0.0470426082611084,
-0.004622625652700663,
-0.263639897108078,
-0.09064938127994537,
0.017812533304095268,
-0.06395132094621658,
-0.06448479741811752,
0.08217081427574158,
0.10521327704191208,
0.06223049759864807,
-0.06167982518672943,
-0.07581017911434174,
-0.061470795422792435,
0.1702016443014145,
-0.11150837689638138,
-0.09083874523639679
] |
null | null | null | Lipofix: сироп, Цена, добавка, прегледи, съставки, Ползи, цена, оригинален, аптека!
Lipofix е формула за отслабване, която привлича вниманието заради потенциала си да поддържа загуба на тегло и цялостно благосъстояние. Lipofix
Lipofix Купете сега!! Кликнете върху връзката по-долу за повече информация и получете 50% отстъпка сега !! побързай !!
Прочетете още: https://www.boxdrug.com/LipoBulga
➢Име на продукта — Lipofix
➢Категория – Отслабване
➢Основни предимства — Подкрепа за загуба на тегло
➢ Състав — естествено органично съединение
➢ Странични ефекти—НЕ
➢Крайна оценка: — 4,8
➢ Наличност — Онлайн
➢Оферти и отстъпки; СПЕСТЕТЕ ДНЕС! ПАЗАРУВАЙТЕ СЕГА, ЗА ДА КУПУВАТЕ СПЕЦИАЛНА ОФЕРТА!!!
Какво е Lipofix?
Формулиран е с комбинация от съставки, за които се смята, че подпомагат изгарянето на мазнини, засилват метаболизма и ограничават апетита. Lipofix е проектиран да бъде ценно допълнение към здравословния начин на живот и рутинните упражнения.
Lipofix Купете сега!! Кликнете върху връзката по-долу за повече информация и получете 50% отстъпка сега !! побързай !!
Прочетете още: https://www.boxdrug.com/LipoBulga
Lipofix Lipofix сироп Lipofix добавка Lipofix Цена Lipofix прегледи Lipofix съставки Lipofix Ползи Lipofix Странични ефекти Lipofix сироп цена Lipofix мнения за сироп Lipofix състав Lipofix оплакване Lipofix Къде да купя Lipofix Как да използвам Lipofix цена Lipofix върши работа Lipofix форум Lipofix оригинален Lipofix аптека
https://www.boxdrug.com/LipoBulga
https://sites.google.com/view/lipofixbulgaria/home
https://healthtoned.blogspot.com/2023/11/lipofix.html
https://groups.google.com/g/snshine/c/iIYKpZLurhA
https://sway.office.com/NM6SPTut5BP5JnXy
https://gamma.app/docs/Lipofix-Bulgaria-59m5zja1lbpbo42?mode=doc
https://lipofixbulgaria.godaddysites.com/
https://keuk-xoorr-skaerst.yolasite.com/
https://lipofixbulgaria.company.site/
https://healthytalk24x7.wixsite.com/sunshine/post/lipofix-bulgaria
https://www.q8101.com/bb/22268/lipofix-bulgaria
https://www.dibiz.com/lipofixbulgaria
https://medium.com/@healthytalk24x7/lipofix-bulgaria-3327eebf33ba
https://medium.com/@healthytalk24x7/lipofix-%D1%81%D0%B8%D1%80%D0%BE%D0%BF-%D1%86%D0%B5%D0%BD%D0%B0-%D0%B4%D0%BE%D0%B1%D0%B0%D0%B2%D0%BA%D0%B0-%D0%BF%D1%80%D0%B5%D0%B3%D0%BB%D0%B5%D0%B4%D0%B8-%D1%81%D1%8A%D1%81%D1%82%D0%B0%D0%B2%D0%BA%D0%B8-%D0%BF%D0%BE%D0%BB%D0%B7%D0%B8-%D1%86%D0%B5%D0%BD%D0%B0-%D0%BE%D1%80%D0%B8%D0%B3%D0%B8%D0%BD%D0%B0%D0%BB%D0%B5%D0%BD-%D0%B0%D0%BF%D1%82%D0%B5%D0%BA%D0%B0-c25601da86f0
https://www.weddingwire.com/website/lipofix-bulgaria
https://infogram.com/lipofix-bulgaria-1hnq410vddkmp23?live
https://softisenilspain.hashnode.dev/lipofix-bulgaria
https://soundcloud.com/lipofix-bulgaria/lipofix-bulgaria?si=b427c87ad56448c2805e8b38171f5fd5&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing
https://www.deviantart.com/lipofixbulgaria/art/Lipofix-Bulgaria-993752453
https://lipofix-bulgaria.clubeo.com/calendar/2023/11/10/lipofix-bulgaria?_ga=2.39138212.625530664.1699688124-985146192.1699688097
| {} | null | lipofixbulgaria/LipofixBulgaria | [
"region:us"
] | 2023-11-11T07:58:55+00:00 | [] | [] | TAGS
#region-us
| Lipofix: сироп, Цена, добавка, прегледи, съставки, Ползи, цена, оригинален, аптека!
Lipofix е формула за отслабване, която привлича вниманието заради потенциала си да поддържа загуба на тегло и цялостно благосъстояние. Lipofix
Lipofix Купете сега!! Кликнете върху връзката по-долу за повече информация и получете 50% отстъпка сега !! побързай !!
Прочетете още: URL
Име на продукта — Lipofix
Категория – Отслабване
Основни предимства — Подкрепа за загуба на тегло
Състав — естествено органично съединение
Странични ефекти—НЕ
Крайна оценка: — 4,8
Наличност — Онлайн
Оферти и отстъпки; СПЕСТЕТЕ ДНЕС! ПАЗАРУВАЙТЕ СЕГА, ЗА ДА КУПУВАТЕ СПЕЦИАЛНА ОФЕРТА!!!
Какво е Lipofix?
Формулиран е с комбинация от съставки, за които се смята, че подпомагат изгарянето на мазнини, засилват метаболизма и ограничават апетита. Lipofix е проектиран да бъде ценно допълнение към здравословния начин на живот и рутинните упражнения.
Lipofix Купете сега!! Кликнете върху връзката по-долу за повече информация и получете 50% отстъпка сега !! побързай !!
Прочетете още: URL
Lipofix Lipofix сироп Lipofix добавка Lipofix Цена Lipofix прегледи Lipofix съставки Lipofix Ползи Lipofix Странични ефекти Lipofix сироп цена Lipofix мнения за сироп Lipofix състав Lipofix оплакване Lipofix Къде да купя Lipofix Как да използвам Lipofix цена Lipofix върши работа Lipofix форум Lipofix оригинален Lipofix аптека
URL
URL
URL
URL
URL
URL
URL
URL
URL
URL
URL
URL
URL
URL
URL
URL
URL
URL
URL
URL
| [] | [
"TAGS\n#region-us \n"
] | [
6
] | [
"passage: TAGS\n#region-us \n"
] | [
0.024608636274933815,
-0.026205500587821007,
-0.009666500613093376,
-0.10395516455173492,
0.08638657629489899,
0.059816278517246246,
0.01882290467619896,
0.020661840215325356,
0.23975107073783875,
-0.005599027033895254,
0.1219947561621666,
0.0015615287702530622,
-0.037353623658418655,
0.03733762726187706,
-0.0035912662278860807,
-0.17583473026752472,
0.03876631706953049,
-0.018274923786520958,
0.01843859627842903,
0.026470553129911423,
-0.07776834815740585,
-0.07564429938793182,
0.015296397730708122,
-0.10247814655303955,
-0.083692267537117,
0.11002834886312485,
0.031466204673051834,
-0.019670886918902397,
0.10779199749231339,
-0.04243955761194229,
0.18699054419994354,
-0.011512263678014278,
-0.11213519424200058,
-0.2536850869655609,
0.021806683391332626,
-0.01765260472893715,
-0.08747660368680954,
0.01506110467016697,
0.0665089413523674,
-0.09014441072940826,
-0.0588928684592247,
0.0795099288225174,
-0.01132340170443058,
0.04246443510055542,
-0.27593839168548584,
-0.12684126198291779,
-0.05297930911183357,
-0.1421966552734375,
0.08651168644428253,
0.04035491496324539,
0.008764253929257393,
0.15506891906261444,
-0.20897391438484192,
0.004104613792151213,
0.08255259692668915,
-0.2538507878780365,
0.05591634660959244,
0.17671173810958862,
0.03623908758163452,
0.18037272989749908,
0.0060391901060938835,
0.11029672622680664,
0.0716743916273117,
-0.024263937026262283,
-0.17590197920799255,
-0.08127854019403458,
-0.04696211963891983,
0.16642488539218903,
-0.06727185100317001,
-0.14248386025428772,
0.34701237082481384,
0.00015008423360995948,
0.009657775051891804,
0.16921205818653107,
-0.059524230659008026,
-0.09972117841243744,
0.07259953022003174,
0.016484731808304787,
0.018492350354790688,
0.1471305936574936,
0.16307872533798218,
-0.0458691343665123,
-0.13837823271751404,
-0.018630273640155792,
-0.22798998653888702,
0.17510560154914856,
-0.03248048573732376,
0.13137903809547424,
-0.27447956800460815,
0.01684025302529335,
-0.2570667266845703,
0.0032130838371813297,
0.04178816080093384,
-0.06004921346902847,
-0.0226522795855999,
-0.013265985064208508,
-0.08018817007541656,
0.004899587947875261,
0.06192673370242119,
0.1266920566558838,
-0.06128726154565811,
0.06128238886594772,
-0.09319206327199936,
0.141696035861969,
0.07166698575019836,
0.07868369668722153,
0.13037432730197906,
0.041205424815416336,
-0.07187089323997498,
-0.21872246265411377,
-0.0026476888451725245,
-0.06275863200426102,
-0.09502086788415909,
-0.0020165652967989445,
-0.11606067419052124,
0.17244569957256317,
-0.030802514404058456,
-0.09825427830219269,
-0.11208184063434601,
0.09148659557104111,
-0.032992321997880936,
-0.03437839448451996,
-0.03552987426519394,
-0.020977836102247238,
0.019381176680326462,
0.04704452306032181,
-0.1548958420753479,
-0.005131472367793322,
0.07039852440357208,
0.11502562463283539,
-0.1346137970685959,
-0.003783059772104025,
-0.07908964157104492,
0.03039063885807991,
0.07654735445976257,
-0.16510222852230072,
0.03158547356724739,
-0.1124754324555397,
-0.07531405985355377,
0.002912673633545637,
-0.015710093080997467,
-0.016202643513679504,
0.166526660323143,
-0.0020451415330171585,
0.0714716836810112,
-0.026345307007431984,
-0.05890209600329399,
-0.11243434250354767,
-0.08489254862070084,
0.05390460044145584,
0.03670717030763626,
0.03266148269176483,
-0.2193479984998703,
0.014805203303694725,
-0.12762966752052307,
0.1360815018415451,
-0.10566820204257965,
-0.04705966264009476,
-0.022842247039079666,
0.20562705397605896,
0.037286072969436646,
0.08762791007757187,
-0.22171171009540558,
0.039756543934345245,
-0.05404696613550186,
0.18480908870697021,
-0.1502426266670227,
-0.0799463614821434,
0.20813211798667908,
-0.07964949309825897,
-0.10115210711956024,
0.021235812455415726,
0.020391687750816345,
0.026287272572517395,
0.0766737088561058,
0.4564172327518463,
-0.09766800701618195,
-0.09146861732006073,
0.10178250074386597,
0.17055274546146393,
-0.12427149713039398,
-0.1827561855316162,
0.06446871906518936,
-0.16666454076766968,
-0.1973118633031845,
0.0018917324487119913,
0.09222044050693512,
0.038269978016614914,
-0.07875611633062363,
-0.020746968686580658,
0.06325206160545349,
-0.0007678253459744155,
0.09095914661884308,
0.03755716234445572,
0.09034032374620438,
-0.08716782182455063,
0.11115926504135132,
-0.05017651244997978,
0.004037132486701012,
0.1343354731798172,
0.027325427159667015,
-0.03223329409956932,
0.08694463223218918,
-0.0485352948307991,
0.05295134335756302,
-0.1662379503250122,
-0.15068690478801727,
0.03398871049284935,
0.06283251196146011,
0.03186952322721481,
0.1280253529548645,
0.08141885697841644,
-0.10732853412628174,
0.022690722718834877,
-0.004228927195072174,
0.058398615568876266,
0.03891623765230179,
0.006107209715992212,
0.008764320984482765,
0.0961301177740097,
-0.10607069730758667,
-0.13589619100093842,
-0.07336436957120895,
-0.014715781435370445,
0.14371353387832642,
-0.0302802175283432,
0.07690227776765823,
-0.004240254405885935,
0.00013200697139836848,
0.06930823624134064,
0.08137880265712738,
0.016412746161222458,
0.08971183747053146,
-0.05237193778157234,
-0.05160155147314072,
0.10863113403320312,
-0.13533565402030945,
0.17837053537368774,
0.14053137600421906,
-0.20532016456127167,
0.029453208670020103,
-0.06838275492191315,
0.03670361638069153,
-0.008162540383636951,
0.0975119024515152,
-0.08272241055965424,
-0.02106042578816414,
0.013134466484189034,
0.0052274600602686405,
-0.013007243163883686,
0.017682146281003952,
-0.07295988500118256,
-0.07787393033504486,
-0.10233919322490692,
0.08436838537454605,
0.11562882363796234,
-0.10282530635595322,
0.14214380085468292,
0.4384984076023102,
0.11495281755924225,
0.21582984924316406,
-0.09581480920314789,
-0.0412987545132637,
0.007486371789127588,
0.0001535322517156601,
-0.04476691037416458,
0.08031861484050751,
-0.15973517298698425,
-0.038901735097169876,
0.027348900213837624,
0.07128690183162689,
0.11475157737731934,
-0.14959022402763367,
-0.09639324247837067,
-0.00793045200407505,
0.0022841424215584993,
-0.1249532699584961,
0.023905446752905846,
-0.03974650055170059,
0.04015624523162842,
0.07232289016246796,
-0.021535737439990044,
0.13939237594604492,
-0.04166141897439957,
-0.0639561116695404,
0.07585346698760986,
-0.2017085999250412,
-0.23179671168327332,
-0.12309670448303223,
-0.14680525660514832,
0.04366797208786011,
0.05154111236333847,
0.01726446859538555,
-0.17635835707187653,
-0.015074856579303741,
0.07706750929355621,
0.07820965349674225,
-0.20886357128620148,
-0.022814949974417686,
-0.004290030337870121,
0.0895976573228836,
-0.10227091610431671,
-0.0017130117630586028,
-0.04419664293527603,
-0.10150232166051865,
0.0017003051470965147,
0.07279510796070099,
-0.137485533952713,
0.13807645440101624,
0.21589438617229462,
0.07225540280342102,
0.07359948754310608,
-0.019093448296189308,
0.09936179965734482,
-0.10856141895055771,
-0.16549113392829895,
0.08348225057125092,
-0.06234746053814888,
0.047262318432331085,
0.17534415423870087,
0.03307317942380905,
-0.13904969394207,
-0.015682822093367577,
-0.0402069091796875,
-0.15603256225585938,
-0.238995760679245,
-0.09178274869918823,
-0.1182505264878273,
0.16442428529262543,
0.0009358620154671371,
0.06651917099952698,
0.08258313685655594,
-0.022042419761419296,
0.16447891294956207,
-0.07379321753978729,
-0.07578866183757782,
-0.006978808436542749,
0.12375060468912125,
-0.056660156697034836,
-0.03080669604241848,
-0.10566964000463486,
-0.008295975625514984,
0.1151021271944046,
0.15304014086723328,
0.12214863300323486,
0.2957419455051422,
0.08268889784812927,
0.026645636186003685,
0.08958091586828232,
0.17622539401054382,
0.09495089203119278,
0.07838419824838638,
-0.045413073152303696,
-0.014814783819019794,
0.014317171648144722,
-0.04022889584302902,
0.010141594335436821,
0.14683100581169128,
-0.2679629921913147,
-0.006678564939647913,
-0.2710230350494385,
0.0965198427438736,
-0.10913380235433578,
0.11837165057659149,
-0.01015760749578476,
0.10194015502929688,
0.11082887649536133,
0.03233652561903,
-0.03858073800802231,
0.16613617539405823,
0.08450309932231903,
-0.11277695000171661,
0.001758623169735074,
0.03737903758883476,
0.09715615212917328,
-0.02818971499800682,
0.12721189856529236,
-0.11048974841833115,
-0.1464834064245224,
0.013753619976341724,
0.07152791321277618,
-0.15373679995536804,
0.3138748109340668,
0.012069208547472954,
-0.13481520116329193,
-0.01481647603213787,
-0.09957809001207352,
-0.006440147757530212,
0.1254177987575531,
0.09333524852991104,
0.07935678958892822,
-0.2185502052307129,
-0.13339371979236603,
0.05872276425361633,
-0.00575496768578887,
0.22408108413219452,
-0.034034017473459244,
-0.11356475204229355,
-0.027013886719942093,
0.04241163283586502,
-0.06043251231312752,
0.08524788916110992,
0.023536119610071182,
-0.08113526552915573,
-0.032957352697849274,
0.05323701351881027,
0.012368366122245789,
0.00524376705288887,
0.09360801428556442,
0.020107939839363098,
-0.0009265501867048442,
0.01785753294825554,
0.047885000705718994,
-0.0675911232829094,
-0.1984109878540039,
0.09357594698667526,
-0.05215044692158699,
0.0015536568826064467,
-0.08013670891523361,
-0.15122665464878082,
-0.08837161958217621,
-0.16009655594825745,
0.12540200352668762,
-0.034406669437885284,
0.12700119614601135,
-0.06619787961244583,
0.17341409623622894,
-0.07871770113706589,
0.04481020197272301,
-0.047349292784929276,
0.050332702696323395,
-0.007268077693879604,
-0.07756082713603973,
0.16585899889469147,
-0.15564003586769104,
0.01809087023139,
0.19572502374649048,
-0.018915493041276932,
0.07177707552909851,
0.021322092041373253,
-0.0636206790804863,
0.23147478699684143,
0.3014698624610901,
0.008138049393892288,
0.1665448248386383,
0.3018903136253357,
-0.07466315478086472,
-0.2642788887023926,
-0.05505012720823288,
-0.2841376066207886,
-0.05371501296758652,
0.10716094076633453,
-0.22523896396160126,
0.06986407935619354,
0.14383509755134583,
-0.06471995264291763,
0.30228954553604126,
-0.21825523674488068,
0.012589273042976856,
0.15434536337852478,
-0.08868814259767532,
0.5515313148498535,
-0.1133413165807724,
-0.17677772045135498,
-0.008122089318931103,
-0.08741296827793121,
0.10602109134197235,
-0.0340677872300148,
0.06877441704273224,
0.013465235009789467,
0.04797380417585373,
0.048932258039712906,
-0.03111894056200981,
0.22701001167297363,
0.008710170164704323,
0.09015397727489471,
-0.07378865778446198,
-0.18624304234981537,
0.11639340221881866,
-0.04359482601284981,
-0.08891059458255768,
0.0849778801202774,
-0.05942516401410103,
-0.11078983545303345,
0.04663389176130295,
-0.07950539886951447,
-0.024862350896000862,
0.08423490077257156,
-0.04678233340382576,
-0.042606171220541,
-0.008054176345467567,
-0.1618063747882843,
-0.0002289071271661669,
0.31360217928886414,
-0.07096036523580551,
0.16695955395698547,
0.03677211329340935,
0.00038613268407061696,
-0.11027684062719345,
0.030288029462099075,
-0.05203165486454964,
-0.021576624363660812,
0.09578979015350342,
-0.11096979677677155,
0.03204701095819473,
0.14160704612731934,
-0.04864364117383957,
0.05846960097551346,
0.09256096184253693,
-0.0849417969584465,
0.007583672646433115,
0.17753590643405914,
-0.17537221312522888,
-0.1273445188999176,
-0.006135711446404457,
-0.09862716495990753,
0.14055661857128143,
0.04394126310944557,
0.05191568285226822,
0.16669964790344238,
0.03967129811644554,
-0.029474308714270592,
-0.02817419543862343,
-0.1153380498290062,
-0.0201893113553524,
0.040153320878744125,
0.00045633706031367183,
-0.08791285753250122,
0.2262638509273529,
0.06409153342247009,
-0.1328488290309906,
-0.051157206296920776,
0.2161225974559784,
-0.06805316358804703,
-0.04911920800805092,
-0.223562553524971,
0.10752306133508682,
-0.07112517952919006,
-0.0965060144662857,
0.05453834682703018,
-0.02270081453025341,
0.005106312222778797,
0.181985542178154,
0.03941008821129799,
0.11070270836353302,
0.03738937899470329,
-0.02448922023177147,
0.15798696875572205,
-0.142850860953331,
-0.14191335439682007,
-0.025354057550430298,
-0.08757315576076508,
-0.13844476640224457,
-0.026804137974977493,
0.1617041826248169,
-0.09177309274673462,
-0.14772607386112213,
-0.2621181011199951,
0.10968475043773651,
-0.16432365775108337,
-0.10192688554525375,
-0.03469514101743698,
-0.08968492597341537,
0.0696166530251503,
0.030301768332719803,
-0.03093348816037178,
-0.06706760823726654,
-0.18593791127204895,
0.0816768929362297,
0.06349513679742813,
0.045533183962106705,
-0.017847947776317596,
0.0067379772663116455,
0.1720137596130371,
0.025955144315958023,
0.10040043294429779,
0.16762186586856842,
0.011397695168852806,
0.2246655523777008,
-0.1671202927827835,
-0.11496317386627197,
0.1336962729692459,
-0.026543032377958298,
0.06762003898620605,
0.16792191565036774,
-0.0772583931684494,
0.015526676550507545,
-0.028136352077126503,
0.07066910713911057,
-0.11003983020782471,
-0.105624258518219,
0.007937257178127766,
0.02567129209637642,
-0.2755882740020752,
-0.005599735304713249,
-0.19717298448085785,
0.14788752794265747,
0.02579621411859989,
0.03297143429517746,
0.10257530212402344,
0.10404334217309952,
0.08312062919139862,
-0.0017710148822516203,
0.03226327523589134,
-0.1176818460226059,
0.02753005363047123,
-0.059239376336336136,
-0.020663779228925705,
0.017624232918024063,
0.36952024698257446,
-0.03603357449173927,
-0.046802736818790436,
0.003710439894348383,
0.1307835876941681,
-0.02139742486178875,
0.017395347356796265,
0.13209912180900574,
0.12607666850090027,
-0.08595693111419678,
-0.1504845917224884,
0.04888554662466049,
-0.04565655067563057,
-0.02836887165904045,
0.1464131623506546,
0.05905961990356445,
0.1050296202301979,
0.0908031314611435,
-0.014463032595813274,
-0.00318976235575974,
0.012856799177825451,
-0.15486004948616028,
0.06223496049642563,
-0.010558074340224266,
0.012565906159579754,
0.017934376373887062,
0.15238402783870697,
-0.005540105979889631,
0.07739730179309845,
-0.09889880567789078,
0.004208535887300968,
-0.13498884439468384,
-0.07913459837436676,
0.03617347031831741,
-0.13393273949623108,
0.04141177982091904,
-0.01871878281235695,
0.029611799865961075,
0.30386561155319214,
0.02558239921927452,
-0.020639164373278618,
0.12512871623039246,
-0.1214587539434433,
-0.12050267308950424,
-0.001594188273884356,
-0.029960084706544876,
0.0791488066315651,
-0.02633434161543846,
-0.0997740775346756,
-0.1001306027173996,
-0.15166029334068298,
-0.09759195148944855,
0.05182836204767227,
-0.04993441700935364,
-0.059362251311540604,
-0.17634081840515137,
-0.05707859992980957,
-0.05147340148687363,
0.14025864005088806,
-0.12263951450586319,
0.15159130096435547,
-0.014490418136119843,
0.004084470681846142,
0.04405883327126503,
0.1950942426919937,
-0.03644494712352753,
0.08714226633310318,
0.0154351145029068,
0.1522706001996994,
-0.05119588226079941,
0.14720745384693146,
-0.10931728035211563,
-0.04014137014746666,
-0.06710435450077057,
0.21513493359088898,
0.25630924105644226,
-0.06136954948306084,
-0.008937356993556023,
-0.012760217301547527,
0.058654606342315674,
0.1073930487036705,
0.16049085557460785,
0.002326392102986574,
0.2802925705909729,
-0.03133585304021835,
0.04815128445625305,
0.02901598811149597,
0.013607407920062542,
-0.06336209923028946,
0.03397751972079277,
0.07539387792348862,
-0.035039983689785004,
-0.1412304788827896,
0.15837742388248444,
-0.21980468928813934,
0.18157227337360382,
0.11640069633722305,
-0.19996967911720276,
-0.013728445395827293,
-0.04882071167230606,
0.1689416468143463,
-0.0856364443898201,
0.1637246012687683,
-0.0903693437576294,
-0.2108195722103119,
-0.2056000679731369,
0.03867346793413162,
-0.34623071551322937,
-0.254462867975235,
0.10422009229660034,
0.1488201916217804,
0.04015883058309555,
-0.018507536500692368,
-0.019967829808592796,
-0.018367022275924683,
0.04877542704343796,
-0.0067357709631323814,
0.06014643982052803,
0.031397558748722076,
-0.02988368645310402,
-0.24127542972564697,
-0.029804671183228493,
0.023964406922459602,
-0.07093082368373871,
0.07464958727359772,
-0.06874357163906097,
-0.022495782002806664,
0.08059766888618469,
-0.03066304884850979,
0.03298592567443848,
-0.035373736172914505,
-0.16326889395713806,
0.027529051527380943,
0.03900543600320816,
0.036012712866067886,
0.00634160777553916,
0.0008072225609794259,
-0.03455270454287529,
0.0644603744149208,
-0.16716794669628143,
-0.16015739738941193,
0.14140215516090393,
-0.06745140254497528,
0.2779497504234314,
-0.05812826007604599,
-0.0809100940823555,
0.04766704887151718,
-0.03426874056458473,
0.1807648241519928,
-0.07756473124027252,
0.047254521399736404,
0.12766779959201813,
0.011127962730824947,
0.03121316432952881,
-0.3092964291572571,
0.11082969605922699,
-0.000795336440205574,
-0.006093299947679043,
-0.07581598311662674
] |
null | null | transformers |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
should probably proofread and complete it, then remove this comment. -->
# output
This model is a fine-tuned version of [bert-base-uncased](https://huggingface.co/bert-base-uncased) on an unknown dataset.
It achieves the following results on the evaluation set:
- Loss: 0.1413
- Accuracy: 0.9588
- Precision: 0.9659
- Recall: 0.9866
- F1: 0.9761
## Model description
More information needed
## Intended uses & limitations
More information needed
## Training and evaluation data
More information needed
## Training procedure
### Training hyperparameters
The following hyperparameters were used during training:
- learning_rate: 5e-05
- train_batch_size: 8
- eval_batch_size: 8
- seed: 42
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
- lr_scheduler_type: linear
- num_epochs: 1
### Training results
### Framework versions
- Transformers 4.35.0
- Pytorch 2.1.0+cu118
- Tokenizers 0.14.1
| {"license": "apache-2.0", "tags": ["generated_from_trainer"], "metrics": ["accuracy", "precision", "recall", "f1"], "base_model": "bert-base-uncased", "model-index": [{"name": "output", "results": []}]} | text-classification | har55/output | [
"transformers",
"tensorboard",
"safetensors",
"bert",
"text-classification",
"generated_from_trainer",
"base_model:bert-base-uncased",
"license:apache-2.0",
"autotrain_compatible",
"endpoints_compatible",
"region:us"
] | 2023-11-11T07:59:52+00:00 | [] | [] | TAGS
#transformers #tensorboard #safetensors #bert #text-classification #generated_from_trainer #base_model-bert-base-uncased #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us
|
# output
This model is a fine-tuned version of bert-base-uncased on an unknown dataset.
It achieves the following results on the evaluation set:
- Loss: 0.1413
- Accuracy: 0.9588
- Precision: 0.9659
- Recall: 0.9866
- F1: 0.9761
## Model description
More information needed
## Intended uses & limitations
More information needed
## Training and evaluation data
More information needed
## Training procedure
### Training hyperparameters
The following hyperparameters were used during training:
- learning_rate: 5e-05
- train_batch_size: 8
- eval_batch_size: 8
- seed: 42
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
- lr_scheduler_type: linear
- num_epochs: 1
### Training results
### Framework versions
- Transformers 4.35.0
- Pytorch 2.1.0+cu118
- Tokenizers 0.14.1
| [
"# output\n\nThis model is a fine-tuned version of bert-base-uncased on an unknown dataset.\nIt achieves the following results on the evaluation set:\n- Loss: 0.1413\n- Accuracy: 0.9588\n- Precision: 0.9659\n- Recall: 0.9866\n- F1: 0.9761",
"## Model description\n\nMore information needed",
"## Intended uses & limitations\n\nMore information needed",
"## Training and evaluation data\n\nMore information needed",
"## Training procedure",
"### Training hyperparameters\n\nThe following hyperparameters were used during training:\n- learning_rate: 5e-05\n- train_batch_size: 8\n- eval_batch_size: 8\n- seed: 42\n- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n- lr_scheduler_type: linear\n- num_epochs: 1",
"### Training results",
"### Framework versions\n\n- Transformers 4.35.0\n- Pytorch 2.1.0+cu118\n- Tokenizers 0.14.1"
] | [
"TAGS\n#transformers #tensorboard #safetensors #bert #text-classification #generated_from_trainer #base_model-bert-base-uncased #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us \n",
"# output\n\nThis model is a fine-tuned version of bert-base-uncased on an unknown dataset.\nIt achieves the following results on the evaluation set:\n- Loss: 0.1413\n- Accuracy: 0.9588\n- Precision: 0.9659\n- Recall: 0.9866\n- F1: 0.9761",
"## Model description\n\nMore information needed",
"## Intended uses & limitations\n\nMore information needed",
"## Training and evaluation data\n\nMore information needed",
"## Training procedure",
"### Training hyperparameters\n\nThe following hyperparameters were used during training:\n- learning_rate: 5e-05\n- train_batch_size: 8\n- eval_batch_size: 8\n- seed: 42\n- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n- lr_scheduler_type: linear\n- num_epochs: 1",
"### Training results",
"### Framework versions\n\n- Transformers 4.35.0\n- Pytorch 2.1.0+cu118\n- Tokenizers 0.14.1"
] | [
68,
75,
6,
12,
8,
3,
90,
4,
27
] | [
"passage: TAGS\n#transformers #tensorboard #safetensors #bert #text-classification #generated_from_trainer #base_model-bert-base-uncased #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us \n# output\n\nThis model is a fine-tuned version of bert-base-uncased on an unknown dataset.\nIt achieves the following results on the evaluation set:\n- Loss: 0.1413\n- Accuracy: 0.9588\n- Precision: 0.9659\n- Recall: 0.9866\n- F1: 0.9761## Model description\n\nMore information needed## Intended uses & limitations\n\nMore information needed## Training and evaluation data\n\nMore information needed## Training procedure### Training hyperparameters\n\nThe following hyperparameters were used during training:\n- learning_rate: 5e-05\n- train_batch_size: 8\n- eval_batch_size: 8\n- seed: 42\n- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n- lr_scheduler_type: linear\n- num_epochs: 1### Training results### Framework versions\n\n- Transformers 4.35.0\n- Pytorch 2.1.0+cu118\n- Tokenizers 0.14.1"
] | [
-0.11757579445838928,
0.15140964090824127,
-0.0034108138643205166,
0.08306826651096344,
0.13620246946811676,
0.008277355693280697,
0.06298301368951797,
0.1583147495985031,
-0.09941955655813217,
0.12918229401111603,
0.09388944506645203,
0.06068262830376625,
0.06405829638242722,
0.16844817996025085,
-0.045047860592603683,
-0.22044874727725983,
0.04250169172883034,
0.005479630082845688,
-0.04694972187280655,
0.08166571706533432,
0.11292652040719986,
-0.09849477559328079,
0.07695010304450989,
0.0348777174949646,
-0.1561489701271057,
0.0123077891767025,
-0.0023905839771032333,
-0.07523788511753082,
0.06817649304866791,
0.02612394466996193,
0.051775965839624405,
-0.0008103625732474029,
0.06756412237882614,
-0.17977973818778992,
-0.010207879357039928,
0.07009661942720413,
0.029289057478308678,
0.0983123853802681,
0.08050336688756943,
0.04985201358795166,
0.051630061119794846,
-0.129006028175354,
0.06674260646104813,
0.04741670936346054,
-0.08122752606868744,
-0.21601934731006622,
-0.097516268491745,
0.10967554152011871,
0.07974443584680557,
0.07915941625833511,
0.006782122887670994,
0.16962966322898865,
-0.009695587679743767,
0.06919269263744354,
0.19669918715953827,
-0.2917741537094116,
-0.06154169142246246,
0.029561582952737808,
0.05156565457582474,
0.04440095275640488,
-0.10943206399679184,
-0.00675981817767024,
0.0642286166548729,
0.028486687690019608,
0.09151875972747803,
-0.009140579029917717,
-0.012727268971502781,
-0.04926342889666557,
-0.11667784303426743,
-0.07244346290826797,
0.216186985373497,
0.07543241232633591,
-0.08174611628055573,
-0.1114836186170578,
-0.06567040830850601,
-0.08603528887033463,
-0.03763220086693764,
-0.056209027767181396,
0.030485397204756737,
-0.03690856322646141,
-0.0252581387758255,
-0.03574977070093155,
-0.07077571004629135,
-0.05014873296022415,
0.020245684310793877,
0.146981343626976,
0.05217868834733963,
0.0343877337872982,
-0.015946008265018463,
0.08199521154165268,
-0.058653250336647034,
-0.15181712806224823,
-0.04930391162633896,
0.0003271512978244573,
-0.01910637505352497,
-0.05092332139611244,
-0.03518097475171089,
-0.004058862570673227,
0.031300533562898636,
0.15190939605236053,
-0.08412983268499374,
0.0751214250922203,
0.006242031697183847,
0.0032118719536811113,
-0.04162762686610222,
0.1611230969429016,
-0.042926859110593796,
-0.008507054299116135,
0.03136756643652916,
0.12340075522661209,
0.029092712327837944,
-0.007920627482235432,
-0.07306143641471863,
-0.013792517594993114,
0.1490357667207718,
0.05343705415725708,
-0.01936594396829605,
0.0357462540268898,
-0.049786463379859924,
-0.03351965174078941,
0.054002851247787476,
-0.13859803974628448,
0.03312564641237259,
-0.010731841437518597,
-0.09002210944890976,
-0.0316774845123291,
0.04004142805933952,
-0.025535298511385918,
-0.05718468502163887,
0.029005754739046097,
-0.09494520723819733,
-0.027049154043197632,
-0.06058143079280853,
-0.041293706744909286,
0.013773367740213871,
-0.029801160097122192,
-0.0015259310603141785,
-0.0799105316400528,
-0.16469816863536835,
-0.03029000572860241,
0.015642410144209862,
-0.060437534004449844,
-0.08322007954120636,
0.00023506471188738942,
-0.08603284507989883,
0.022694816812872887,
-0.0074196672067046165,
0.09004765003919601,
-0.02710064873099327,
0.07241378724575043,
0.07075925916433334,
0.02969462051987648,
0.0229704137891531,
0.04458620771765709,
-0.09292151033878326,
0.050019849091768265,
-0.14170129597187042,
0.06908242404460907,
-0.09552199393510818,
0.023594480007886887,
-0.12155040353536606,
-0.08380195498466492,
-0.004999155178666115,
-0.02634403109550476,
0.07624511420726776,
0.13381290435791016,
-0.10130873322486877,
-0.029153190553188324,
0.14644789695739746,
-0.09227282553911209,
-0.11525344848632812,
0.07936879992485046,
-0.0022581396624445915,
0.024235840886831284,
0.04723762720823288,
0.14133122563362122,
0.10481280833482742,
-0.09072785079479218,
-0.04815834015607834,
0.021836809813976288,
0.06463032960891724,
0.017998019233345985,
0.07042904198169708,
-0.04646224528551102,
-0.004492234904319048,
0.04387713223695755,
-0.07088351994752884,
-0.04506947472691536,
-0.07646502554416656,
-0.07593150436878204,
-0.08905456215143204,
-0.05983639508485794,
0.03177759796380997,
0.02131880633533001,
0.04539969936013222,
-0.06679817289113998,
-0.11367810517549515,
0.08049622178077698,
0.13377662003040314,
-0.03738321736454964,
0.01354104746133089,
-0.0727725625038147,
0.09495626389980316,
-0.06014986336231232,
-0.007582427002489567,
-0.21238476037979126,
-0.09348001331090927,
0.07810626924037933,
-0.13206028938293457,
0.0019481100607663393,
-0.02794899046421051,
0.0545094758272171,
0.06546176970005035,
-0.02633705362677574,
-0.03999532759189606,
-0.08182597160339355,
-0.015087892301380634,
-0.10594863444566727,
-0.14800485968589783,
-0.0548330619931221,
-0.0207957960665226,
0.1105479821562767,
-0.20599296689033508,
0.01576957479119301,
0.038686130195856094,
0.15209171175956726,
0.01542668417096138,
-0.05907073989510536,
0.011472840793430805,
0.008491464890539646,
-0.00623669009655714,
-0.10746388882398605,
0.032389067113399506,
0.016298606991767883,
-0.08436201512813568,
-0.05671676993370056,
-0.16632509231567383,
0.10182318836450577,
0.0842258632183075,
0.08156900852918625,
-0.07393265515565872,
-0.0018733048345893621,
-0.05472368374466896,
-0.050249457359313965,
-0.054002683609724045,
-0.02620927430689335,
0.15268346667289734,
0.0017520649125799537,
0.13682648539543152,
-0.082059845328331,
-0.05068068206310272,
0.037264224141836166,
-0.013312124647200108,
-0.03554060682654381,
0.05821799114346504,
-0.008122775703668594,
-0.1283426135778427,
0.11034038662910461,
0.1061406210064888,
-0.03372550755739212,
0.1135425940155983,
-0.07737743854522705,
-0.0878026932477951,
-0.03232510760426521,
0.05120439454913139,
0.018060967326164246,
0.112226203083992,
-0.08617065101861954,
0.015481088310480118,
0.05065440386533737,
0.014144235290586948,
0.023658841848373413,
-0.14486458897590637,
0.03634859621524811,
0.02138492465019226,
-0.04900585487484932,
0.05725330486893654,
-0.0039314101450145245,
0.013569270260632038,
0.08807679265737534,
0.033826012164354324,
-0.011152400635182858,
0.04805589094758034,
-0.008467601612210274,
-0.06706639379262924,
0.19038160145282745,
-0.10712654888629913,
-0.16694292426109314,
-0.16565869748592377,
0.07518564909696579,
-0.10077372938394547,
-0.018346181139349937,
0.02266089618206024,
-0.03389909118413925,
-0.07131165266036987,
-0.08388493955135345,
-0.04593902826309204,
-0.043305959552526474,
-0.0009305389248766005,
0.08727037161588669,
-0.01101582869887352,
0.15812034904956818,
-0.12541911005973816,
-0.008356506936252117,
0.00002199121445300989,
-0.08940763771533966,
-0.02185026742517948,
0.05213593319058418,
0.09540858119726181,
0.06941015273332596,
-0.020312009379267693,
0.019730081781744957,
-0.01772959716618061,
0.23886974155902863,
-0.059046994894742966,
-0.01512587908655405,
0.14643912017345428,
0.01724046841263771,
0.09350666403770447,
0.11502084136009216,
0.03061795048415661,
-0.0838761255145073,
0.008297087624669075,
0.0434827096760273,
0.005737627856433392,
-0.21115918457508087,
-0.029841583222150803,
-0.02427750453352928,
-0.04094919189810753,
0.11542192101478577,
0.0723205953836441,
0.051954235881567,
0.0642719492316246,
-0.04730074852705002,
0.06696659326553345,
-0.03760898858308792,
0.11062135547399521,
0.13991235196590424,
0.056508101522922516,
0.09901310503482819,
-0.026508131995797157,
-0.004601513035595417,
0.07099086791276932,
-0.006934122182428837,
0.23166988790035248,
-0.006192754954099655,
0.1436072587966919,
0.023435352370142937,
0.16317884624004364,
-0.02002994902431965,
0.04008334130048752,
0.009293228387832642,
0.006447372492402792,
0.009605876170098782,
-0.08133159577846527,
-0.03681119903922081,
0.014054380357265472,
-0.05100458115339279,
0.10339266061782837,
-0.11891176551580429,
0.03420179337263107,
0.02046358399093151,
0.24406102299690247,
0.03349529951810837,
-0.30985432863235474,
-0.09601491689682007,
0.0104902982711792,
-0.03284621983766556,
-0.11265704780817032,
-0.004994270857423544,
0.08662725985050201,
-0.14395876228809357,
0.06606076657772064,
-0.06335954368114471,
0.08528093993663788,
-0.012841880321502686,
0.012049791403114796,
0.0352776013314724,
0.12427477538585663,
0.004034173674881458,
0.09220738708972931,
-0.20753201842308044,
0.19668565690517426,
0.0357840321958065,
0.09769110381603241,
-0.048908572643995285,
0.06691290438175201,
0.030353929847478867,
0.08510944247245789,
0.12154275923967361,
-0.009318361058831215,
-0.058710481971502304,
-0.1763690561056137,
-0.11014043539762497,
0.020678406581282616,
0.10501395910978317,
-0.052746083587408066,
0.07843787223100662,
-0.05010705813765526,
0.013441761024296284,
0.025387179106473923,
-0.03839349374175072,
-0.15485109388828278,
-0.10147693753242493,
0.042403291910886765,
0.02508918009698391,
-0.012845711782574654,
-0.10444236546754837,
-0.09673706442117691,
-0.01825753226876259,
0.16940973699092865,
-0.016294460743665695,
-0.07014348357915878,
-0.15273092687129974,
0.06801313906908035,
0.12378054857254028,
-0.08693757653236389,
0.05205825716257095,
-0.03418346866965294,
0.15186752378940582,
0.04579009488224983,
-0.08705922216176987,
0.0591018870472908,
-0.06005529686808586,
-0.1883760541677475,
-0.027817662805318832,
0.14303061366081238,
-0.00945202261209488,
0.023858975619077682,
0.010064011439681053,
0.027231577783823013,
0.004490244202315807,
-0.09075187146663666,
-0.0010380428284406662,
0.05175422132015228,
0.0836714431643486,
0.03531285375356674,
-0.0548362210392952,
-0.015632273629307747,
-0.04101945087313652,
0.008873488754034042,
0.08400263637304306,
0.2364799976348877,
-0.08317150175571442,
0.03043833002448082,
0.0679994747042656,
-0.06359482556581497,
-0.18120703101158142,
0.015587974339723587,
0.12429007887840271,
0.011837072670459747,
0.05410446599125862,
-0.13944388926029205,
0.10954684019088745,
0.10496240854263306,
-0.05454252287745476,
0.06965426355600357,
-0.256568968296051,
-0.12283626198768616,
0.09499210864305496,
0.11437460780143738,
0.04322784021496773,
-0.17109429836273193,
-0.0850401222705841,
-0.014472522772848606,
-0.09595879912376404,
0.06475549936294556,
-0.0449422150850296,
0.10550837218761444,
-0.03278091922402382,
0.05513361468911171,
0.035733677446842194,
-0.02965061366558075,
0.16953249275684357,
0.009505977854132652,
0.07246454060077667,
-0.060955848544836044,
0.03318537771701813,
0.08565851300954819,
-0.09094429016113281,
0.0920187309384346,
-0.046203989535570145,
0.08968997746706009,
-0.1638757735490799,
0.00111407320946455,
-0.06295765936374664,
0.09794871509075165,
-0.06395549327135086,
-0.03250184655189514,
-0.0391337051987648,
0.026759248226881027,
0.025459257885813713,
-0.023021720349788666,
0.09837474673986435,
0.052538130432367325,
0.09420737624168396,
0.20962855219841003,
0.060201093554496765,
-0.0002991827204823494,
-0.14897887408733368,
-0.0016349763609468937,
-0.026755621656775475,
0.07806314527988434,
-0.12563839554786682,
0.032499559223651886,
0.09525741636753082,
0.030830616131424904,
0.10994364321231842,
0.019598864018917084,
-0.08335021138191223,
-0.014723205007612705,
0.0419488400220871,
-0.12062221020460129,
-0.15075494349002838,
-0.04572561755776405,
0.02327742986381054,
-0.16605430841445923,
0.04148684814572334,
0.09193116426467896,
-0.062375396490097046,
-0.009818529710173607,
-0.015983417630195618,
0.0024666152894496918,
0.005523002706468105,
0.1788659393787384,
0.05388101190328598,
0.07800235599279404,
-0.07285410910844803,
0.14147575199604034,
0.07732570171356201,
-0.045884422957897186,
0.05305025726556778,
0.031843967735767365,
-0.09522576630115509,
-0.01659855805337429,
0.06560958921909332,
0.12798939645290375,
-0.0020937444642186165,
-0.06042958423495293,
-0.08185724914073944,
-0.08144552260637283,
0.0386635921895504,
0.09077733755111694,
0.0716235339641571,
0.001981560606509447,
-0.009927939623594284,
0.011842085048556328,
-0.12273765355348587,
0.114683598279953,
0.04942302405834198,
0.07608993351459503,
-0.17623542249202728,
0.06440853327512741,
0.012044512666761875,
0.04387618228793144,
-0.012165993452072144,
0.004757087677717209,
-0.09349925071001053,
-0.057485274970531464,
-0.09505137801170349,
0.02859722450375557,
-0.018575746566057205,
-0.007748013362288475,
-0.016597678884863853,
-0.04605206847190857,
-0.039124853909015656,
0.075424924492836,
-0.05971669778227806,
-0.08970925956964493,
0.023705702275037766,
0.06388988345861435,
-0.13042545318603516,
-0.006874655839055777,
0.02161278761923313,
-0.09895366430282593,
0.07979463040828705,
0.06048697978258133,
0.049731772392988205,
0.020807772874832153,
-0.0340176597237587,
0.010202692821621895,
0.03269484266638756,
0.018781181424856186,
0.04472484812140465,
-0.09555338323116302,
0.001457330654375255,
-0.02116948738694191,
0.024433601647615433,
-0.007882961072027683,
0.060011427849531174,
-0.1541035920381546,
-0.05718974396586418,
-0.052575208246707916,
-0.01879323087632656,
-0.053250499069690704,
0.04089204967021942,
0.10699941962957382,
0.009198823012411594,
0.1617797464132309,
-0.07153709977865219,
0.004676404874771833,
-0.22027403116226196,
-0.011115039698779583,
-0.021275777369737625,
-0.06312619149684906,
-0.09411351382732391,
-0.013927553780376911,
0.06188302859663963,
-0.05404689908027649,
0.08385872840881348,
-0.03316871076822281,
0.09981625527143478,
0.04431238770484924,
-0.02456381916999817,
0.0010563479736447334,
-0.0023026210255920887,
0.19471074640750885,
0.07221196591854095,
-0.0033058375120162964,
0.10031931847333908,
-0.016756799072027206,
0.061706941574811935,
-0.0007227619062177837,
0.10733938217163086,
0.13614629209041595,
-0.09665586799383163,
0.0846661925315857,
0.06900421530008316,
-0.06994903832674026,
-0.1588691920042038,
0.06648679077625275,
-0.01890554651618004,
0.11707757413387299,
-0.030345559120178223,
0.10355830192565918,
0.12795913219451904,
-0.15847019851207733,
0.045211415737867355,
-0.04651707410812378,
-0.08793895691633224,
-0.11068413406610489,
-0.08707132190465927,
-0.0912642553448677,
-0.12561911344528198,
0.008082813583314419,
-0.12223564833402634,
0.03613317385315895,
0.08650120347738266,
-0.018200041726231575,
-0.02077638730406761,
0.18896585702896118,
-0.05964520573616028,
-0.007444967981427908,
0.07378853112459183,
0.003174368990585208,
-0.021174591034650803,
-0.024974146857857704,
-0.06396182626485825,
0.042505886405706406,
0.03322695940732956,
0.08724408596754074,
-0.030346162617206573,
0.023661145940423012,
0.03711361065506935,
-0.020931875333189964,
-0.0866142213344574,
0.0259691271930933,
0.010527627542614937,
0.007854427210986614,
0.024284442886710167,
0.027036501094698906,
0.0009687260608188808,
-0.04767385125160217,
0.2611953318119049,
-0.07279376685619354,
-0.03204368054866791,
-0.11272024363279343,
0.18424049019813538,
0.05295276641845703,
-0.01952843926846981,
0.06048743426799774,
-0.12085168063640594,
0.0020153122022747993,
0.14260637760162354,
0.062076374888420105,
-0.012622576206922531,
-0.021751055493950844,
-0.01224757544696331,
-0.02638992853462696,
-0.0485672727227211,
0.10454398393630981,
0.07853832840919495,
-0.013732731342315674,
-0.028179828077554703,
0.022854676470160484,
0.0013706246390938759,
-0.02389737032353878,
-0.11769624054431915,
0.07979466021060944,
0.01010850165039301,
0.008493875153362751,
-0.03866162896156311,
0.04046733304858208,
0.039632610976696014,
-0.15083256363868713,
0.020761162042617798,
-0.14022928476333618,
-0.17192818224430084,
-0.01956125721335411,
0.05941145122051239,
-0.005005698185414076,
0.0516660176217556,
0.0019182985415682197,
0.011056823655962944,
0.12792815268039703,
-0.014458217658102512,
-0.06351014226675034,
-0.1103564128279686,
0.0572354681789875,
-0.090016208589077,
0.25121068954467773,
0.025582578033208847,
0.059308700263500214,
0.10224910825490952,
-0.005634238012135029,
-0.16396483778953552,
0.03623007610440254,
0.0602826364338398,
-0.05935980752110481,
0.04056750237941742,
0.15351127088069916,
-0.01721935160458088,
0.05615313723683357,
0.028310352936387062,
-0.1220230758190155,
-0.0656241700053215,
-0.03241113945841789,
-0.0010146573185920715,
-0.07947645336389542,
-0.00819764006882906,
-0.06588361412286758,
0.14850841462612152,
0.19289296865463257,
-0.05556529015302658,
-0.03211458399891853,
-0.06915390491485596,
0.050909917801618576,
0.0635342076420784,
0.07618585228919983,
0.000959089957177639,
-0.2034502774477005,
0.04218178987503052,
-0.005306994542479515,
0.015257449820637703,
-0.2324042022228241,
-0.0983201265335083,
0.04110611602663994,
-0.04820697754621506,
-0.06436479091644287,
0.0979161486029625,
0.037567175924777985,
0.01450553722679615,
-0.040701813995838165,
-0.0798284113407135,
-0.07425431907176971,
0.1490020751953125,
-0.14015528559684753,
-0.05744735524058342
] |
null | null | stable-baselines3 |
# **PPO** Agent playing **LunarLander-v2**
This is a trained model of a **PPO** agent playing **LunarLander-v2**
using the [stable-baselines3 library](https://github.com/DLR-RM/stable-baselines3).
## Usage (with Stable-baselines3)
TODO: Add your code
```python
from stable_baselines3 import ...
from huggingface_sb3 import load_from_hub
...
```
| {"library_name": "stable-baselines3", "tags": ["LunarLander-v2", "deep-reinforcement-learning", "reinforcement-learning", "stable-baselines3"], "model-index": [{"name": "PPO", "results": [{"task": {"type": "reinforcement-learning", "name": "reinforcement-learning"}, "dataset": {"name": "LunarLander-v2", "type": "LunarLander-v2"}, "metrics": [{"type": "mean_reward", "value": "263.78 +/- 23.64", "name": "mean_reward", "verified": false}]}]}]} | reinforcement-learning | czkkkkkk/ppo-LunarLander-v2 | [
"stable-baselines3",
"LunarLander-v2",
"deep-reinforcement-learning",
"reinforcement-learning",
"model-index",
"region:us"
] | 2023-11-11T08:10:25+00:00 | [] | [] | TAGS
#stable-baselines3 #LunarLander-v2 #deep-reinforcement-learning #reinforcement-learning #model-index #region-us
|
# PPO Agent playing LunarLander-v2
This is a trained model of a PPO agent playing LunarLander-v2
using the stable-baselines3 library.
## Usage (with Stable-baselines3)
TODO: Add your code
| [
"# PPO Agent playing LunarLander-v2\nThis is a trained model of a PPO agent playing LunarLander-v2\nusing the stable-baselines3 library.",
"## Usage (with Stable-baselines3)\nTODO: Add your code"
] | [
"TAGS\n#stable-baselines3 #LunarLander-v2 #deep-reinforcement-learning #reinforcement-learning #model-index #region-us \n",
"# PPO Agent playing LunarLander-v2\nThis is a trained model of a PPO agent playing LunarLander-v2\nusing the stable-baselines3 library.",
"## Usage (with Stable-baselines3)\nTODO: Add your code"
] | [
39,
41,
17
] | [
"passage: TAGS\n#stable-baselines3 #LunarLander-v2 #deep-reinforcement-learning #reinforcement-learning #model-index #region-us \n# PPO Agent playing LunarLander-v2\nThis is a trained model of a PPO agent playing LunarLander-v2\nusing the stable-baselines3 library.## Usage (with Stable-baselines3)\nTODO: Add your code"
] | [
0.03942384943366051,
0.04900386184453964,
-0.005304091144353151,
0.026427261531352997,
0.107408307492733,
-0.026511888951063156,
0.11188238859176636,
0.0814051404595375,
0.10722193866968155,
0.04762078449130058,
0.08338645845651627,
0.06030960753560066,
0.05080918222665787,
0.2571701407432556,
0.04754156619310379,
-0.22987541556358337,
0.036159250885248184,
-0.04869936779141426,
0.12395193427801132,
0.07178173214197159,
-0.0038484656251966953,
-0.06485428661108017,
0.020415637642145157,
-0.013290755450725555,
0.05367108806967735,
0.04282612353563309,
-0.01716216839849949,
-0.08207534998655319,
0.07169748842716217,
-0.06345846503973007,
0.06986866891384125,
0.07677983492612839,
0.13218913972377777,
-0.17832116782665253,
0.029566360637545586,
0.02571309357881546,
-0.07189024239778519,
0.01342033501714468,
0.008019951172173023,
0.05120139941573143,
0.17303818464279175,
0.019879888743162155,
0.07844575494527817,
-0.0025605305563658476,
-0.15412317216396332,
-0.018950799480080605,
0.0436202734708786,
0.12546207010746002,
0.08808347582817078,
0.04605821147561073,
0.01970590092241764,
0.17503218352794647,
-0.054352790117263794,
-0.028833400458097458,
0.21759237349033356,
-0.2881564497947693,
-0.031460098922252655,
0.321048766374588,
0.06997483223676682,
0.09725230932235718,
-0.07540661096572876,
-0.03619609400629997,
0.007783263456076384,
-0.013137873262166977,
-0.028666524216532707,
-0.07447073608636856,
0.17313385009765625,
0.05152064561843872,
-0.05057951435446739,
-0.09541505575180054,
0.16948209702968597,
0.006921638268977404,
0.0018855923553928733,
-0.019282981753349304,
0.009060598909854889,
0.07402525842189789,
-0.016097044572234154,
-0.07255112379789352,
0.057438433170318604,
0.05330665782094002,
0.019649166613817215,
-0.1435653269290924,
-0.10762494057416916,
-0.022740179672837257,
-0.008012006990611553,
0.17786912620067596,
-0.009255532175302505,
0.042902372777462006,
0.003065188182517886,
0.10384012013673782,
-0.12480384111404419,
-0.03354184702038765,
-0.0454259067773819,
-0.07565800100564957,
-0.0223417766392231,
-0.02058211714029312,
-0.03580251708626747,
0.07184842973947525,
0.11971849203109741,
0.027368178591132164,
0.09350208193063736,
0.047715865075588226,
-0.03206788748502731,
0.06343851238489151,
0.05555703118443489,
0.14222665131092072,
0.05807621404528618,
0.012854371219873428,
0.13179877400398254,
0.055213116109371185,
0.033023182302713394,
-0.0613492950797081,
-0.18252409994602203,
0.07489913702011108,
-0.07031869143247604,
0.007941240444779396,
0.12051256000995636,
-0.04480670019984245,
-0.1183447614312172,
-0.037500523030757904,
-0.017392054200172424,
-0.06224250793457031,
-0.025395862758159637,
0.0547584593296051,
-0.02883218228816986,
-0.03973718360066414,
0.0011496668448671699,
0.09384800493717194,
0.00953749567270279,
-0.1752052903175354,
0.03303423151373863,
-0.025042934343218803,
-0.10782608389854431,
0.009975161403417587,
0.0022444494534283876,
0.03394931182265282,
0.04408763721585274,
-0.11822668462991714,
-0.30899152159690857,
-0.07652641832828522,
0.05490870401263237,
-0.06516939401626587,
-0.18425025045871735,
-0.13193942606449127,
0.02454492449760437,
-0.09037084132432938,
-0.044885024428367615,
-0.12759265303611755,
-0.028549788519740105,
0.01743689924478531,
0.011519349180161953,
0.10758619755506516,
-0.0106219332665205,
-0.012188062071800232,
-0.1571401208639145,
0.008273907005786896,
-0.20951123535633087,
0.0890483483672142,
-0.019150104373693466,
0.037884220480918884,
-0.032381169497966766,
-0.07404014468193054,
0.030707746744155884,
0.052499737590551376,
-0.01474119070917368,
0.13510210812091827,
-0.15592676401138306,
-0.03691192343831062,
-0.007996266707777977,
-0.13611900806427002,
-0.04786273464560509,
-0.10358831286430359,
-0.04357128217816353,
0.13354332745075226,
0.018664736300706863,
0.15356586873531342,
-0.08709818124771118,
-0.0722038671374321,
0.20489206910133362,
-0.010411538183689117,
-0.12820468842983246,
-0.076752208173275,
0.10165707021951675,
0.021510310471057892,
-0.056606587022542953,
-0.02523270808160305,
-0.1839766949415207,
-0.0152357779443264,
-0.04550420492887497,
-0.047039128839969635,
0.01796751655638218,
-0.010888241231441498,
0.13837894797325134,
0.08494598418474197,
0.05018039792776108,
-0.06086122244596481,
-0.006730288732796907,
0.10779471695423126,
0.08823856711387634,
0.008680110797286034,
0.023406028747558594,
-0.05774238705635071,
0.09552932530641556,
-0.04003755748271942,
-0.0142367510125041,
-0.08283266425132751,
-0.036246106028556824,
-0.026256313547492027,
0.17507147789001465,
0.09440762549638748,
0.2257927656173706,
0.09567736834287643,
0.039160262793302536,
0.031270865350961685,
-0.13181598484516144,
-0.1425403207540512,
-0.0017254541162401438,
0.09020978957414627,
-0.14270411431789398,
-0.04119925573468208,
-0.08974775671958923,
-0.17768175899982452,
-0.12202505767345428,
0.0006432619411498308,
-0.17960017919540405,
0.06390921026468277,
0.05408334732055664,
-0.035177867859601974,
0.03272094577550888,
0.13032332062721252,
-0.011533179320394993,
-0.03967514634132385,
0.0831870287656784,
0.0379033200442791,
-0.041234664618968964,
-0.021742934361100197,
0.11885567009449005,
0.15673065185546875,
0.13124459981918335,
-0.03511447086930275,
0.004914294462651014,
0.07076404243707657,
-0.02309088408946991,
0.06539414077997208,
0.0558244064450264,
0.20973342657089233,
0.188301220536232,
0.038996949791908264,
0.008822928182780743,
-0.07048165798187256,
0.0855446457862854,
-0.0742373839020729,
-0.14302679896354675,
-0.05579735338687897,
0.08729292452335358,
0.016605578362941742,
0.023469142615795135,
0.08711627870798111,
0.024545932188630104,
0.09132762253284454,
0.15968108177185059,
0.01990218088030815,
-0.09659269452095032,
-0.050218869000673294,
0.01175848301500082,
0.027713103219866753,
0.04794301092624664,
-0.04514073207974434,
-0.00937939714640379,
0.017020760104060173,
-0.10303554683923721,
0.031789086759090424,
-0.1413339376449585,
-0.1358717679977417,
0.044326696544885635,
0.003906996920704842,
0.010907664895057678,
0.02786896750330925,
-0.0038291432429105043,
0.019039705395698547,
0.04351753741502762,
-0.06975466758012772,
0.047416772693395615,
-0.024745507165789604,
-0.020031947642564774,
0.03340689837932587,
-0.057257164269685745,
-0.205775648355484,
-0.17696654796600342,
0.00013708483311347663,
-0.09910997003316879,
0.10194740444421768,
0.018308809027075768,
-0.12373185902833939,
0.047737859189510345,
-0.05822649225592613,
0.027574289590120316,
-0.01875593699514866,
-0.049130141735076904,
0.10507171601057053,
0.1525275856256485,
-0.016146350651979446,
0.018018173053860664,
-0.04865182936191559,
-0.10157987475395203,
-0.19632206857204437,
0.0691583976149559,
0.04680244252085686,
0.014610917307436466,
0.10669491440057755,
0.018072687089443207,
0.02367905154824257,
-0.007674071006476879,
-0.016521066427230835,
-0.011659215204417706,
-0.08781040459871292,
0.31909599900245667,
0.04510033503174782,
-0.025173069909214973,
0.02041010931134224,
-0.0043001663871109486,
-0.028083480894565582,
0.03263787180185318,
-0.0985708013176918,
-0.07548979669809341,
-0.08774089068174362,
-0.04367410019040108,
-0.09784720093011856,
0.053299110382795334,
0.05916472524404526,
0.003188040340319276,
-0.07727594673633575,
0.04221395403146744,
0.11369874328374863,
-0.0923808291554451,
-0.07137343287467957,
0.07477962225675583,
0.0972946360707283,
-0.07331304252147675,
0.00012658814375754446,
0.00874367356300354,
0.023951783776283264,
0.037102166563272476,
0.06778035312891006,
-0.03966575115919113,
0.08589404821395874,
-0.19917890429496765,
0.0372927263379097,
0.106058269739151,
0.023754918947815895,
0.0638108178973198,
0.07643651217222214,
-0.1058402881026268,
-0.008500572293996811,
-0.032518330961465836,
-0.21341575682163239,
0.1668180525302887,
0.1355515867471695,
0.06788124144077301,
-0.025637222453951836,
-0.00461410591378808,
-0.0649740919470787,
0.05773647129535675,
0.02723747305572033,
-0.14758841693401337,
0.004883295856416225,
0.06064270809292793,
0.026899009943008423,
0.01614922471344471,
0.07971042394638062,
0.014697225764393806,
-0.1801026314496994,
-0.014406266622245312,
0.10730406641960144,
0.002390873385593295,
0.0053148469887673855,
-0.03175045922398567,
-0.1755964607000351,
0.0751047357916832,
0.004285442177206278,
0.07233936339616776,
-0.1676585078239441,
0.14297930896282196,
-0.10089799761772156,
0.07726949453353882,
-0.004285062663257122,
-0.021311495453119278,
0.02507244050502777,
-0.0541163794696331,
0.15163759887218475,
0.01058570109307766,
-0.021810131147503853,
-0.1200498715043068,
-0.1717042326927185,
-0.019227758049964905,
-0.11788936704397202,
-0.11679866164922714,
0.050424277782440186,
0.062185097485780716,
0.04923136904835701,
-0.061147067695856094,
0.1518532931804657,
-0.047422297298908234,
0.060713399201631546,
-0.06893875449895859,
-0.06755045056343079,
0.03764858841896057,
-0.12588608264923096,
-0.08176055550575256,
0.05573027580976486,
0.19166934490203857,
0.15833087265491486,
-0.02816431224346161,
-0.03472423925995827,
-0.047419581562280655,
-0.006212298292666674,
-0.007802055217325687,
0.0275666993111372,
0.023223137483000755,
0.07315318286418915,
-0.07681374251842499,
-0.11649256944656372,
0.033787861466407776,
-0.06713802367448807,
-0.055589709430933,
-0.015439179725944996,
0.1513158082962036,
0.04671623185276985,
0.07720734924077988,
-0.018946662545204163,
0.03887668624520302,
-0.001724981120787561,
-0.056474871933460236,
0.16197094321250916,
0.03885216265916824,
-0.05193585529923439,
0.06837689876556396,
0.053174007683992386,
0.043745119124650955,
0.03011113777756691,
-0.026783017441630363,
0.206032395362854,
0.1980147808790207,
0.014206883497536182,
0.2175983190536499,
0.03177616000175476,
-0.03772832080721855,
-0.1300560086965561,
-0.065880686044693,
-0.006372632458806038,
0.03559038043022156,
0.08070417493581772,
-0.18207235634326935,
-0.015011128038167953,
-0.05689644813537598,
-0.034518610686063766,
-0.15059494972229004,
-0.28553900122642517,
-0.05957856774330139,
0.20075850188732147,
0.14706264436244965,
0.27519428730010986,
-0.10432573407888412,
0.035197313874959946,
0.02663275972008705,
-0.04912831634283066,
-0.006501141935586929,
0.00018665487004909664,
0.10268618166446686,
-0.15421873331069946,
0.1176437959074974,
0.08486983180046082,
-0.019002694636583328,
0.01058861706405878,
-0.1619086116552353,
0.00936629343777895,
-0.12191236019134521,
0.05354422330856323,
0.1400289237499237,
-0.048128653317689896,
-0.054873593151569366,
0.14033560454845428,
-0.024562934413552284,
-0.22685599327087402,
-0.04648222774267197,
-0.043600670993328094,
-0.010640020482242107,
0.026607351377606392,
-0.1013401448726654,
0.04101909324526787,
0.1330099105834961,
0.009380043484270573,
0.1147187277674675,
0.11749245226383209,
-0.052566803991794586,
0.10792597383260727,
0.2257719188928604,
-0.018785694614052773,
0.04689010605216026,
-0.12743118405342102,
-0.0012336712097749114,
-0.028270328417420387,
0.013657891191542149,
-0.09504974633455276,
-0.09938385337591171,
0.02366873063147068,
0.02872389927506447,
0.009118586778640747,
0.0921793207526207,
-0.029922157526016235,
0.0759170651435852,
0.06817561388015747,
-0.13014446198940277,
-0.16288450360298157,
0.015828335657715797,
-0.007344507612287998,
0.08354310691356659,
0.00027861111448146403,
0.08878035843372345,
-0.11932205408811569,
-0.018093237653374672,
-0.03153328225016594,
-0.03319635987281799,
-0.130486860871315,
-0.07138993591070175,
0.06156524643301964,
0.028095467016100883,
-0.06602972000837326,
0.1398407518863678,
0.026440169662237167,
0.15942534804344177,
0.049197953194379807,
0.012499804608523846,
0.07227300107479095,
-0.05345509201288223,
0.1283530443906784,
0.13818155229091644,
-0.00868943240493536,
-0.05460423603653908,
-0.1013643890619278,
-0.10236792266368866,
0.08925779908895493,
-0.05773641914129257,
0.07476430386304855,
-0.14885357022285461,
-0.06675903499126434,
0.015772046521306038,
0.016141414642333984,
-0.09562095999717712,
0.02571965754032135,
-0.01625603251159191,
-0.18119946122169495,
0.056570518761873245,
-0.048285093158483505,
0.0440407395362854,
-0.06347788125276566,
-0.1110161691904068,
-0.17226378619670868,
0.06091433763504028,
0.08593481779098511,
-0.053876690566539764,
-0.12229149043560028,
0.011023230850696564,
-0.00012518465518951416,
-0.06341652572154999,
-0.05023367330431938,
0.09722746908664703,
-0.11020902544260025,
0.031452205032110214,
-0.012567701749503613,
0.08853451162576675,
-0.03510405123233795,
-0.011538895778357983,
0.044220831245183945,
-0.08039166033267975,
-0.009481523185968399,
0.03534642979502678,
-0.026372017338871956,
-0.04127239063382149,
-0.2689029574394226,
0.0036654395516961813,
0.0341104120016098,
0.02497158572077751,
0.07856601476669312,
0.011906822212040424,
0.021174922585487366,
0.03993808850646019,
-0.15396519005298615,
-0.013395369984209538,
0.14574195444583893,
-0.07689505815505981,
-0.022186370566487312,
0.05703273415565491,
-0.09054436534643173,
0.013882770203053951,
-0.030287226662039757,
0.1345842480659485,
0.023923413828015327,
0.06404478847980499,
-0.0851147472858429,
0.10106813907623291,
-0.1451139897108078,
-0.04998219385743141,
-0.01244612317532301,
0.09761348366737366,
0.07019034773111343,
-0.10272270441055298,
0.014697125181555748,
0.04210108891129494,
0.19416837394237518,
0.016384804621338844,
-0.0356343574821949,
-0.03396720811724663,
0.004015897400677204,
0.22076453268527985,
0.03044266067445278,
0.10457023978233337,
0.07281364500522614,
-0.026583973318338394,
0.12624378502368927,
0.09929762035608292,
0.11280370503664017,
-0.055645186454057693,
0.13904185593128204,
0.04667386785149574,
0.038641396909952164,
0.0614289753139019,
0.06836545467376709,
0.09098632633686066,
-0.0008288522367365658,
0.1138714924454689,
0.013811973854899406,
-0.02422109805047512,
-0.021335409954190254,
0.17759373784065247,
0.10501719266176224,
-0.14769648015499115,
0.029047364369034767,
-0.01258957851678133,
0.039933037012815475,
-0.014194529503583908,
-0.15634691715240479,
-0.07240267097949982,
-0.3315149247646332,
0.1226184144616127,
-0.07119352370500565,
0.019930170848965645,
0.007913772016763687,
-0.037425633519887924,
-0.03296699747443199,
-0.04477746784687042,
0.13151589035987854,
-0.013641550205647945,
-0.006079165264964104,
-0.04815853759646416,
-0.015360191464424133,
-0.11607866734266281,
-0.11200575530529022,
-0.013207737356424332,
-0.13671602308750153,
-0.010119039565324783,
0.05595948174595833,
0.003977729007601738,
0.01821410097181797,
-0.03142618387937546,
0.0024383175186812878,
0.06541839241981506,
-0.05751744285225868,
0.056182678788900375,
0.12097269296646118,
0.08766137808561325,
-0.1058853268623352,
0.031048951670527458,
0.2011747509241104,
0.04359564557671547,
-0.12483977526426315,
0.01449228823184967,
0.1819491684436798,
0.004885740112513304,
0.017068125307559967,
-0.006097703706473112,
-0.0540788508951664,
-0.07554277032613754,
0.1251034289598465,
0.08296554535627365,
-0.09985227137804031,
0.015833314508199692,
-0.0726347416639328,
-0.01594804972410202,
-0.06374675035476685,
0.10130585730075836,
0.09538925439119339,
0.04440245032310486,
-0.10621760785579681,
-0.08487539738416672,
-0.10891728103160858,
0.040588874369859695,
-0.08629853278398514,
-0.07311757653951645,
0.09629398584365845,
-0.07057105004787445,
-0.07029950618743896,
0.025521177798509598,
-0.17978744208812714,
-0.009467960335314274,
0.1711762249469757,
-0.24654000997543335,
-0.0916430801153183,
-0.10857923328876495,
0.14477859437465668,
0.016497576609253883,
0.1013975441455841,
-0.006207061931490898,
-0.007889035157859325,
-0.20577777922153473,
0.024890204891562462,
-0.05293011665344238,
-0.02073732763528824,
0.07814782857894897,
-0.09476397186517715,
0.22629831731319427,
-0.08276885002851486,
0.020940175279974937,
0.012659613974392414,
0.0870661810040474,
-0.030675338581204414,
0.09283176809549332,
-0.03660329803824425,
-0.12576518952846527,
-0.03620953485369682,
0.03001813031733036,
0.013904244638979435,
0.10071761906147003,
0.09772487729787827,
-0.03414725139737129,
0.03389119729399681,
0.09747414290904999,
0.04172342270612717,
-0.023843804374337196,
0.0360250361263752,
-0.17077107727527618,
0.02182629331946373,
-0.018498148769140244,
-0.06935930997133255,
0.03687669709324837,
-0.06603235751390457,
0.1639697551727295,
0.04022442549467087,
0.0670473501086235,
-0.036152735352516174,
0.0073931049555540085,
-0.014454689808189869,
-0.013775371946394444,
-0.026180334389209747,
-0.17259705066680908,
-0.10422050207853317,
-0.1347656100988388,
-0.012701659463346004,
-0.034971047192811966,
0.04591470584273338,
0.023234914988279343,
-0.0003200018545612693,
-0.014577031135559082,
-0.12090865522623062,
0.04360328987240791,
0.11146783083677292,
-0.04631396010518074,
-0.026193076744675636
] |
null | null | transformers | # airoboros-2.2.1-y34b
Unofficial training of [Jon Durbin](https://huggingface.co/jondurbin)'s powerful airoboros 2.2.1 dataset on [Charles Goddard](https://huggingface.co/chargoddard)'s [Llama-fied Yi 34B model](https://huggingface.co/chargoddard/Yi-34B-Llama), aiming to bring the instruction-following capabilities of the airoboros dataset to the new Yi 34B foundational model.
As a 34B model with grouped-query attention, users will be able to conduct inference on the model with 4bit quantization on a single 24gb consumer GPU.
This Yi model is "Llama-fied", meaning the keys are renamed to match those used in Llama models, eliminating the need for remote code and ensuring compatibility with existing training and inference repositories. Architecturally this is similar to a Llama 2 34B model with an expanded vocab size of 64000.
This model is retrained thanks to compute provided by [alpin](https://huggingface.co/alpindale) with a monkeypatch to the trainer to resolve EOS token issues in the prompter. A smaller batch size and learning rate were used and training was extended by one epoch. 8-bit lora was also used instead of qlora.
## Usage:
The intended prompt format is the modified Vicuna 1.1 instruction format used by airoboros v2:
```
A chat.
USER: {prompt}
ASSISTANT:
```
## Training Details:
The model was trained using [axolotl](https://github.com/OpenAccess-AI-Collective/axolotl) as a lora adapter on 1x A100 80gb GPU for 4 epochs, before being fused to the base model with PEFT.
## License:
This model is built on the Yi 34B base model, which has its own custom license included in this repository.
Please refer to the [airoboros 2.2.1 dataset card](https://huggingface.co/datasets/jondurbin/airoboros-2.2.1) regarding the usage of gpt-4 API calls in creating the dataset. | {"language": ["en"], "license": "other", "library_name": "transformers", "tags": ["Yi", "llama", "llama 2"], "datasets": ["jondurbin/airoboros-2.2.1"], "inference": false, "pipeline_tag": "text-generation", "license_name": "yi-license", "license_link": "LICENSE"} | text-generation | LoneStriker/airoboros-2.2.1-y34b-3.0bpw-h6-exl2 | [
"transformers",
"safetensors",
"llama",
"text-generation",
"Yi",
"llama 2",
"en",
"dataset:jondurbin/airoboros-2.2.1",
"license:other",
"autotrain_compatible",
"text-generation-inference",
"region:us"
] | 2023-11-11T08:11:41+00:00 | [] | [
"en"
] | TAGS
#transformers #safetensors #llama #text-generation #Yi #llama 2 #en #dataset-jondurbin/airoboros-2.2.1 #license-other #autotrain_compatible #text-generation-inference #region-us
| # airoboros-2.2.1-y34b
Unofficial training of Jon Durbin's powerful airoboros 2.2.1 dataset on Charles Goddard's Llama-fied Yi 34B model, aiming to bring the instruction-following capabilities of the airoboros dataset to the new Yi 34B foundational model.
As a 34B model with grouped-query attention, users will be able to conduct inference on the model with 4bit quantization on a single 24gb consumer GPU.
This Yi model is "Llama-fied", meaning the keys are renamed to match those used in Llama models, eliminating the need for remote code and ensuring compatibility with existing training and inference repositories. Architecturally this is similar to a Llama 2 34B model with an expanded vocab size of 64000.
This model is retrained thanks to compute provided by alpin with a monkeypatch to the trainer to resolve EOS token issues in the prompter. A smaller batch size and learning rate were used and training was extended by one epoch. 8-bit lora was also used instead of qlora.
## Usage:
The intended prompt format is the modified Vicuna 1.1 instruction format used by airoboros v2:
## Training Details:
The model was trained using axolotl as a lora adapter on 1x A100 80gb GPU for 4 epochs, before being fused to the base model with PEFT.
## License:
This model is built on the Yi 34B base model, which has its own custom license included in this repository.
Please refer to the airoboros 2.2.1 dataset card regarding the usage of gpt-4 API calls in creating the dataset. | [
"# airoboros-2.2.1-y34b\n\nUnofficial training of Jon Durbin's powerful airoboros 2.2.1 dataset on Charles Goddard's Llama-fied Yi 34B model, aiming to bring the instruction-following capabilities of the airoboros dataset to the new Yi 34B foundational model.\n\nAs a 34B model with grouped-query attention, users will be able to conduct inference on the model with 4bit quantization on a single 24gb consumer GPU.\n\nThis Yi model is \"Llama-fied\", meaning the keys are renamed to match those used in Llama models, eliminating the need for remote code and ensuring compatibility with existing training and inference repositories. Architecturally this is similar to a Llama 2 34B model with an expanded vocab size of 64000.\n\nThis model is retrained thanks to compute provided by alpin with a monkeypatch to the trainer to resolve EOS token issues in the prompter. A smaller batch size and learning rate were used and training was extended by one epoch. 8-bit lora was also used instead of qlora.",
"## Usage:\n\nThe intended prompt format is the modified Vicuna 1.1 instruction format used by airoboros v2:",
"## Training Details:\n\nThe model was trained using axolotl as a lora adapter on 1x A100 80gb GPU for 4 epochs, before being fused to the base model with PEFT.",
"## License:\n\nThis model is built on the Yi 34B base model, which has its own custom license included in this repository.\n\nPlease refer to the airoboros 2.2.1 dataset card regarding the usage of gpt-4 API calls in creating the dataset."
] | [
"TAGS\n#transformers #safetensors #llama #text-generation #Yi #llama 2 #en #dataset-jondurbin/airoboros-2.2.1 #license-other #autotrain_compatible #text-generation-inference #region-us \n",
"# airoboros-2.2.1-y34b\n\nUnofficial training of Jon Durbin's powerful airoboros 2.2.1 dataset on Charles Goddard's Llama-fied Yi 34B model, aiming to bring the instruction-following capabilities of the airoboros dataset to the new Yi 34B foundational model.\n\nAs a 34B model with grouped-query attention, users will be able to conduct inference on the model with 4bit quantization on a single 24gb consumer GPU.\n\nThis Yi model is \"Llama-fied\", meaning the keys are renamed to match those used in Llama models, eliminating the need for remote code and ensuring compatibility with existing training and inference repositories. Architecturally this is similar to a Llama 2 34B model with an expanded vocab size of 64000.\n\nThis model is retrained thanks to compute provided by alpin with a monkeypatch to the trainer to resolve EOS token issues in the prompter. A smaller batch size and learning rate were used and training was extended by one epoch. 8-bit lora was also used instead of qlora.",
"## Usage:\n\nThe intended prompt format is the modified Vicuna 1.1 instruction format used by airoboros v2:",
"## Training Details:\n\nThe model was trained using axolotl as a lora adapter on 1x A100 80gb GPU for 4 epochs, before being fused to the base model with PEFT.",
"## License:\n\nThis model is built on the Yi 34B base model, which has its own custom license included in this repository.\n\nPlease refer to the airoboros 2.2.1 dataset card regarding the usage of gpt-4 API calls in creating the dataset."
] | [
67,
253,
26,
46,
56
] | [
"passage: TAGS\n#transformers #safetensors #llama #text-generation #Yi #llama 2 #en #dataset-jondurbin/airoboros-2.2.1 #license-other #autotrain_compatible #text-generation-inference #region-us \n# airoboros-2.2.1-y34b\n\nUnofficial training of Jon Durbin's powerful airoboros 2.2.1 dataset on Charles Goddard's Llama-fied Yi 34B model, aiming to bring the instruction-following capabilities of the airoboros dataset to the new Yi 34B foundational model.\n\nAs a 34B model with grouped-query attention, users will be able to conduct inference on the model with 4bit quantization on a single 24gb consumer GPU.\n\nThis Yi model is \"Llama-fied\", meaning the keys are renamed to match those used in Llama models, eliminating the need for remote code and ensuring compatibility with existing training and inference repositories. Architecturally this is similar to a Llama 2 34B model with an expanded vocab size of 64000.\n\nThis model is retrained thanks to compute provided by alpin with a monkeypatch to the trainer to resolve EOS token issues in the prompter. A smaller batch size and learning rate were used and training was extended by one epoch. 8-bit lora was also used instead of qlora.## Usage:\n\nThe intended prompt format is the modified Vicuna 1.1 instruction format used by airoboros v2:## Training Details:\n\nThe model was trained using axolotl as a lora adapter on 1x A100 80gb GPU for 4 epochs, before being fused to the base model with PEFT.## License:\n\nThis model is built on the Yi 34B base model, which has its own custom license included in this repository.\n\nPlease refer to the airoboros 2.2.1 dataset card regarding the usage of gpt-4 API calls in creating the dataset."
] | [
-0.08662984520196915,
0.0621708407998085,
-0.003103029914200306,
0.06006096675992012,
0.10708695650100708,
0.019222591072320938,
0.14084821939468384,
0.14281849563121796,
0.020915523171424866,
0.10535850375890732,
-0.04390526935458183,
0.03201090171933174,
0.11703190952539444,
0.13653433322906494,
-0.011841454543173313,
-0.1903853863477707,
0.045942217111587524,
0.0027673051226884127,
-0.06497853994369507,
-0.005730979610234499,
0.14187811315059662,
-0.060304295271635056,
0.1042328029870987,
0.027927178889513016,
-0.08868381381034851,
0.09587656706571579,
-0.022030077874660492,
-0.0947006419301033,
0.09141628444194794,
0.1065988540649414,
0.07956884801387787,
0.018947431817650795,
0.11070436239242554,
-0.14827141165733337,
0.0009211854776367545,
0.0941198468208313,
-0.008864287286996841,
0.025248128920793533,
0.05930793657898903,
-0.024884814396500587,
0.09861736744642258,
-0.03938186913728714,
0.07461078464984894,
0.02180636115372181,
-0.06256487965583801,
-0.09296227991580963,
-0.08655474334955215,
0.02083681896328926,
0.09467127919197083,
0.053392112255096436,
0.02625289373099804,
0.05552279204130173,
-0.01662635989487171,
0.00849643163383007,
0.1257614940404892,
-0.17427590489387512,
-0.0014002019306644797,
0.1600562483072281,
0.03452497348189354,
0.04713128134608269,
-0.0842430517077446,
-0.04705626890063286,
0.0994952842593193,
0.0273783840239048,
0.07248422503471375,
-0.013405955396592617,
0.07778055965900421,
-0.018555857241153717,
-0.09321440011262894,
-0.0782262310385704,
0.18166577816009521,
0.05541647598147392,
-0.09917358309030533,
-0.07386603206396103,
-0.10158723592758179,
0.0668930783867836,
0.05037379264831543,
-0.07319816201925278,
0.050986163318157196,
0.0008399668149650097,
0.07900805026292801,
-0.10810676962137222,
-0.09988844394683838,
-0.04503629356622696,
-0.10622557252645493,
0.17315927147865295,
0.07373838126659393,
0.0952739343047142,
-0.06068819388747215,
0.09543098509311676,
-0.06308651715517044,
-0.07357775419950485,
-0.0875132828950882,
-0.02455516718327999,
-0.10391590744256973,
0.002611584961414337,
-0.04102523252367973,
-0.08848521113395691,
-0.01601475477218628,
0.220454141497612,
-0.06073746830224991,
0.011405983939766884,
0.07845836132764816,
0.024097861722111702,
0.02338932827115059,
0.13509367406368256,
0.0037604321260005236,
-0.08331330120563507,
0.058457013219594955,
0.07930757850408554,
-0.0007954849279485643,
-0.012675243429839611,
-0.0915500670671463,
-0.06905706971883774,
0.03005828522145748,
-0.02465786412358284,
-0.0320562869310379,
-0.011907604523003101,
-0.007556983269751072,
-0.03856277838349342,
0.1180616095662117,
-0.13968707621097565,
0.005210231989622116,
-0.02513790689408779,
-0.12405043095350266,
0.06779894977807999,
0.07375795394182205,
-0.009320779703557491,
-0.0607222318649292,
-0.004170096945017576,
-0.05709145963191986,
-0.09962338209152222,
-0.1208108514547348,
-0.07180248200893402,
-0.002761951880529523,
-0.08770883083343506,
0.038265109062194824,
-0.15872541069984436,
-0.2896882891654968,
-0.053301852196455,
-0.003366823773831129,
-0.0077204471454024315,
-0.04928238317370415,
-0.08605080097913742,
-0.020303579047322273,
-0.052647173404693604,
-0.009261555038392544,
0.04736768454313278,
-0.028591446578502655,
0.002204742282629013,
-0.030725808814167976,
0.09767881780862808,
-0.07761106640100479,
0.026039177551865578,
-0.039862748235464096,
0.02782670594751835,
-0.05476116016507149,
0.09525328129529953,
-0.0014736172743141651,
-0.11928097903728485,
-0.030587436631321907,
-0.012789610773324966,
-0.05628746375441551,
0.04521496593952179,
0.033093973994255066,
0.059104278683662415,
-0.1314769983291626,
-0.07219108939170837,
0.09283320605754852,
-0.14370539784431458,
-0.010716368444263935,
0.06816790997982025,
-0.0316670797765255,
0.08567652106285095,
0.07481800019741058,
0.09288254380226135,
0.08067989349365234,
-0.06259144097566605,
-0.11404483020305634,
-0.03757582604885101,
-0.01973387785255909,
-0.002363720675930381,
0.03179888427257538,
0.0473664328455925,
0.07019805908203125,
0.03601836785674095,
0.04178735241293907,
0.003812019480392337,
-0.005414955317974091,
-0.011969003826379776,
-0.0340149886906147,
-0.0716257095336914,
-0.07752761989831924,
-0.046609148383140564,
0.021138900890946388,
-0.03505650907754898,
-0.0960598960518837,
0.025767968967556953,
0.18637843430042267,
-0.07515805214643478,
-0.01033844519406557,
-0.08562202751636505,
0.09806464612483978,
-0.07920617610216141,
-0.018461471423506737,
-0.11324790865182877,
-0.04828294366598129,
0.08509930968284607,
-0.13486328721046448,
-0.008768163621425629,
0.09635838121175766,
0.04371248558163643,
0.06956940144300461,
-0.038855668157339096,
-0.044622767716646194,
-0.08971279114484787,
-0.044973913580179214,
-0.03334151953458786,
-0.02637929469347,
-0.05734087899327278,
-0.0655522570014,
0.08374998718500137,
-0.09353785216808319,
0.07148650288581848,
-0.061319079250097275,
0.16745373606681824,
0.02990472875535488,
-0.03555469587445259,
-0.027746226638555527,
-0.030627034604549408,
-0.06166541948914528,
-0.1043417677283287,
-0.039156850427389145,
0.02434813790023327,
-0.008075295016169548,
0.057502083480358124,
-0.1666623055934906,
-0.06328136473894119,
0.07729122787714005,
0.16273874044418335,
-0.016146378591656685,
-0.06941783428192139,
-0.056219298392534256,
-0.03381573408842087,
-0.11154630035161972,
-0.0969688668847084,
0.22481507062911987,
-0.04203147813677788,
0.11424368619918823,
-0.11709389090538025,
-0.04701141640543938,
-0.020198427140712738,
-0.006676724646240473,
-0.030487241223454475,
-0.015072018839418888,
0.062459688633680344,
-0.07511114329099655,
0.09651099890470505,
-0.0074554202146828175,
-0.01929767057299614,
0.13760699331760406,
0.028514103963971138,
-0.1186404749751091,
-0.008154608309268951,
-0.03361691161990166,
0.0008633952238596976,
0.12325813621282578,
0.044758785516023636,
0.054452698677778244,
0.03462153673171997,
0.06357333064079285,
0.10222256928682327,
-0.115162692964077,
0.07108253985643387,
0.04901433363556862,
-0.05421607568860054,
0.07282562553882599,
0.028347887098789215,
0.024854807183146477,
0.08611255139112473,
-0.05710286647081375,
-0.032189201563596725,
-0.0025702465791255236,
-0.026964878663420677,
-0.05143195390701294,
0.1464645117521286,
-0.06783313304185867,
-0.16446055471897125,
-0.19235645234584808,
0.11377362161874771,
-0.06587127596139908,
0.042516034096479416,
0.03318410366773605,
0.0012906709453091025,
-0.07703579217195511,
-0.10035853832960129,
0.09695977717638016,
0.019964341074228287,
0.010899610817432404,
-0.008935839869081974,
0.02279266156256199,
0.002510317135602236,
-0.1610105186700821,
-0.03155384212732315,
-0.020408164709806442,
-0.13654811680316925,
0.012098784558475018,
-0.02448733150959015,
0.05150868743658066,
0.0417286679148674,
-0.0867747887969017,
-0.03227732703089714,
-0.03351368382573128,
0.14495138823986053,
-0.018023507669568062,
0.12105191498994827,
0.22839845716953278,
0.025782473385334015,
0.08029649406671524,
0.009126345627009869,
-0.0707557424902916,
-0.09099335968494415,
0.04206984117627144,
0.049589529633522034,
-0.03474568948149681,
-0.22807982563972473,
0.016264569014310837,
-0.027268730103969574,
-0.047453366219997406,
0.1040225401520729,
0.04142555221915245,
0.054278891533613205,
0.09804964065551758,
-0.06825770437717438,
0.10575612634420395,
0.014245934784412384,
0.06707799434661865,
0.026287946850061417,
0.02910369075834751,
0.05078766867518425,
-0.034030526876449585,
-0.00010625791765050963,
0.09290534257888794,
0.17956183850765228,
0.2234453409910202,
-0.10701656341552734,
0.013141583651304245,
0.011671389453113079,
0.02603837475180626,
0.031106416136026382,
0.11328408122062683,
-0.03946581855416298,
0.04708945006132126,
-0.08572139590978622,
0.004500894341617823,
-0.034576285630464554,
0.11876101791858673,
0.007995691150426865,
0.08967184275388718,
-0.0823267474770546,
0.06817451864480972,
-0.02480289526283741,
0.18556396663188934,
0.020896874368190765,
-0.27982908487319946,
-0.054289646446704865,
0.05866851285099983,
-0.047872770577669144,
-0.07243863493204117,
0.037693895399570465,
0.2244676798582077,
-0.08789659291505814,
0.017445091158151627,
0.010379564948379993,
0.07383554428815842,
-0.08137624710798264,
-0.0384514257311821,
-0.06811423599720001,
0.20809359848499298,
-0.015904037281870842,
0.06686222553253174,
-0.13569137454032898,
0.02418200857937336,
0.00031392835080623627,
0.10128675401210785,
-0.07996581494808197,
0.08580614626407623,
0.0560394749045372,
-0.03281336650252342,
0.060512639582157135,
-0.023115044459700584,
-0.16221433877944946,
-0.04773211479187012,
-0.11547249555587769,
0.07557489722967148,
-0.00941938254982233,
-0.07266315817832947,
0.08677602559328079,
-0.024163177236914635,
0.042773667722940445,
0.00102167425211519,
-0.01583831012248993,
-0.08252479135990143,
-0.1971258819103241,
-0.03840888664126396,
0.04007458686828613,
-0.05392571911215782,
-0.1471662074327469,
-0.03394816443324089,
0.006105495151132345,
0.03896654024720192,
0.0354885496199131,
-0.07641807943582535,
-0.10012192279100418,
0.05341264605522156,
0.10241709649562836,
-0.06416168063879013,
0.058061543852090836,
0.06247672066092491,
0.1577252894639969,
-0.05224728584289551,
-0.07906031608581543,
-0.01023855246603489,
-0.06874553859233856,
-0.08901369571685791,
-0.03708016499876976,
0.01667025312781334,
0.04553016275167465,
0.04658571258187294,
0.03509834036231041,
-0.054188989102840424,
0.0049971044063568115,
-0.042898811399936676,
-0.0017819112399592996,
0.22558262944221497,
0.015859534963965416,
0.13136038184165955,
-0.08798679709434509,
-0.1139518991112709,
-0.03596959263086319,
0.010061204433441162,
0.033999089151620865,
0.25458037853240967,
-0.023392342031002045,
0.02032899297773838,
0.09613905847072601,
-0.10007891058921814,
-0.1332501620054245,
-0.0010162662947550416,
0.04676032438874245,
0.12340463697910309,
-0.051229655742645264,
-0.10039355605840683,
0.0038095712661743164,
0.10931675136089325,
0.023791352286934853,
0.10045047104358673,
-0.2699452042579651,
-0.06874983012676239,
0.045970093458890915,
0.06570014357566833,
0.15846268832683563,
-0.017715198919177055,
0.018830152228474617,
-0.0030856409575790167,
-0.05266685038805008,
0.034041788429021835,
-0.004694005474448204,
0.11265872418880463,
-0.051123347133398056,
0.05233265087008476,
0.04028524458408356,
-0.01576850190758705,
0.15130198001861572,
0.0027692022267729044,
0.10156669467687607,
-0.041078805923461914,
0.08693063259124756,
0.07383817434310913,
-0.07315507531166077,
0.10485182702541351,
-0.06071293726563454,
0.04840549826622009,
-0.07163311541080475,
-0.0885394960641861,
-0.013313096016645432,
0.08385494351387024,
-0.0021903894376009703,
-0.09019958227872849,
-0.06880255788564682,
0.047714147716760635,
0.07393572479486465,
0.0148758664727211,
-0.09893188625574112,
0.015216370113193989,
-0.02870016172528267,
0.110978864133358,
0.06163065880537033,
-0.03076516091823578,
-0.09202203154563904,
0.0067678471095860004,
0.03838164731860161,
0.11076179891824722,
-0.13356561958789825,
0.016621073707938194,
0.10589143633842468,
-0.04055396094918251,
0.1208353266119957,
0.06547649949789047,
-0.14396530389785767,
0.058197081089019775,
0.03164171800017357,
-0.017054973170161247,
-0.057758089154958725,
-0.020463157445192337,
0.03872966393828392,
-0.07986300438642502,
-0.02076718397438526,
0.13364528119564056,
-0.06601822376251221,
-0.01651160605251789,
-0.05057668685913086,
0.016352705657482147,
-0.0025844485498964787,
0.10481924563646317,
0.031160244718194008,
0.005220972932875156,
0.0019309164490550756,
0.1896074414253235,
0.06302417069673538,
-0.11433403939008713,
0.03736374154686928,
-0.0335809551179409,
-0.04012685641646385,
0.00003350226324982941,
-0.07032772153615952,
0.14312800765037537,
-0.10366685688495636,
-0.09172849357128143,
-0.13492712378501892,
-0.06099148467183113,
0.035359036177396774,
0.02917494997382164,
0.016030268743634224,
0.011049406602978706,
-0.022661712020635605,
0.05188262090086937,
-0.11827417463064194,
0.035395000129938126,
0.06545433402061462,
0.10332926362752914,
-0.10066049546003342,
0.017742643132805824,
-0.0051520816050469875,
0.00330023979768157,
0.0017602590378373861,
-0.0025655122008174658,
-0.08929907530546188,
-0.027456002309918404,
-0.14230559766292572,
0.03729994595050812,
-0.007471915800124407,
-0.027120111510157585,
0.02903807908296585,
-0.04317798838019371,
-0.0450776144862175,
0.08183249831199646,
-0.04775939881801605,
-0.060047805309295654,
-0.0005904237041249871,
0.0863855630159378,
-0.03063337318599224,
-0.062383003532886505,
0.029879078269004822,
-0.11793141067028046,
0.0736546665430069,
0.021805599331855774,
-0.008263806812465191,
-0.025281159207224846,
-0.08326702564954758,
-0.008923922665417194,
0.033481910824775696,
0.08177368342876434,
0.0649615228176117,
-0.05834777280688286,
0.07488888502120972,
0.0036791011225432158,
-0.06191254407167435,
-0.07149651646614075,
-0.01569523848593235,
-0.050221480429172516,
0.02925063669681549,
-0.04570931941270828,
-0.034497689455747604,
-0.0758291706442833,
-0.025629734620451927,
0.09567005187273026,
0.06243632361292839,
0.10983327031135559,
-0.015812011435627937,
0.022086739540100098,
-0.1899895966053009,
0.008562344126403332,
0.021360132843255997,
0.007408421952277422,
0.07919273525476456,
-0.05686695873737335,
0.045745234936475754,
0.01089715026319027,
0.13759230077266693,
-0.009342407807707787,
-0.0003376135427970439,
-0.011868327856063843,
-0.06384116411209106,
0.031793124973773956,
0.015261022374033928,
0.08157533407211304,
0.03632228448987007,
0.024089016020298004,
0.025493910536170006,
-0.0001973943435586989,
0.09332971274852753,
-0.03659394383430481,
0.07640496641397476,
0.07891417294740677,
0.026338661089539528,
0.16652058064937592,
0.0576777458190918,
-0.060049135237932205,
-0.05820359289646149,
0.0074661532416939735,
0.008919726125895977,
-0.03423786908388138,
0.00961736124008894,
0.041059307754039764,
0.1559373140335083,
-0.1814340502023697,
0.08712051808834076,
0.033293332904577255,
-0.04173843935132027,
-0.09506779909133911,
-0.10548514872789383,
-0.06129536032676697,
-0.07363376766443253,
0.021695736795663834,
-0.09507636725902557,
0.0029434440657496452,
0.06340257078409195,
-0.011134929023683071,
-0.010606604628264904,
0.02501273714005947,
-0.11066709458827972,
-0.05318691208958626,
-0.03700333088636398,
0.01840587519109249,
0.0406314991414547,
0.015909358859062195,
-0.08692921698093414,
0.050925370305776596,
0.08162444084882736,
0.05759700760245323,
-0.039798758924007416,
0.16286389529705048,
0.06082959473133087,
0.03241083770990372,
0.03957607224583626,
-0.013074476271867752,
-0.062345828860998154,
-0.020868608728051186,
0.06487580388784409,
0.07807517051696777,
-0.015233540907502174,
0.031194888055324554,
0.1638394147157669,
-0.0364031121134758,
-0.09228775650262833,
-0.1568448692560196,
0.02674342505633831,
0.0675424337387085,
0.06086781248450279,
0.04727712646126747,
-0.13189294934272766,
-0.08171015232801437,
0.13864809274673462,
0.07204161584377289,
-0.010568760335445404,
-0.04588809981942177,
-0.01725665293633938,
-0.024533778429031372,
-0.05664537847042084,
0.07327831536531448,
0.10068956017494202,
0.14085343480110168,
-0.015216332860291004,
0.059209227561950684,
0.01455356553196907,
0.05160602927207947,
-0.004258085507899523,
0.13081109523773193,
-0.10160933434963226,
0.027975555509328842,
-0.012505046091973782,
-0.05638815090060234,
0.05007329210639,
-0.24789604544639587,
0.052244484424591064,
-0.06355530023574829,
-0.09749242663383484,
0.009901945479214191,
0.012105925008654594,
-0.0498659648001194,
0.08413877338171005,
-0.02270328626036644,
0.018696272745728493,
0.15484800934791565,
-0.04295525327324867,
-0.11348021030426025,
-0.055211760103702545,
0.03861197084188461,
-0.08441899716854095,
0.23385553061962128,
-0.004599365871399641,
0.06703537702560425,
0.07249698042869568,
0.029550623148679733,
-0.1120232567191124,
0.03985252231359482,
-0.032559219747781754,
-0.002298654755577445,
0.01788724772632122,
0.11647694557905197,
-0.05622204393148422,
0.10460567474365234,
0.02367520146071911,
-0.060689087957143784,
0.0013843284687027335,
0.016468072310090065,
-0.014274480752646923,
-0.07029924541711807,
0.027080561965703964,
-0.07816773653030396,
0.1320045292377472,
0.09524790942668915,
-0.0027379579842090607,
-0.010632697492837906,
-0.03431893512606621,
0.08104332536458969,
0.07853078097105026,
0.07912872731685638,
0.020229576155543327,
-0.09935589134693146,
-0.026873892173171043,
-0.12549147009849548,
-0.000978869036771357,
-0.19236701726913452,
-0.09516928344964981,
-0.03559013083577156,
-0.11868893355131149,
-0.0465523935854435,
0.0794944018125534,
0.06942232698202133,
0.06319834291934967,
-0.08160360157489777,
-0.11705666035413742,
-0.06671486049890518,
0.07371608912944794,
-0.10350318253040314,
-0.10531782358884811
] |
null | null | transformers |
This is a demo using the models from:
```
@inproceedings{zhang-etal-2023-escoxlm,
title = "{ESCOXLM}-{R}: Multilingual Taxonomy-driven Pre-training for the Job Market Domain",
author = "Zhang, Mike and
van der Goot, Rob and
Plank, Barbara",
editor = "Rogers, Anna and
Boyd-Graber, Jordan and
Okazaki, Naoaki",
booktitle = "Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers)",
month = jul,
year = "2023",
address = "Toronto, Canada",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/2023.acl-long.662",
doi = "10.18653/v1/2023.acl-long.662",
pages = "11871--11890",
abstract = "The increasing number of benchmarks for Natural Language Processing (NLP) tasks in the computational job market domain highlights the demand for methods that can handle job-related tasks such as skill extraction, skill classification, job title classification, and de-identification. While some approaches have been developed that are specific to the job market domain, there is a lack of generalized, multilingual models and benchmarks for these tasks. In this study, we introduce a language model called ESCOXLM-R, based on XLM-R-large, which uses domain-adaptive pre-training on the European Skills, Competences, Qualifications and Occupations (ESCO) taxonomy, covering 27 languages. The pre-training objectives for ESCOXLM-R include dynamic masked language modeling and a novel additional objective for inducing multilingual taxonomical ESCO relations. We comprehensively evaluate the performance of ESCOXLM-R on 6 sequence labeling and 3 classification tasks in 4 languages and find that it achieves state-of-the-art results on 6 out of 9 datasets. Our analysis reveals that ESCOXLM-R performs better on short spans and outperforms XLM-R-large on entity-level and surface-level span-F1, likely due to ESCO containing short skill and occupation titles, and encoding information on the entity-level.",
}
```
Note that there is another endpoint, namely `jjzha/escoxlmr_skill_extraction`.
Knowledge can be seen as hard skills and Skills are both soft and applied skills. | {"license": "apache-2.0"} | token-classification | jjzha/escoxlmr_skill_extraction | [
"transformers",
"pytorch",
"safetensors",
"xlm-roberta",
"token-classification",
"license:apache-2.0",
"autotrain_compatible",
"endpoints_compatible",
"has_space",
"region:us"
] | 2023-11-11T08:19:48+00:00 | [] | [] | TAGS
#transformers #pytorch #safetensors #xlm-roberta #token-classification #license-apache-2.0 #autotrain_compatible #endpoints_compatible #has_space #region-us
|
This is a demo using the models from:
Note that there is another endpoint, namely 'jjzha/escoxlmr_skill_extraction'.
Knowledge can be seen as hard skills and Skills are both soft and applied skills. | [] | [
"TAGS\n#transformers #pytorch #safetensors #xlm-roberta #token-classification #license-apache-2.0 #autotrain_compatible #endpoints_compatible #has_space #region-us \n"
] | [
58
] | [
"passage: TAGS\n#transformers #pytorch #safetensors #xlm-roberta #token-classification #license-apache-2.0 #autotrain_compatible #endpoints_compatible #has_space #region-us \n"
] | [
-0.04810155928134918,
0.10204604268074036,
-0.005396390333771706,
0.020656462758779526,
0.06080026924610138,
-0.016024697571992874,
0.09403523057699203,
0.12315107882022858,
-0.0030904023442417383,
-0.016773169860243797,
0.13309644162654877,
0.19492410123348236,
-0.0362766832113266,
0.09519743174314499,
-0.07382426410913467,
-0.17005138099193573,
0.11874746531248093,
0.019153641536831856,
-0.07529579848051071,
0.09177584946155548,
0.11906066536903381,
-0.07929843664169312,
0.043138742446899414,
-0.01626863144338131,
-0.06287295371294022,
0.012493797577917576,
0.0380583181977272,
-0.12056832015514374,
0.10563503205776215,
0.017210032790899277,
0.1283600926399231,
0.0629294365644455,
-0.01892874203622341,
-0.1454375833272934,
0.026483258232474327,
0.056694258004426956,
-0.07502986490726471,
0.06359267234802246,
0.041950326412916183,
-0.03851458430290222,
-0.011965434066951275,
-0.009961418807506561,
-0.007812743075191975,
0.03144824132323265,
-0.070323146879673,
-0.26807692646980286,
-0.09430080652236938,
0.07597673684358597,
0.04852725565433502,
0.0747261717915535,
0.04207798093557358,
0.23720239102840424,
-0.14293527603149414,
0.064118392765522,
0.16293562948703766,
-0.35274243354797363,
0.002151834312826395,
0.12968626618385315,
0.08593049645423889,
0.009679427370429039,
-0.019366316497325897,
0.045793142169713974,
0.05726173520088196,
0.009137926623225212,
0.10063857585191727,
-0.05332191661000252,
-0.12006720155477524,
0.05383596196770668,
-0.09401758015155792,
-0.06760431826114655,
0.22284351289272308,
-0.004822236020117998,
0.04038142412900925,
-0.03760325536131859,
-0.08530069142580032,
0.007587138097733259,
0.010846749879419804,
0.03749086335301399,
0.027181556448340416,
0.0603875033557415,
0.07331743091344833,
0.010265556164085865,
-0.14309342205524445,
0.020256580784916878,
-0.194442018866539,
0.15184907615184784,
0.013736395165324211,
0.07726635783910751,
-0.11276558041572571,
0.05735142156481743,
0.056368276476860046,
-0.11510730534791946,
0.011648164130747318,
-0.0717860758304596,
0.07591553032398224,
0.028565460816025734,
-0.05632920563220978,
0.08794576674699783,
0.1451423615217209,
0.20256531238555908,
-0.017826881259679794,
-0.022984089329838753,
-0.012509209103882313,
0.10980980843305588,
0.0042441911064088345,
0.07819780707359314,
-0.04868036136031151,
-0.007149258628487587,
0.09805028885602951,
-0.05461784824728966,
0.0807420164346695,
-0.03476832062005997,
-0.11044186353683472,
-0.026630209758877754,
0.053227346390485764,
0.14241714775562286,
0.07714171707630157,
0.04882562905550003,
-0.018876200541853905,
0.04306664690375328,
0.1556028574705124,
-0.07886213064193726,
0.03177721053361893,
-0.005548116751015186,
0.04282202199101448,
-0.0015195786254480481,
0.02809874899685383,
0.020801493898034096,
-0.003528639441356063,
0.05648347735404968,
-0.0663246363401413,
-0.012197588570415974,
-0.03514985740184784,
-0.07364765554666519,
0.08613824099302292,
-0.09783252328634262,
0.05019089952111244,
-0.18274365365505219,
-0.0884333997964859,
0.024062741547822952,
0.04573667794466019,
0.03616013750433922,
-0.07267658412456512,
0.10729881376028061,
-0.058281365782022476,
0.02293114922940731,
-0.07853522896766663,
-0.008967717178165913,
-0.08620624989271164,
0.04840264096856117,
-0.0819697231054306,
0.03226938471198082,
-0.12531130015850067,
0.044131141155958176,
-0.1287001669406891,
0.035667527467012405,
-0.048937439918518066,
-0.07595585286617279,
-0.11427339166402817,
0.16694916784763336,
-0.019735833629965782,
-0.0506199486553669,
0.014190888963639736,
0.025973450392484665,
-0.04443259909749031,
0.05329563096165657,
-0.11201272904872894,
-0.025538092479109764,
0.15725791454315186,
-0.126078799366951,
-0.17435358464717865,
0.06345826387405396,
0.019999725744128227,
-0.03198724985122681,
0.009127262979745865,
0.15199169516563416,
0.08171214908361435,
-0.07211233675479889,
-0.0016369377262890339,
0.13729187846183777,
-0.08454256504774094,
-0.16632245481014252,
0.057150695472955704,
0.0009980942122638226,
-0.08895958960056305,
0.04262470453977585,
-0.05664058402180672,
0.06873321533203125,
-0.007521932944655418,
-0.09310589730739594,
-0.09719998389482498,
-0.04954950883984566,
0.01813672110438347,
0.014985866844654083,
0.04663383588194847,
-0.07264689356088638,
-0.035625237971544266,
-0.026829054579138756,
0.05975676327943802,
0.03955906257033348,
0.03449201211333275,
-0.06797415763139725,
0.12148956954479218,
-0.03137547895312309,
0.004904383793473244,
-0.12379758805036545,
-0.06497407704591751,
-0.003529386129230261,
-0.02368396893143654,
-0.0357392355799675,
0.14870700240135193,
0.03263578191399574,
-0.043958235532045364,
0.017450721934437752,
-0.04038349911570549,
0.11954068392515182,
0.08493588119745255,
-0.03241994231939316,
-0.11717727780342102,
0.008368168026208878,
-0.07594490051269531,
0.030013518407940865,
-0.01700650155544281,
0.03569841757416725,
0.04182504490017891,
0.10575264692306519,
-0.0260250736027956,
0.10575810074806213,
-0.0180522371083498,
0.010212749242782593,
-0.07519945502281189,
-0.020945295691490173,
0.0836905837059021,
0.03395423665642738,
-0.044978879392147064,
0.19751043617725372,
-0.13127745687961578,
0.3563273251056671,
0.21358253061771393,
-0.136466845870018,
0.04614415392279625,
0.03201963007450104,
-0.04232538118958473,
0.00895586796104908,
0.0074968342669308186,
0.015234698541462421,
-0.08881977945566177,
-0.028438718989491463,
0.1224791631102562,
-0.05615358427166939,
-0.04744571074843407,
-0.008046691305935383,
-0.08374946564435959,
-0.03752008080482483,
0.03805781155824661,
0.09131012111902237,
-0.1335677206516266,
0.20767417550086975,
0.3692258298397064,
-0.03788558021187782,
0.03479096293449402,
-0.08154942095279694,
0.03173565864562988,
0.0031751939095556736,
-0.040541473776102066,
-0.040261827409267426,
0.056533653289079666,
-0.057786598801612854,
0.01029125228524208,
0.09915412217378616,
0.04320300370454788,
0.04036587104201317,
-0.1558099389076233,
-0.056430187076330185,
0.0206658523529768,
0.010763787664473057,
-0.040017060935497284,
0.08616533875465393,
0.01944509521126747,
0.1035384014248848,
-0.051561255007982254,
-0.14580224454402924,
0.09188424050807953,
0.0030431642662733793,
-0.04331819713115692,
0.13248319923877716,
-0.16734378039836884,
-0.2568871080875397,
-0.07976587861776352,
-0.06102273613214493,
-0.02265181392431259,
0.0025239884853363037,
0.11044941842556,
-0.0362434946000576,
-0.07068187743425369,
-0.04551403596997261,
-0.09650858491659164,
-0.019255176186561584,
0.04958727955818176,
-0.03591577336192131,
0.06668675690889359,
0.024785099551081657,
-0.12440451234579086,
-0.054515160620212555,
0.015252797864377499,
-0.06854401528835297,
0.09375201165676117,
0.021711930632591248,
0.07644601911306381,
0.1391725093126297,
-0.00046706825378350914,
0.00020196974219288677,
-0.02932087890803814,
0.13889071345329285,
-0.025360828265547752,
0.03353741765022278,
0.21598809957504272,
0.0024156454019248486,
0.07638689875602722,
0.1712256669998169,
0.03279378265142441,
-0.02438906952738762,
-0.00413799611851573,
-0.039991267025470734,
-0.09471455216407776,
-0.20288842916488647,
-0.12812133133411407,
-0.09709630161523819,
0.027334144338965416,
0.01449171919375658,
0.10844037681818008,
0.1259949952363968,
0.0792083889245987,
-0.00771489879116416,
-0.05524720624089241,
-0.06054630130529404,
0.03791447728872299,
0.18171758949756622,
-0.025048768147826195,
0.1288384348154068,
-0.10521077364683151,
-0.06290043145418167,
0.08685964345932007,
0.11318731307983398,
0.12738072872161865,
0.08983228355646133,
-0.03379683196544647,
0.0951032042503357,
0.2392687350511551,
0.09238827973604202,
0.10701219737529755,
0.00926894135773182,
-0.03811180219054222,
-0.03567755967378616,
-0.024731632322072983,
0.009214182384312153,
0.0484791025519371,
-0.009558423422276974,
-0.09500893950462341,
-0.01698162406682968,
-0.14094112813472748,
0.10334081947803497,
0.14467087388038635,
0.033117834478616714,
-0.1350516676902771,
0.03678826987743378,
0.10183806717395782,
-0.005763430148363113,
-0.0031515900045633316,
0.08340919762849808,
-0.0021821395494043827,
-0.05339859053492546,
0.06547587364912033,
-0.014162479899823666,
0.08068256825208664,
0.04816921800374985,
0.05498078837990761,
-0.03189997002482414,
-0.09917286783456802,
0.05623293295502663,
0.10942695289850235,
-0.22439302504062653,
0.22273774445056915,
-0.017784588038921356,
-0.05793139338493347,
-0.07555122673511505,
0.02220121957361698,
0.0680520087480545,
0.215934157371521,
0.09233751893043518,
0.04194173216819763,
-0.2026979774236679,
-0.07976313680410385,
-0.045651961117982864,
0.031590238213539124,
-0.002691044472157955,
0.011862801387906075,
-0.013521580956876278,
-0.06156787648797035,
-0.00955251045525074,
0.03170091286301613,
0.09847313165664673,
-0.03472014144062996,
-0.11995561420917511,
0.05164264142513275,
0.12138713896274567,
-0.021375639364123344,
-0.08757232874631882,
-0.0345332957804203,
-0.2171175628900528,
0.16929355263710022,
-0.05703825503587723,
-0.04166330024600029,
-0.0890008732676506,
-0.14455176889896393,
0.07347511500120163,
-0.05240984261035919,
0.07262688875198364,
-0.07514255493879318,
0.024948520585894585,
-0.05833938345313072,
-0.1695331335067749,
0.09656199812889099,
-0.1569700539112091,
-0.05740039795637131,
-0.03640338405966759,
0.10416091978549957,
-0.1396765410900116,
0.026652349159121513,
0.04080357775092125,
0.04249432682991028,
-0.11752652376890182,
-0.12392058223485947,
0.005868642590939999,
0.007025537081062794,
0.06544698029756546,
-0.0051324754022061825,
-0.05897446721792221,
-0.08803706616163254,
0.06370052695274353,
-0.026918189600110054,
0.19744817912578583,
0.21266457438468933,
-0.13300436735153198,
0.12161821126937866,
0.13387848436832428,
-0.034452229738235474,
-0.33641213178634644,
-0.13796858489513397,
-0.18220460414886475,
-0.07838284224271774,
0.053514983505010605,
-0.04553517326712608,
0.12893721461296082,
0.06534972786903381,
-0.11225225031375885,
0.07829222828149796,
-0.1931767761707306,
-0.05955839157104492,
0.20311103761196136,
-0.028146108612418175,
0.2815980017185211,
-0.1474391520023346,
-0.037867650389671326,
-0.028086651116609573,
-0.11815372854471207,
0.12656384706497192,
-0.14801949262619019,
0.04467175155878067,
-0.013131652027368546,
-0.025808027014136314,
-0.007772805634886026,
-0.08148573338985443,
0.1617133915424347,
-0.048333533108234406,
0.07549106329679489,
-0.10480960458517075,
-0.041256945580244064,
0.10109824687242508,
-0.051725324243307114,
0.0461030937731266,
-0.15783946216106415,
0.04605969041585922,
-0.07231217622756958,
0.016800519078969955,
-0.08139187842607498,
0.11865820735692978,
-0.0015672959852963686,
-0.057018645107746124,
-0.06498821079730988,
-0.002626055618748069,
0.01426383201032877,
-0.022110844030976295,
0.2353346198797226,
0.0332256443798542,
0.1229877769947052,
0.1903907060623169,
0.008984021842479706,
-0.17607563734054565,
-0.022987669333815575,
-0.036681417375802994,
-0.07207442075014114,
0.09437435865402222,
-0.12964938580989838,
0.06977112591266632,
0.07577592879533768,
-0.05456892028450966,
0.036114417016506195,
0.08078714460134506,
0.022457482293248177,
-0.0453292652964592,
0.15365447103977203,
-0.16153240203857422,
-0.04921970143914223,
0.018753908574581146,
0.09865862131118774,
0.05223026126623154,
0.09283425658941269,
0.11812431365251541,
0.005648118443787098,
-0.03126349300146103,
0.007209232077002525,
0.04018039256334305,
-0.07541359961032867,
0.042670298367738724,
0.0794605240225792,
0.04211079329252243,
-0.10624908655881882,
0.0677090436220169,
0.028823435306549072,
-0.09243829548358917,
-0.03892749175429344,
0.04766732081770897,
-0.11049123108386993,
-0.16056446731090546,
0.0017149678897112608,
0.010418599471449852,
-0.0862424448132515,
-0.1112491562962532,
-0.037480078637599945,
-0.15592116117477417,
0.03617347776889801,
0.11734550446271896,
0.1262860745191574,
0.08695460855960846,
0.03230917081236839,
-0.06353041529655457,
0.016021285206079483,
0.010622008703649044,
-0.05886073410511017,
0.04497964307665825,
-0.16968563199043274,
0.014201292768120766,
0.018307318910956383,
0.11337897926568985,
-0.0629182979464531,
0.017274025827646255,
-0.10391808301210403,
0.00425126263871789,
-0.12623853981494904,
-0.02524501457810402,
-0.09670401364564896,
-0.024594632908701897,
0.031986769288778305,
-0.08645114302635193,
-0.04129522293806076,
0.02415592409670353,
-0.11947072297334671,
-0.005522633902728558,
-0.00691169174388051,
0.06676941365003586,
-0.10665388405323029,
-0.0641062930226326,
0.0657954290509224,
-0.016814056783914566,
0.08910993486642838,
0.03678768128156662,
-0.05739479884505272,
0.054973054677248,
-0.1275656670331955,
-0.10652108490467072,
0.10729502141475677,
0.042362358421087265,
0.04313679039478302,
-0.0341603085398674,
-0.004480630625039339,
0.11187991499900818,
-0.026634562760591507,
0.03163063898682594,
0.001090580364689231,
-0.12336817383766174,
-0.005619116593152285,
-0.01983303762972355,
-0.10387059301137924,
0.006828885991126299,
-0.1314500868320465,
0.16017426550388336,
-0.014935307204723358,
0.17607274651527405,
0.0036753618624061346,
0.025919530540704727,
-0.09697248786687851,
0.014161599799990654,
-0.06921262294054031,
-0.18705090880393982,
-0.12115778028964996,
-0.009990480728447437,
-0.025426818057894707,
-0.01893296279013157,
0.29451221227645874,
0.06374102830886841,
-0.09300044924020767,
0.06210872158408165,
0.053613822907209396,
0.036400653421878815,
0.032252661883831024,
0.2022637277841568,
0.04002213478088379,
-0.009932263754308224,
-0.07455156743526459,
-0.008838419802486897,
0.010714966803789139,
-0.1438462883234024,
0.05999894067645073,
0.13427846133708954,
0.10211420059204102,
0.05750151723623276,
0.0571875125169754,
-0.05048799887299538,
-0.12236762791872025,
-0.1371733695268631,
-0.02207917347550392,
0.089662566781044,
-0.017177924513816833,
0.01865992322564125,
0.1719287484884262,
-0.02705511264503002,
0.025917042046785355,
-0.052965786308050156,
0.03058914840221405,
-0.1721230000257492,
-0.10061726719141006,
-0.07286566495895386,
-0.10930642485618591,
-0.02681104652583599,
-0.03739209100604057,
-0.010472838766872883,
0.11068622767925262,
0.022990606725215912,
-0.02794523723423481,
0.018597399815917015,
-0.01211224403232336,
0.006782439537346363,
-0.012118764221668243,
0.009494221769273281,
-0.014203673228621483,
-0.020289042964577675,
-0.02644064649939537,
-0.09921848028898239,
-0.02093251794576645,
-0.04960164055228233,
0.014724034816026688,
-0.030509227886795998,
0.05821140110492706,
-0.11900816857814789,
-0.061106692999601364,
-0.0648505911231041,
0.012877224013209343,
-0.012587010860443115,
0.140665203332901,
0.007728686556220055,
0.036121949553489685,
0.06894908100366592,
0.17914260923862457,
-0.07971756160259247,
-0.15991517901420593,
-0.044031254947185516,
0.17592214047908783,
0.01641629822552204,
0.05662679672241211,
-0.0000015593344642184093,
0.020997239276766777,
-0.06309737265110016,
0.23311661183834076,
0.3200075328350067,
-0.03748782351613045,
0.08510784059762955,
-0.03149699047207832,
0.0024489753413945436,
-0.002776137785986066,
0.09420506656169891,
0.146942138671875,
0.21832163631916046,
-0.08458508551120758,
-0.025485312566161156,
-0.06215896084904671,
0.014771117828786373,
-0.16470298171043396,
0.03705695644021034,
-0.025736667215824127,
-0.06826434284448624,
-0.013616128824651241,
0.041743408888578415,
-0.048018891364336014,
0.08672324568033218,
0.040633268654346466,
-0.12523432075977325,
-0.046892281621694565,
0.02925579808652401,
0.21625187993049622,
-0.0186574999243021,
0.0293616633862257,
-0.053333915770053864,
-0.0433349683880806,
0.06245170906186104,
-0.031198890879750252,
-0.14548803865909576,
-0.03456417843699455,
0.09394251555204391,
0.0126262828707695,
0.16162964701652527,
-0.0061514712870121,
0.04926228150725365,
0.1050998643040657,
0.04754653945565224,
-0.12517936527729034,
0.11541435867547989,
0.040481340140104294,
-0.09475989639759064,
-0.00920127984136343,
-0.1214781105518341,
-0.016575617715716362,
-0.05113225430250168,
0.03553523123264313,
-0.09802287817001343,
0.047487303614616394,
-0.01195776741951704,
-0.048945121467113495,
-0.0301933903247118,
0.010255242697894573,
-0.039224009960889816,
0.07613328099250793,
-0.004399786237627268,
-0.03975946828722954,
-0.045915551483631134,
-0.0437953844666481,
-0.011294434778392315,
0.014325075782835484,
-0.1494038701057434,
-0.07306446880102158,
-0.017055822536349297,
0.025214873254299164,
0.06154734641313553,
0.02790086902678013,
-0.034969884902238846,
-0.05290883034467697,
-0.07019667327404022,
-0.00936220958828926,
-0.13111771643161774,
0.009987265802919865,
0.11219377815723419,
0.0039358423091471195,
-0.012254585511982441,
-0.04252874478697777,
-0.008793781511485577,
0.028141207993030548,
-0.08288129419088364,
-0.07530098408460617
] |
null | null | transformers |
This is a demo using the models from:
```
@inproceedings{zhang-etal-2023-escoxlm,
title = "{ESCOXLM}-{R}: Multilingual Taxonomy-driven Pre-training for the Job Market Domain",
author = "Zhang, Mike and
van der Goot, Rob and
Plank, Barbara",
editor = "Rogers, Anna and
Boyd-Graber, Jordan and
Okazaki, Naoaki",
booktitle = "Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers)",
month = jul,
year = "2023",
address = "Toronto, Canada",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/2023.acl-long.662",
doi = "10.18653/v1/2023.acl-long.662",
pages = "11871--11890",
abstract = "The increasing number of benchmarks for Natural Language Processing (NLP) tasks in the computational job market domain highlights the demand for methods that can handle job-related tasks such as skill extraction, skill classification, job title classification, and de-identification. While some approaches have been developed that are specific to the job market domain, there is a lack of generalized, multilingual models and benchmarks for these tasks. In this study, we introduce a language model called ESCOXLM-R, based on XLM-R-large, which uses domain-adaptive pre-training on the European Skills, Competences, Qualifications and Occupations (ESCO) taxonomy, covering 27 languages. The pre-training objectives for ESCOXLM-R include dynamic masked language modeling and a novel additional objective for inducing multilingual taxonomical ESCO relations. We comprehensively evaluate the performance of ESCOXLM-R on 6 sequence labeling and 3 classification tasks in 4 languages and find that it achieves state-of-the-art results on 6 out of 9 datasets. Our analysis reveals that ESCOXLM-R performs better on short spans and outperforms XLM-R-large on entity-level and surface-level span-F1, likely due to ESCO containing short skill and occupation titles, and encoding information on the entity-level.",
}
```
Note that there is another endpoint, namely `jjzha/escoxlmr_skill_extraction`.
Knowledge can be seen as hard skills and Skills are both soft and applied skills. | {"license": "apache-2.0"} | token-classification | jjzha/escoxlmr_knowledge_extraction | [
"transformers",
"pytorch",
"xlm-roberta",
"token-classification",
"license:apache-2.0",
"autotrain_compatible",
"endpoints_compatible",
"has_space",
"region:us"
] | 2023-11-11T08:20:18+00:00 | [] | [] | TAGS
#transformers #pytorch #xlm-roberta #token-classification #license-apache-2.0 #autotrain_compatible #endpoints_compatible #has_space #region-us
|
This is a demo using the models from:
Note that there is another endpoint, namely 'jjzha/escoxlmr_skill_extraction'.
Knowledge can be seen as hard skills and Skills are both soft and applied skills. | [] | [
"TAGS\n#transformers #pytorch #xlm-roberta #token-classification #license-apache-2.0 #autotrain_compatible #endpoints_compatible #has_space #region-us \n"
] | [
53
] | [
"passage: TAGS\n#transformers #pytorch #xlm-roberta #token-classification #license-apache-2.0 #autotrain_compatible #endpoints_compatible #has_space #region-us \n"
] | [
-0.03771905228495598,
0.11860328167676926,
-0.005051882471889257,
0.029957741498947144,
0.07569967210292816,
0.0031246610451489687,
0.07911686599254608,
0.14128196239471436,
-0.003624320263043046,
-0.027688361704349518,
0.12797272205352783,
0.19589844346046448,
-0.028402894735336304,
0.07261008024215698,
-0.06651028990745544,
-0.20027007162570953,
0.10228979587554932,
0.030712230131030083,
-0.10331269353628159,
0.07693535834550858,
0.12135357409715652,
-0.0664781853556633,
0.0570947527885437,
-0.006191369146108627,
-0.08680788427591324,
0.02158745937049389,
0.027263693511486053,
-0.10702777653932571,
0.09364534169435501,
0.037157271057367325,
0.10459361970424652,
0.050808168947696686,
-0.02644641324877739,
-0.14866751432418823,
0.017963675782084465,
0.03971313685178757,
-0.08151762187480927,
0.06751488149166107,
0.03531437739729881,
-0.025920333340764046,
0.017985934391617775,
0.009272734634578228,
-0.01284642145037651,
0.0358913280069828,
-0.07800403982400894,
-0.2470930516719818,
-0.10092666745185852,
0.0712733045220375,
0.02744199149310589,
0.06097887456417084,
0.051173675805330276,
0.2167893946170807,
-0.1531316637992859,
0.05595853552222252,
0.14451934397220612,
-0.343401163816452,
0.0008463453850708902,
0.15201689302921295,
0.07891161739826202,
0.012031392194330692,
-0.007042898330837488,
0.053800348192453384,
0.05951336771249771,
0.013292145915329456,
0.06234046444296837,
-0.05343463644385338,
-0.11239201575517654,
0.07534825801849365,
-0.08077867329120636,
-0.07789506763219833,
0.2518336772918701,
-0.009150692261755466,
0.05473753437399864,
-0.0075431508012115955,
-0.07858030498027802,
-0.027319027110934258,
0.01013218518346548,
0.049304015934467316,
0.040143050253391266,
0.08381350338459015,
0.08499190211296082,
-0.018213817849755287,
-0.13357317447662354,
0.019574759528040886,
-0.21369236707687378,
0.12261132150888443,
0.009583729319274426,
0.0865386426448822,
-0.11503990739583969,
0.05754715949296951,
0.03544636070728302,
-0.10693030059337616,
-0.0031888193916529417,
-0.06815735250711441,
0.05067393183708191,
0.027575138956308365,
-0.07937172055244446,
0.10064200311899185,
0.12679657340049744,
0.1976546198129654,
0.030918927863240242,
-0.011731638573110104,
-0.007407849188894033,
0.11419019103050232,
0.012544016353785992,
0.10333511978387833,
-0.04361732304096222,
-0.017021380364894867,
0.07680117338895798,
-0.09494379907846451,
0.057554811239242554,
-0.04870113730430603,
-0.15123964846134186,
-0.039681270718574524,
0.01522413082420826,
0.12423139065504074,
0.08141979575157166,
0.039875809103250504,
-0.02389085479080677,
0.018662244081497192,
0.14057010412216187,
-0.06410986185073853,
0.04951554909348488,
-0.014451386407017708,
0.02338501065969467,
0.03301861137151718,
0.03055717796087265,
0.022691024467349052,
-0.006644497625529766,
0.03661787137389183,
-0.0684904158115387,
-0.000954383285716176,
-0.04679372161626816,
-0.06710515916347504,
0.09287100285291672,
-0.1200251653790474,
0.042979273945093155,
-0.16332948207855225,
-0.08335431665182114,
0.022489890456199646,
0.060301076620817184,
0.01440400630235672,
-0.08630513399839401,
0.10016459971666336,
-0.05004902929067612,
0.041870586574077606,
-0.07719505578279495,
0.012723928317427635,
-0.08086265623569489,
0.03554113209247589,
-0.08704900741577148,
0.03625032678246498,
-0.16134031116962433,
0.0647212490439415,
-0.10951577872037888,
0.032333314418792725,
-0.03771008178591728,
-0.04453253373503685,
-0.1083817332983017,
0.1476353406906128,
-0.02241051383316517,
-0.04635339602828026,
0.014132517389953136,
0.019727032631635666,
-0.04798772558569908,
0.03388117626309395,
-0.13410291075706482,
-0.03286818787455559,
0.11683015525341034,
-0.09286315739154816,
-0.1536318063735962,
0.05114391818642616,
0.013409344479441643,
-0.027047818526625633,
-0.002715442329645157,
0.15642522275447845,
0.08886322379112244,
-0.05839512124657631,
0.02445434220135212,
0.14199255406856537,
-0.08133062720298767,
-0.1898135095834732,
0.06793195009231567,
-0.022053981199860573,
-0.08111893385648727,
0.05152313411235809,
-0.06228908151388168,
0.06802794337272644,
0.0029970169998705387,
-0.09030003845691681,
-0.09454307705163956,
-0.03846725821495056,
0.009573733434081078,
0.01375514268875122,
0.06809806078672409,
-0.05654112249612808,
-0.023390891030430794,
0.004773166496306658,
0.063225157558918,
0.06049118936061859,
0.04861081764101982,
-0.0568869523704052,
0.12186634540557861,
-0.040756016969680786,
0.007538108620792627,
-0.13594433665275574,
-0.0369393453001976,
-0.005166715011000633,
-0.023994754999876022,
-0.00907733291387558,
0.19751612842082977,
0.018953237682580948,
-0.07218172401189804,
0.023594997823238373,
-0.013878223486244678,
0.10873237252235413,
0.07777538895606995,
-0.041392792016267776,
-0.1094515398144722,
-0.0008261751499958336,
-0.06737527996301651,
0.013344593346118927,
-0.0032527295406907797,
0.030490148812532425,
0.04131314530968666,
0.10032293200492859,
-0.03947290778160095,
0.11619739979505539,
-0.02473800629377365,
0.013911259360611439,
-0.08941064774990082,
-0.013889132998883724,
0.08630141615867615,
0.03293751925230026,
-0.0394221656024456,
0.20598822832107544,
-0.10709816962480545,
0.3167397081851959,
0.21878209710121155,
-0.15482985973358154,
0.06489770114421844,
0.030625293031334877,
-0.03478172793984413,
0.005328045692294836,
0.023533973842859268,
0.02557145059108734,
-0.05562390759587288,
-0.02904452383518219,
0.1299283355474472,
-0.0417310930788517,
-0.03743727132678032,
-0.0072850980795919895,
-0.0782179906964302,
-0.044378962367773056,
0.033895790576934814,
0.14042426645755768,
-0.14231982827186584,
0.20484720170497894,
0.3768669366836548,
-0.03763864189386368,
0.04711804911494255,
-0.07367769628763199,
0.03215014189481735,
-0.0038399759214371443,
-0.06661157310009003,
-0.05149329826235771,
0.051181431859731674,
-0.09019151329994202,
0.0010561943054199219,
0.10717181116342545,
0.05792980268597603,
0.0500689297914505,
-0.1480332612991333,
-0.04730752483010292,
0.03498940169811249,
0.013888332061469555,
-0.05926571786403656,
0.09626280516386032,
0.021004697307944298,
0.08425962179899216,
-0.027332043275237083,
-0.1340492218732834,
0.09910015761852264,
0.006457792595028877,
-0.03781364858150482,
0.11071839183568954,
-0.18084242939949036,
-0.2409254014492035,
-0.09985636174678802,
-0.09671942889690399,
-0.04508502036333084,
0.008269799873232841,
0.11280493438243866,
-0.03921322897076607,
-0.06303335726261139,
-0.017252083867788315,
-0.08985387533903122,
-0.06460559368133545,
0.04079006612300873,
-0.05097993463277817,
0.06140672042965889,
0.01030444260686636,
-0.12275159358978271,
-0.0633319616317749,
0.01244641188532114,
-0.049317289143800735,
0.07794547826051712,
0.00046061919420026243,
0.08259814977645874,
0.15247443318367004,
0.003049079794436693,
0.019426172599196434,
-0.017007607966661453,
0.1451757699251175,
-0.023957759141921997,
0.016804710030555725,
0.19917716085910797,
0.01819920539855957,
0.07371562719345093,
0.17024432122707367,
0.03486451506614685,
-0.022116154432296753,
-0.022831236943602562,
-0.03391571715474129,
-0.10072216391563416,
-0.20407415926456451,
-0.13265717029571533,
-0.12836645543575287,
0.006400055717676878,
0.021596282720565796,
0.11276882886886597,
0.14838282763957977,
0.06384684890508652,
0.00851767510175705,
-0.009438298642635345,
-0.08965224027633667,
0.04074616730213165,
0.23133207857608795,
-0.025326812639832497,
0.12573805451393127,
-0.11847519129514694,
-0.0443100780248642,
0.1017402932047844,
0.12938959896564484,
0.13876070082187653,
0.11643510311841965,
0.009070539847016335,
0.09306792169809341,
0.2239486128091812,
0.10166213661432266,
0.08161937445402145,
0.029564250260591507,
-0.021911174058914185,
-0.04193098470568657,
-0.012306598015129566,
0.005356567911803722,
0.06051631644368172,
0.05694594979286194,
-0.12419571727514267,
-0.019854625687003136,
-0.16016660630702972,
0.08872658759355545,
0.15981489419937134,
0.0335841178894043,
-0.12094844877719879,
0.04609961435198784,
0.09702768176794052,
-0.010457716882228851,
-0.0093975979834795,
0.06581737101078033,
-0.04158368706703186,
-0.07949870824813843,
0.06630558520555496,
-0.0002738603507168591,
0.1040487214922905,
0.03807789087295532,
0.05258273333311081,
-0.014062250033020973,
-0.11244343966245651,
0.06896479427814484,
0.11489345133304596,
-0.23871546983718872,
0.2211221605539322,
-0.017947738990187645,
-0.0867246463894844,
-0.07870236784219742,
0.02114241197705269,
0.07121168076992035,
0.21808870136737823,
0.05444442480802536,
0.04834995046257973,
-0.2167394906282425,
-0.0805424153804779,
-0.0295714121311903,
0.022636573761701584,
-0.0009592974092811346,
0.0006061666645109653,
-0.027529535815119743,
-0.06392285227775574,
-0.003927804529666901,
0.02593347057700157,
0.13466069102287292,
-0.018103282898664474,
-0.1448192298412323,
0.06616973876953125,
0.11503053456544876,
-0.041328880935907364,
-0.05779435858130455,
-0.031308386474847794,
-0.21056419610977173,
0.17990440130233765,
-0.05163867026567459,
-0.036407604813575745,
-0.09877745807170868,
-0.13840821385383606,
0.08166521787643433,
-0.054671965539455414,
0.067447230219841,
-0.08632196485996246,
0.018132038414478302,
-0.04880928620696068,
-0.17816144227981567,
0.10085399448871613,
-0.13521002233028412,
-0.034737180918455124,
-0.03895702585577965,
0.08579446375370026,
-0.15600575506687164,
0.04492397606372833,
0.03192925453186035,
0.04706372693181038,
-0.1313057541847229,
-0.1253587007522583,
0.009710432961583138,
0.015516986139118671,
0.04129506275057793,
-0.008332697674632072,
-0.04633130505681038,
-0.030866270884871483,
0.07487807422876358,
-0.024678600952029228,
0.22155341506004333,
0.19343292713165283,
-0.1427605003118515,
0.15536725521087646,
0.10422467440366745,
-0.067888043820858,
-0.32001957297325134,
-0.12856034934520721,
-0.17971085011959076,
-0.06969881802797318,
0.0372748039662838,
-0.08962485194206238,
0.11231203377246857,
0.061083897948265076,
-0.10642680525779724,
0.07264749705791473,
-0.19799832999706268,
-0.05654055252671242,
0.18826209008693695,
-0.06927480548620224,
0.28947535157203674,
-0.12569192051887512,
-0.049316272139549255,
-0.03857245668768883,
-0.13892431557178497,
0.1320236772298813,
-0.10838373005390167,
0.06570214033126831,
-0.02737509086728096,
-0.00026058300863951445,
-0.00711017707362771,
-0.06191588193178177,
0.16972795128822327,
-0.020192164927721024,
0.06166025251150131,
-0.10636082291603088,
-0.04803946241736412,
0.09996163100004196,
-0.06142145022749901,
0.03424568474292755,
-0.1407727599143982,
0.023690059781074524,
-0.11455956101417542,
0.02253008261322975,
-0.0789516493678093,
0.10933235287666321,
0.002455970738083124,
-0.0453597716987133,
-0.07613738626241684,
-0.013671738095581532,
0.028919395059347153,
-0.01999286189675331,
0.2375836968421936,
0.034965891391038895,
0.0791734829545021,
0.18012447655200958,
-0.005032229702919722,
-0.17839600145816803,
-0.05805215612053871,
-0.04880803823471069,
-0.06144421547651291,
0.09278029203414917,
-0.15613502264022827,
0.06202547624707222,
0.08705106377601624,
-0.06051810830831528,
0.043332625180482864,
0.08298306912183762,
0.017177818343043327,
-0.04066759720444679,
0.14518257975578308,
-0.12561292946338654,
-0.03024493157863617,
0.013758724555373192,
0.07233860343694687,
0.06650073826313019,
0.05955450236797333,
0.10748521983623505,
0.015355058014392853,
-0.02504854090511799,
0.02151799388229847,
0.02767426334321499,
-0.08553776144981384,
0.03711051866412163,
0.08199898898601532,
0.02798006683588028,
-0.12300116568803787,
0.08089737594127655,
0.04464827850461006,
-0.08738481998443604,
-0.0321948379278183,
0.05727030336856842,
-0.10251569002866745,
-0.16236546635627747,
-0.0055168261751532555,
0.020328372716903687,
-0.13306039571762085,
-0.09887975454330444,
-0.028578003868460655,
-0.13758042454719543,
0.05405957251787186,
0.07732131332159042,
0.13534042239189148,
0.07906879484653473,
-0.001744828186929226,
-0.07266290485858917,
0.028561700135469437,
-0.014379706233739853,
-0.06402495503425598,
0.04864977300167084,
-0.15809416770935059,
-0.0010124188847839832,
0.015515862964093685,
0.13992761075496674,
-0.05569396913051605,
-0.005104354582726955,
-0.09498874843120575,
0.006952066905796528,
-0.1453801989555359,
-0.044133856892585754,
-0.09205951541662216,
-0.024702072143554688,
0.04323761165142059,
-0.09094884991645813,
-0.054807648062705994,
0.02078191563487053,
-0.14416103065013885,
-0.0188150592148304,
-0.017496280372142792,
0.08393044024705887,
-0.08831438422203064,
-0.059280186891555786,
0.07800117135047913,
-0.008653856813907623,
0.07881280779838562,
0.037147536873817444,
-0.04678957536816597,
0.05588835850358009,
-0.07256350666284561,
-0.12305530905723572,
0.09644611179828644,
0.05700578913092613,
0.06568467617034912,
-0.033438485115766525,
0.002620924962684512,
0.1102755144238472,
-0.01238086074590683,
0.026340991258621216,
-0.009408697485923767,
-0.1305256485939026,
-0.03229823336005211,
-0.04402439296245575,
-0.11542890965938568,
0.01715559884905815,
-0.11487932503223419,
0.16365237534046173,
0.02468959055840969,
0.1693369597196579,
0.02724934183061123,
0.03606690466403961,
-0.07791395485401154,
0.012696657329797745,
-0.07030314952135086,
-0.1695459932088852,
-0.10908001661300659,
-0.03669600561261177,
-0.033164430409669876,
-0.02017386071383953,
0.30941784381866455,
0.08325140178203583,
-0.0910675972700119,
0.05348433181643486,
0.07954013347625732,
0.02299705147743225,
0.0210904348641634,
0.19967009127140045,
0.064925417304039,
0.0012432989897206426,
-0.04680553078651428,
0.015033595263957977,
0.010331022553145885,
-0.09434641152620316,
0.06466034054756165,
0.1179443821310997,
0.12598395347595215,
0.06399901211261749,
0.061359915882349014,
-0.062051914632320404,
-0.14041341841220856,
-0.12180057168006897,
-0.0028181395027786493,
0.11431750655174255,
-0.02648102678358555,
0.020709224045276642,
0.13525527715682983,
-0.04413292557001114,
0.0381803996860981,
-0.0499509759247303,
0.03237161412835121,
-0.17613473534584045,
-0.10655763745307922,
-0.0693458765745163,
-0.12207570672035217,
-0.032149963080883026,
-0.022137511521577835,
0.023363681510090828,
0.13056989014148712,
0.01912050135433674,
-0.03254847601056099,
-0.03213788568973541,
-0.04243990033864975,
-0.010999608784914017,
-0.01728556863963604,
-0.006968221161514521,
-0.010033950209617615,
-0.04746405407786369,
-0.011448176577687263,
-0.10754688084125519,
-0.026993073523044586,
-0.048431675881147385,
0.025324145331978798,
-0.019284343346953392,
0.044285163283348083,
-0.12130802869796753,
-0.06346190720796585,
-0.06438436359167099,
0.01149523165076971,
-0.011694569140672684,
0.15758511424064636,
0.009988544508814812,
0.04157400503754616,
0.06316260248422623,
0.1610877960920334,
-0.08991511911153793,
-0.13184064626693726,
-0.054949644953012466,
0.16289983689785004,
0.03358036279678345,
0.054372478276491165,
-0.006780925672501326,
0.019254926592111588,
-0.0846576914191246,
0.24070671200752258,
0.3376332223415375,
-0.048172567039728165,
0.06474438309669495,
-0.011047162115573883,
-0.0007674011867493391,
0.01705217733979225,
0.10220128297805786,
0.12737098336219788,
0.1895703375339508,
-0.08611650764942169,
-0.031185271218419075,
-0.06860966235399246,
0.004582991357892752,
-0.1546250283718109,
0.05441111698746681,
-0.0170358307659626,
-0.09150175750255585,
-0.009320559911429882,
0.04159349203109741,
-0.06993246078491211,
0.10485763847827911,
0.0583164282143116,
-0.12877921760082245,
-0.04987542703747749,
0.02873321808874607,
0.20112477242946625,
-0.010433648712933064,
0.03823253884911537,
-0.06056622415781021,
-0.051247093826532364,
0.09701813012361526,
-0.03279513493180275,
-0.18893632292747498,
-0.05535666644573212,
0.1200813502073288,
0.011085712350904942,
0.12831009924411774,
-0.013369216583669186,
0.046974219381809235,
0.10563159734010696,
0.0791199803352356,
-0.11919349431991577,
0.086155965924263,
0.029507199302315712,
-0.09073933213949203,
-0.01416090689599514,
-0.12665969133377075,
-0.018626701086759567,
-0.06380987167358398,
0.04354340583086014,
-0.08430659770965576,
0.04896596819162369,
-0.021952755749225616,
-0.028184685856103897,
-0.030673623085021973,
-0.0088086212053895,
-0.05032896623015404,
0.074576735496521,
0.015372338704764843,
-0.03525747358798981,
-0.06177057325839996,
-0.04788915812969208,
-0.02992371842265129,
0.020090634003281593,
-0.15638147294521332,
-0.10359211266040802,
0.009791024029254913,
0.010556376539170742,
0.05433587729930878,
0.025509323924779892,
-0.013698051683604717,
-0.06037236005067825,
-0.06130288541316986,
-0.004369688685983419,
-0.1043596863746643,
0.0331888273358345,
0.10059166699647903,
-0.0030202101916074753,
-0.011968966573476791,
-0.042687274515628815,
-0.009711187332868576,
0.013110371306538582,
-0.08770331740379333,
-0.06746895611286163
] |
null | null | transformers |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
should probably proofread and complete it, then remove this comment. -->
# Finetuned-distilbert-model
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.6764
- Accuracy: 0.7439
## Model description
More information needed
## Intended uses & limitations
More information needed
## Training and evaluation data
More information needed
## Training procedure
### Training hyperparameters
The following hyperparameters were used during training:
- learning_rate: 1e-05
- train_batch_size: 8
- eval_batch_size: 8
- seed: 42
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
- lr_scheduler_type: linear
- num_epochs: 5
### Training results
| Training Loss | Epoch | Step | Validation Loss | Accuracy |
|:-------------:|:-----:|:----:|:---------------:|:--------:|
| 0.8509 | 0.5 | 500 | 0.7672 | 0.7088 |
| 0.7428 | 1.0 | 1000 | 0.7060 | 0.7258 |
| 0.6385 | 1.5 | 1500 | 0.7193 | 0.7378 |
| 0.6474 | 2.0 | 2000 | 0.6764 | 0.7439 |
| 0.5148 | 2.51 | 2500 | 0.7223 | 0.7398 |
| 0.509 | 3.01 | 3000 | 0.7403 | 0.7393 |
| 0.4318 | 3.51 | 3500 | 0.8034 | 0.7398 |
| 0.4156 | 4.01 | 4000 | 0.8056 | 0.7424 |
| 0.3682 | 4.51 | 4500 | 0.8447 | 0.7393 |
### Framework versions
- Transformers 4.35.0
- Pytorch 2.1.0+cu118
- Datasets 2.14.6
- Tokenizers 0.14.1
| {"license": "apache-2.0", "tags": ["generated_from_trainer"], "metrics": ["accuracy"], "base_model": "distilbert-base-uncased", "model-index": [{"name": "Finetuned-distilbert-model", "results": []}]} | text-classification | Aliyyah/Finetuned-distilbert-model | [
"transformers",
"tensorboard",
"safetensors",
"distilbert",
"text-classification",
"generated_from_trainer",
"base_model:distilbert-base-uncased",
"license:apache-2.0",
"autotrain_compatible",
"endpoints_compatible",
"region:us"
] | 2023-11-11T08:23:03+00:00 | [] | [] | TAGS
#transformers #tensorboard #safetensors #distilbert #text-classification #generated_from_trainer #base_model-distilbert-base-uncased #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us
| Finetuned-distilbert-model
==========================
This model is a fine-tuned version of distilbert-base-uncased on an unknown dataset.
It achieves the following results on the evaluation set:
* Loss: 0.6764
* Accuracy: 0.7439
Model description
-----------------
More information needed
Intended uses & limitations
---------------------------
More information needed
Training and evaluation data
----------------------------
More information needed
Training procedure
------------------
### Training hyperparameters
The following hyperparameters were used during training:
* learning\_rate: 1e-05
* train\_batch\_size: 8
* eval\_batch\_size: 8
* seed: 42
* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
* lr\_scheduler\_type: linear
* num\_epochs: 5
### Training results
### Framework versions
* Transformers 4.35.0
* Pytorch 2.1.0+cu118
* Datasets 2.14.6
* Tokenizers 0.14.1
| [
"### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 1e-05\n* train\\_batch\\_size: 8\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 5",
"### Training results",
"### Framework versions\n\n\n* Transformers 4.35.0\n* Pytorch 2.1.0+cu118\n* Datasets 2.14.6\n* Tokenizers 0.14.1"
] | [
"TAGS\n#transformers #tensorboard #safetensors #distilbert #text-classification #generated_from_trainer #base_model-distilbert-base-uncased #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us \n",
"### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 1e-05\n* train\\_batch\\_size: 8\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 5",
"### Training results",
"### Framework versions\n\n\n* Transformers 4.35.0\n* Pytorch 2.1.0+cu118\n* Datasets 2.14.6\n* Tokenizers 0.14.1"
] | [
72,
98,
4,
33
] | [
"passage: TAGS\n#transformers #tensorboard #safetensors #distilbert #text-classification #generated_from_trainer #base_model-distilbert-base-uncased #license-apache-2.0 #autotrain_compatible #endpoints_compatible #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 1e-05\n* train\\_batch\\_size: 8\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 5### Training results### Framework versions\n\n\n* Transformers 4.35.0\n* Pytorch 2.1.0+cu118\n* Datasets 2.14.6\n* Tokenizers 0.14.1"
] | [
-0.10129265487194061,
0.11047805845737457,
-0.0026879915967583656,
0.11406800895929337,
0.1435217559337616,
0.016245458275079727,
0.16030381619930267,
0.11560926586389542,
-0.06556811928749084,
0.048627179116010666,
0.12628287076950073,
0.12707838416099548,
0.015337243676185608,
0.11950532346963882,
-0.08020830899477005,
-0.21482490003108978,
0.01083451323211193,
0.024123502895236015,
-0.05598035454750061,
0.11419396102428436,
0.09370505064725876,
-0.1227312758564949,
0.08926514536142349,
-0.019008902832865715,
-0.16765637695789337,
0.006064116023480892,
0.016132710501551628,
-0.049836043268442154,
0.12352417409420013,
0.03183433786034584,
0.13162493705749512,
0.035965658724308014,
0.08396369218826294,
-0.19347599148750305,
0.01071564108133316,
0.06154528632760048,
-0.005818567238748074,
0.08059430122375488,
0.03663374483585358,
-0.008144339546561241,
0.07100294530391693,
-0.094539575278759,
0.06357304006814957,
0.018295567482709885,
-0.1274154633283615,
-0.20977675914764404,
-0.08602077513933182,
0.03653881698846817,
0.095122329890728,
0.07800251990556717,
-0.0127944964915514,
0.1149526983499527,
-0.053261641412973404,
0.09708867222070694,
0.20253443717956543,
-0.306937575340271,
-0.06137308105826378,
0.04970927909016609,
0.026132382452487946,
0.09199967235326767,
-0.10014156997203827,
-0.0187901109457016,
0.05938180163502693,
0.02425283007323742,
0.12644153833389282,
-0.02401840128004551,
-0.05598164349794388,
-0.00021917307458352298,
-0.1438145637512207,
-0.01838335022330284,
0.15641583502292633,
0.0528695248067379,
-0.04548351466655731,
-0.05144612491130829,
-0.07167045772075653,
-0.13635975122451782,
-0.04077819362282753,
-0.008357228711247444,
0.048194363713264465,
-0.02221580035984516,
-0.05864953622221947,
-0.017555467784404755,
-0.09594640135765076,
-0.06311729550361633,
-0.05295507609844208,
0.13734270632266998,
0.03536242991685867,
0.002574017969891429,
-0.008626794442534447,
0.10081488639116287,
-0.025030985474586487,
-0.1465855836868286,
0.02131388708949089,
0.019445132464170456,
0.002808281686156988,
-0.05044823884963989,
-0.0503157414495945,
-0.07842880487442017,
0.02276124432682991,
0.15843293070793152,
-0.0477416068315506,
0.0548907071352005,
0.00261607370339334,
0.045514434576034546,
-0.10095236450433731,
0.16960853338241577,
-0.04073484614491463,
-0.037795450538396835,
0.02116026170551777,
0.09336245805025101,
0.05412667617201805,
-0.01684756390750408,
-0.13040480017662048,
0.036423344165086746,
0.10659230500459671,
0.020425301045179367,
-0.052533116191625595,
0.06908643990755081,
-0.058554839342832565,
-0.014471207745373249,
0.04033937305212021,
-0.09544895589351654,
0.027437373995780945,
0.0064273979514837265,
-0.054178960621356964,
-0.04312758520245552,
0.03062095306813717,
0.020580871030688286,
0.002701062709093094,
0.10596971958875656,
-0.08126983791589737,
0.009371187537908554,
-0.08213453739881516,
-0.13041986525058746,
0.01695389300584793,
-0.09514455497264862,
0.020556621253490448,
-0.10950661450624466,
-0.1780930608510971,
-0.016960129141807556,
0.06330886483192444,
-0.028719285503029823,
-0.03233941271901131,
-0.06477673351764679,
-0.07860399037599564,
0.017647597938776016,
-0.011523829773068428,
0.06675738841295242,
-0.06555801630020142,
0.09550917893648148,
0.034294746816158295,
0.06540725380182266,
-0.06114328280091286,
0.042409371584653854,
-0.09945044666528702,
0.039516106247901917,
-0.18021047115325928,
0.03723092004656792,
-0.07252687960863113,
0.0730479508638382,
-0.08078714460134506,
-0.0719798356294632,
0.006215955596417189,
-0.0018402852583676577,
0.07316925376653671,
0.09869104623794556,
-0.17638614773750305,
-0.062419675290584564,
0.15346091985702515,
-0.08623737096786499,
-0.14286130666732788,
0.13781991600990295,
-0.05873958021402359,
0.04101015254855156,
0.0645645260810852,
0.19190075993537903,
0.07868946343660355,
-0.08437784761190414,
0.002702212193980813,
0.002206725999712944,
0.07164478302001953,
-0.030184390023350716,
0.06746767461299896,
-0.002375161275267601,
0.004558751825243235,
0.014641279354691505,
-0.050235066562891006,
0.04917094111442566,
-0.07674689590930939,
-0.09099797904491425,
-0.04109577089548111,
-0.1026720181107521,
0.06258458644151688,
0.05202660337090492,
0.061931658536195755,
-0.11095826327800751,
-0.08798843622207642,
0.058762796223163605,
0.07563009858131409,
-0.07476324588060379,
0.023324070498347282,
-0.0681338682770729,
0.09212437272071838,
-0.0592484250664711,
-0.013436827808618546,
-0.15857844054698944,
-0.04652135446667671,
0.020454946905374527,
-0.00020667329954449087,
0.015293548814952374,
-0.0068214768543839455,
0.06982416659593582,
0.08232336491346359,
-0.06669379770755768,
-0.03351058438420296,
-0.013104469515383244,
0.017225760966539383,
-0.1259399801492691,
-0.20296956598758698,
-0.015402384102344513,
-0.034814562648534775,
0.14708319306373596,
-0.2349868267774582,
0.052718568593263626,
0.001482766238041222,
0.08938431739807129,
0.040855616331100464,
-0.012348697520792484,
-0.03801390901207924,
0.07106252759695053,
-0.0504935123026371,
-0.07034805417060852,
0.06067512929439545,
0.008095772936940193,
-0.10462790727615356,
-0.046772632747888565,
-0.15155856311321259,
0.18355399370193481,
0.13361404836177826,
-0.07991296797990799,
-0.0739116221666336,
0.006988597102463245,
-0.03417597711086273,
-0.0273329745978117,
-0.0357537642121315,
0.003413439728319645,
0.12775570154190063,
-0.005736394319683313,
0.15394502878189087,
-0.08415225893259048,
-0.029977241531014442,
0.022829879075288773,
-0.04374946281313896,
0.00949432235211134,
0.11728227138519287,
0.08852384984493256,
-0.10139384120702744,
0.14892861247062683,
0.1964576691389084,
-0.09244126081466675,
0.13031546771526337,
-0.04684942588210106,
-0.05204842612147331,
-0.023182371631264687,
0.008927528746426105,
0.014811108820140362,
0.10976723581552505,
-0.1208689957857132,
-0.002180235693231225,
0.009427495300769806,
0.01478835940361023,
0.01082684751600027,
-0.21358279883861542,
-0.023543886840343475,
0.042157575488090515,
-0.050947412848472595,
0.0013406145153567195,
-0.024403758347034454,
-0.009602652862668037,
0.09750478714704514,
-0.004417767748236656,
-0.09177008271217346,
0.0454840324819088,
-0.005643866490572691,
-0.07661862671375275,
0.20420604944229126,
-0.09317506104707718,
-0.14265021681785583,
-0.13476954400539398,
-0.07125044614076614,
-0.05668738856911659,
0.03109397552907467,
0.06470880657434464,
-0.06953743100166321,
-0.040686432272195816,
-0.11213270574808121,
-0.008343685418367386,
0.031586386263370514,
0.020758772268891335,
0.020919889211654663,
-0.004706723615527153,
0.08314546197652817,
-0.09950141608715057,
-0.007476131431758404,
-0.035108935087919235,
-0.05125122144818306,
0.036999836564064026,
0.024316178634762764,
0.11350465565919876,
0.15141677856445312,
-0.021744554862380028,
-0.004648989532142878,
-0.027972089126706123,
0.22635088860988617,
-0.060540832579135895,
-0.007417113520205021,
0.12291290611028671,
-0.032149747014045715,
0.0558786615729332,
0.14154386520385742,
0.06375802308320999,
-0.09792319685220718,
0.01891319453716278,
0.034365709871053696,
-0.034086812287569046,
-0.21568019688129425,
-0.0344373993575573,
-0.03858660161495209,
0.008592828176915646,
0.0970025286078453,
0.030456485226750374,
0.023662131279706955,
0.06686273962259293,
0.0229643564671278,
0.07934295386075974,
-0.008340287022292614,
0.07095682621002197,
0.11128498613834381,
0.03906622901558876,
0.13090907037258148,
-0.04773447662591934,
-0.05018177628517151,
0.04007692635059357,
-0.00527634983882308,
0.20458325743675232,
0.022119736298918724,
0.14524002373218536,
0.052753202617168427,
0.1588694304227829,
-0.003356493543833494,
0.05913493409752846,
-0.010844475589692593,
-0.036867544054985046,
-0.015471617691218853,
-0.05041027069091797,
-0.02677561715245247,
0.03426013141870499,
-0.08245979249477386,
0.05743774026632309,
-0.10809602588415146,
0.013948055915534496,
0.061947159469127655,
0.23606112599372864,
0.059852343052625656,
-0.32203733921051025,
-0.08889780193567276,
0.030384913086891174,
-0.02018381468951702,
-0.02000841498374939,
0.029284588992595673,
0.12377816438674927,
-0.047868549823760986,
0.03824600577354431,
-0.06909866631031036,
0.08628742396831512,
-0.041546981781721115,
0.047117237001657486,
0.055208876729011536,
0.08363544195890427,
-0.011898107826709747,
0.06758975982666016,
-0.28547585010528564,
0.2604551613330841,
0.01780325546860695,
0.06733419746160507,
-0.045835740864276886,
0.0008921670378185809,
0.03897020220756531,
0.09645543247461319,
0.07037351280450821,
-0.016100138425827026,
-0.05318276211619377,
-0.1914513260126114,
-0.06512119621038437,
0.023184631019830704,
0.09802193939685822,
-0.04205194488167763,
0.10239110141992569,
-0.02862413227558136,
0.0007047809194773436,
0.07977765798568726,
-0.012647506780922413,
-0.08202482759952545,
-0.10132554918527603,
-0.008431979455053806,
0.037981171160936356,
-0.03435547277331352,
-0.07951878011226654,
-0.09726560860872269,
-0.13805779814720154,
0.1532851904630661,
-0.07061920315027237,
-0.036075662821531296,
-0.10339313745498657,
0.051432445645332336,
0.05691402405500412,
-0.08074669539928436,
0.04307745024561882,
0.0056373924016952515,
0.08250070363283157,
0.01781308837234974,
-0.06469020247459412,
0.1233481615781784,
-0.07289692759513855,
-0.17908312380313873,
-0.0712234377861023,
0.10801263898611069,
0.02003811113536358,
0.043698444962501526,
-0.007411915808916092,
0.01182593498378992,
-0.016891470178961754,
-0.07876928150653839,
0.023853817954659462,
0.005522502586245537,
0.051035430282354355,
0.0330159068107605,
-0.06011734902858734,
-0.009517822414636612,
-0.06063324585556984,
-0.02682904712855816,
0.14968903362751007,
0.28925418853759766,
-0.084607794880867,
0.009874250739812851,
0.06037580966949463,
-0.06904219835996628,
-0.20722579956054688,
0.03528624027967453,
0.026667596772313118,
0.002383903134614229,
0.046515706926584244,
-0.14996680617332458,
0.10148242861032486,
0.10048441588878632,
-0.026928292587399483,
0.11983620375394821,
-0.29119887948036194,
-0.13587389886379242,
0.13150565326213837,
0.14620646834373474,
0.1200142353773117,
-0.1635577231645584,
-0.04395182803273201,
-0.0379960723221302,
-0.10813408344984055,
0.10340440273284912,
-0.13269253075122833,
0.11083155125379562,
-0.006749602034687996,
0.04868040978908539,
0.006004427559673786,
-0.05295540764927864,
0.13708777725696564,
0.004068970214575529,
0.11685015261173248,
-0.06356155872344971,
-0.015758639201521873,
0.05384550616145134,
-0.06299442052841187,
0.019981270655989647,
-0.1177990734577179,
0.0424482598900795,
-0.06307579576969147,
-0.02170138992369175,
-0.04486572742462158,
0.032241787761449814,
-0.0395890474319458,
-0.0581744983792305,
-0.04246639087796211,
0.02566707506775856,
0.046183135360479355,
-0.006867606658488512,
0.16847418248653412,
0.011528445407748222,
0.14705541729927063,
0.14525079727172852,
0.07383420318365097,
-0.0705593004822731,
-0.015080439858138561,
-0.009761527180671692,
-0.03761067986488342,
0.06287918239831924,
-0.15986722707748413,
0.041532691568136215,
0.12644200026988983,
0.010718749836087227,
0.15158230066299438,
0.07127261161804199,
-0.028006095439195633,
0.013816994614899158,
0.06230558827519417,
-0.16237877309322357,
-0.10352136194705963,
-0.006889233831316233,
-0.0355108268558979,
-0.12183297425508499,
0.06012000888586044,
0.12852728366851807,
-0.06560323387384415,
0.007768347859382629,
-0.005790095776319504,
0.0167083777487278,
-0.0327010340988636,
0.1824537217617035,
0.07011844962835312,
0.04683980345726013,
-0.08706243336200714,
0.09335697442293167,
0.05728017911314964,
-0.08146528899669647,
0.010277493856847286,
0.04580790176987648,
-0.08809749782085419,
-0.04894619062542915,
0.04270999878644943,
0.1929030418395996,
-0.02879657782614231,
-0.048115503042936325,
-0.15005932748317719,
-0.11666712164878845,
0.054949622601270676,
0.17297518253326416,
0.09948685765266418,
0.01617436856031418,
-0.03525032103061676,
0.011004856787621975,
-0.10948015749454498,
0.11968434602022171,
0.04652070254087448,
0.09101046621799469,
-0.15587864816188812,
0.11515599489212036,
-0.005489918403327465,
0.010425461456179619,
-0.02413090504705906,
0.04541708156466484,
-0.11819668114185333,
-0.008562209084630013,
-0.14639072120189667,
-0.002344316802918911,
-0.022155947983264923,
0.009964278899133205,
0.001864764140918851,
-0.052160222083330154,
-0.05528330057859421,
0.011037847958505154,
-0.09952279925346375,
-0.025655191391706467,
0.03508478030562401,
0.05309222638607025,
-0.1213095635175705,
-0.04872743412852287,
0.01942845806479454,
-0.07496064156293869,
0.07137475907802582,
0.017419898882508278,
0.01906432770192623,
0.04679245501756668,
-0.1842319518327713,
0.021873101592063904,
0.05715126916766167,
0.017432041466236115,
0.046656250953674316,
-0.08181536942720413,
-0.02115803398191929,
-0.005853812210261822,
0.042460232973098755,
0.01991834118962288,
0.08770807832479477,
-0.12345700711011887,
0.013574011623859406,
-0.028427043929696083,
-0.06046124920248985,
-0.05252983421087265,
0.035374753177165985,
0.0860048234462738,
0.01158372312784195,
0.20846953988075256,
-0.09802969545125961,
0.019803393632173538,
-0.20193663239479065,
0.004624301567673683,
0.0016510155983269215,
-0.1176738291978836,
-0.11348950117826462,
-0.05417485162615776,
0.0512072816491127,
-0.06340008974075317,
0.1363106518983841,
0.007738230749964714,
0.02739495411515236,
0.03589564189314842,
-0.03089188225567341,
0.035836413502693176,
0.029331624507904053,
0.215265691280365,
0.032293882220983505,
-0.042013019323349,
0.013260682113468647,
0.02661227434873581,
0.11362117528915405,
0.0817529708147049,
0.16654333472251892,
0.1670723855495453,
-0.04620613530278206,
0.10025304555892944,
0.041987400501966476,
-0.050101134926080704,
-0.13605476915836334,
0.06936615705490112,
-0.03985946998000145,
0.10900221019983292,
-0.017202913761138916,
0.19427677989006042,
0.0879296213388443,
-0.15531951189041138,
0.017748642712831497,
-0.04996966943144798,
-0.08600197732448578,
-0.10733053088188171,
-0.058325935155153275,
-0.0981239527463913,
-0.144903302192688,
-0.006754130125045776,
-0.11241713166236877,
0.013060170225799084,
0.10322821140289307,
0.004508747719228268,
-0.016452891752123833,
0.16594499349594116,
0.0036930209025740623,
0.035400040447711945,
0.06724300235509872,
-0.00006543816562043503,
-0.04605335742235184,
-0.07279004901647568,
-0.0963384211063385,
0.008963079191744328,
-0.010663437657058239,
0.02326231636106968,
-0.047073766589164734,
-0.023395942524075508,
0.04224684461951256,
-0.009402691386640072,
-0.11059131473302841,
0.012500908225774765,
0.026753325015306473,
0.047322798520326614,
0.054643504321575165,
0.013407879509031773,
0.00770247308537364,
0.0018540752353146672,
0.218773752450943,
-0.07667256146669388,
-0.06484820693731308,
-0.09878922998905182,
0.21317058801651,
0.02555762603878975,
0.010526255704462528,
0.009425812400877476,
-0.09395266324281693,
0.030193965882062912,
0.20941470563411713,
0.1887950599193573,
-0.09668464958667755,
-0.00019505708769429475,
-0.015351862646639347,
-0.008694380521774292,
-0.03481016308069229,
0.0927995964884758,
0.1111370399594307,
0.0072826906107366085,
-0.07072711735963821,
-0.05069221183657646,
-0.03597484156489372,
-0.009412896819412708,
-0.053294818848371506,
0.05612565577030182,
0.031214402988553047,
0.00999858882278204,
-0.04890117049217224,
0.059832263737916946,
-0.0382944718003273,
-0.1072029247879982,
0.05102336406707764,
-0.19580045342445374,
-0.15405908226966858,
-0.02014160342514515,
0.11387637257575989,
-0.006576027721166611,
0.04419035091996193,
-0.032608553767204285,
-0.00129432394169271,
0.07261039316654205,
-0.030183542519807816,
-0.059244077652692795,
-0.06309567391872406,
0.05751717463135719,
-0.10910306125879288,
0.22464023530483246,
-0.03275159373879433,
0.042541973292827606,
0.12830951809883118,
0.04867303743958473,
-0.0717264786362648,
0.08280128240585327,
0.045798931270837784,
-0.05849284306168556,
0.03481556475162506,
0.08470247685909271,
-0.04203467816114426,
0.11902318149805069,
0.06266380101442337,
-0.13162386417388916,
0.010703827254474163,
-0.03612733632326126,
-0.09535187482833862,
-0.053684134036302567,
-0.041537895798683167,
-0.058287132531404495,
0.13203930854797363,
0.18793052434921265,
-0.036394163966178894,
0.010906679555773735,
-0.04106973484158516,
0.015955429524183273,
0.06578772515058517,
0.038062311708927155,
-0.03623807802796364,
-0.2264166623353958,
0.028429022058844566,
0.061594270169734955,
-0.0008681350736878812,
-0.28299739956855774,
-0.08346757292747498,
-0.011066021397709846,
-0.04316673055291176,
-0.09655112773180008,
0.09035276621580124,
0.11687438189983368,
0.05175289511680603,
-0.06405807286500931,
-0.086834616959095,
-0.07497073709964752,
0.15690888464450836,
-0.12723854184150696,
-0.09738102555274963
] |
null | null | peft |
# Model Card for Model ID
<!-- Provide a quick summary of what the model is/does. -->
## Model Details
### Model Description
<!-- Provide a longer summary of what this model is. -->
- **Developed by:** [More Information Needed]
- **Funded by [optional]:** [More Information Needed]
- **Shared by [optional]:** [More Information Needed]
- **Model type:** [More Information Needed]
- **Language(s) (NLP):** [More Information Needed]
- **License:** [More Information Needed]
- **Finetuned from model [optional]:** [More Information Needed]
### Model Sources [optional]
<!-- Provide the basic links for the model. -->
- **Repository:** [More Information Needed]
- **Paper [optional]:** [More Information Needed]
- **Demo [optional]:** [More Information Needed]
## Uses
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
### Direct Use
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
[More Information Needed]
### Downstream Use [optional]
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
[More Information Needed]
### Out-of-Scope Use
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
[More Information Needed]
## Bias, Risks, and Limitations
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
[More Information Needed]
### Recommendations
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
## How to Get Started with the Model
Use the code below to get started with the model.
[More Information Needed]
## Training Details
### Training Data
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
[More Information Needed]
### Training Procedure
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
#### Preprocessing [optional]
[More Information Needed]
#### Training Hyperparameters
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
#### Speeds, Sizes, Times [optional]
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
[More Information Needed]
## Evaluation
<!-- This section describes the evaluation protocols and provides the results. -->
### Testing Data, Factors & Metrics
#### Testing Data
<!-- This should link to a Dataset Card if possible. -->
[More Information Needed]
#### Factors
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
[More Information Needed]
#### Metrics
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
[More Information Needed]
### Results
[More Information Needed]
#### Summary
## Model Examination [optional]
<!-- Relevant interpretability work for the model goes here -->
[More Information Needed]
## Environmental Impact
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
- **Hardware Type:** [More Information Needed]
- **Hours used:** [More Information Needed]
- **Cloud Provider:** [More Information Needed]
- **Compute Region:** [More Information Needed]
- **Carbon Emitted:** [More Information Needed]
## Technical Specifications [optional]
### Model Architecture and Objective
[More Information Needed]
### Compute Infrastructure
[More Information Needed]
#### Hardware
[More Information Needed]
#### Software
[More Information Needed]
## Citation [optional]
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
**BibTeX:**
[More Information Needed]
**APA:**
[More Information Needed]
## Glossary [optional]
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
[More Information Needed]
## More Information [optional]
[More Information Needed]
## Model Card Authors [optional]
[More Information Needed]
## Model Card Contact
[More Information Needed]
## Training procedure
The following `bitsandbytes` quantization config was used during training:
- quant_method: bitsandbytes
- load_in_8bit: False
- load_in_4bit: True
- llm_int8_threshold: 6.0
- llm_int8_skip_modules: None
- llm_int8_enable_fp32_cpu_offload: False
- llm_int8_has_fp16_weight: False
- bnb_4bit_quant_type: nf4
- bnb_4bit_use_double_quant: True
- bnb_4bit_compute_dtype: bfloat16
### Framework versions
- PEFT 0.6.3.dev0 | {"library_name": "peft", "base_model": "berkeley-nest/Starling-LM-7B-alpha"} | null | binhquoc/llama-zalo | [
"peft",
"safetensors",
"arxiv:1910.09700",
"base_model:berkeley-nest/Starling-LM-7B-alpha",
"region:us"
] | 2023-11-11T08:24:13+00:00 | [
"1910.09700"
] | [] | TAGS
#peft #safetensors #arxiv-1910.09700 #base_model-berkeley-nest/Starling-LM-7B-alpha #region-us
|
# Model Card for Model ID
## Model Details
### Model Description
- Developed by:
- Funded by [optional]:
- Shared by [optional]:
- Model type:
- Language(s) (NLP):
- License:
- Finetuned from model [optional]:
### Model Sources [optional]
- Repository:
- Paper [optional]:
- Demo [optional]:
## Uses
### Direct Use
### Downstream Use [optional]
### Out-of-Scope Use
## Bias, Risks, and Limitations
### Recommendations
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
## How to Get Started with the Model
Use the code below to get started with the model.
## Training Details
### Training Data
### Training Procedure
#### Preprocessing [optional]
#### Training Hyperparameters
- Training regime:
#### Speeds, Sizes, Times [optional]
## Evaluation
### Testing Data, Factors & Metrics
#### Testing Data
#### Factors
#### Metrics
### Results
#### Summary
## Model Examination [optional]
## Environmental Impact
Carbon emissions can be estimated using the Machine Learning Impact calculator presented in Lacoste et al. (2019).
- Hardware Type:
- Hours used:
- Cloud Provider:
- Compute Region:
- Carbon Emitted:
## Technical Specifications [optional]
### Model Architecture and Objective
### Compute Infrastructure
#### Hardware
#### Software
[optional]
BibTeX:
APA:
## Glossary [optional]
## More Information [optional]
## Model Card Authors [optional]
## Model Card Contact
## Training procedure
The following 'bitsandbytes' quantization config was used during training:
- quant_method: bitsandbytes
- load_in_8bit: False
- load_in_4bit: True
- llm_int8_threshold: 6.0
- llm_int8_skip_modules: None
- llm_int8_enable_fp32_cpu_offload: False
- llm_int8_has_fp16_weight: False
- bnb_4bit_quant_type: nf4
- bnb_4bit_use_double_quant: True
- bnb_4bit_compute_dtype: bfloat16
### Framework versions
- PEFT 0.6.3.dev0 | [
"# Model Card for Model ID",
"## Model Details",
"### Model Description\n\n\n\n\n\n- Developed by: \n- Funded by [optional]: \n- Shared by [optional]: \n- Model type: \n- Language(s) (NLP): \n- License: \n- Finetuned from model [optional]:",
"### Model Sources [optional]\n\n\n\n- Repository: \n- Paper [optional]: \n- Demo [optional]:",
"## Uses",
"### Direct Use",
"### Downstream Use [optional]",
"### Out-of-Scope Use",
"## Bias, Risks, and Limitations",
"### Recommendations\n\n\n\nUsers (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.",
"## How to Get Started with the Model\n\nUse the code below to get started with the model.",
"## Training Details",
"### Training Data",
"### Training Procedure",
"#### Preprocessing [optional]",
"#### Training Hyperparameters\n\n- Training regime:",
"#### Speeds, Sizes, Times [optional]",
"## Evaluation",
"### Testing Data, Factors & Metrics",
"#### Testing Data",
"#### Factors",
"#### Metrics",
"### Results",
"#### Summary",
"## Model Examination [optional]",
"## Environmental Impact\n\n\n\nCarbon emissions can be estimated using the Machine Learning Impact calculator presented in Lacoste et al. (2019).\n\n- Hardware Type: \n- Hours used: \n- Cloud Provider: \n- Compute Region: \n- Carbon Emitted:",
"## Technical Specifications [optional]",
"### Model Architecture and Objective",
"### Compute Infrastructure",
"#### Hardware",
"#### Software\n\n\n\n[optional]\n\n\n\nBibTeX:\n\n\n\nAPA:",
"## Glossary [optional]",
"## More Information [optional]",
"## Model Card Authors [optional]",
"## Model Card Contact",
"## Training procedure\n\nThe following 'bitsandbytes' quantization config was used during training:\n- quant_method: bitsandbytes\n- load_in_8bit: False\n- load_in_4bit: True\n- llm_int8_threshold: 6.0\n- llm_int8_skip_modules: None\n- llm_int8_enable_fp32_cpu_offload: False\n- llm_int8_has_fp16_weight: False\n- bnb_4bit_quant_type: nf4\n- bnb_4bit_use_double_quant: True\n- bnb_4bit_compute_dtype: bfloat16",
"### Framework versions\n\n- PEFT 0.6.3.dev0"
] | [
"TAGS\n#peft #safetensors #arxiv-1910.09700 #base_model-berkeley-nest/Starling-LM-7B-alpha #region-us \n",
"# Model Card for Model ID",
"## Model Details",
"### Model Description\n\n\n\n\n\n- Developed by: \n- Funded by [optional]: \n- Shared by [optional]: \n- Model type: \n- Language(s) (NLP): \n- License: \n- Finetuned from model [optional]:",
"### Model Sources [optional]\n\n\n\n- Repository: \n- Paper [optional]: \n- Demo [optional]:",
"## Uses",
"### Direct Use",
"### Downstream Use [optional]",
"### Out-of-Scope Use",
"## Bias, Risks, and Limitations",
"### Recommendations\n\n\n\nUsers (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.",
"## How to Get Started with the Model\n\nUse the code below to get started with the model.",
"## Training Details",
"### Training Data",
"### Training Procedure",
"#### Preprocessing [optional]",
"#### Training Hyperparameters\n\n- Training regime:",
"#### Speeds, Sizes, Times [optional]",
"## Evaluation",
"### Testing Data, Factors & Metrics",
"#### Testing Data",
"#### Factors",
"#### Metrics",
"### Results",
"#### Summary",
"## Model Examination [optional]",
"## Environmental Impact\n\n\n\nCarbon emissions can be estimated using the Machine Learning Impact calculator presented in Lacoste et al. (2019).\n\n- Hardware Type: \n- Hours used: \n- Cloud Provider: \n- Compute Region: \n- Carbon Emitted:",
"## Technical Specifications [optional]",
"### Model Architecture and Objective",
"### Compute Infrastructure",
"#### Hardware",
"#### Software\n\n\n\n[optional]\n\n\n\nBibTeX:\n\n\n\nAPA:",
"## Glossary [optional]",
"## More Information [optional]",
"## Model Card Authors [optional]",
"## Model Card Contact",
"## Training procedure\n\nThe following 'bitsandbytes' quantization config was used during training:\n- quant_method: bitsandbytes\n- load_in_8bit: False\n- load_in_4bit: True\n- llm_int8_threshold: 6.0\n- llm_int8_skip_modules: None\n- llm_int8_enable_fp32_cpu_offload: False\n- llm_int8_has_fp16_weight: False\n- bnb_4bit_quant_type: nf4\n- bnb_4bit_use_double_quant: True\n- bnb_4bit_compute_dtype: bfloat16",
"### Framework versions\n\n- PEFT 0.6.3.dev0"
] | [
44,
6,
3,
54,
28,
3,
4,
9,
9,
10,
42,
20,
3,
4,
5,
9,
11,
13,
3,
12,
5,
4,
5,
3,
4,
9,
53,
9,
8,
6,
3,
14,
8,
7,
9,
4,
164,
13
] | [
"passage: TAGS\n#peft #safetensors #arxiv-1910.09700 #base_model-berkeley-nest/Starling-LM-7B-alpha #region-us \n# Model Card for Model ID## Model Details### Model Description\n\n\n\n\n\n- Developed by: \n- Funded by [optional]: \n- Shared by [optional]: \n- Model type: \n- Language(s) (NLP): \n- License: \n- Finetuned from model [optional]:### Model Sources [optional]\n\n\n\n- Repository: \n- Paper [optional]: \n- Demo [optional]:## Uses### Direct Use### Downstream Use [optional]### Out-of-Scope Use## Bias, Risks, and Limitations### Recommendations\n\n\n\nUsers (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.## How to Get Started with the Model\n\nUse the code below to get started with the model.## Training Details### Training Data### Training Procedure#### Preprocessing [optional]#### Training Hyperparameters\n\n- Training regime:#### Speeds, Sizes, Times [optional]## Evaluation### Testing Data, Factors & Metrics#### Testing Data#### Factors#### Metrics### Results#### Summary## Model Examination [optional]## Environmental Impact\n\n\n\nCarbon emissions can be estimated using the Machine Learning Impact calculator presented in Lacoste et al. (2019).\n\n- Hardware Type: \n- Hours used: \n- Cloud Provider: \n- Compute Region: \n- Carbon Emitted:## Technical Specifications [optional]### Model Architecture and Objective### Compute Infrastructure#### Hardware#### Software\n\n\n\n[optional]\n\n\n\nBibTeX:\n\n\n\nAPA:## Glossary [optional]## More Information [optional]## Model Card Authors [optional]## Model Card Contact"
] | [
-0.10657499730587006,
0.20474885404109955,
-0.0029955192003399134,
0.027738463133573532,
0.07246299833059311,
0.011240245774388313,
0.05925806984305382,
0.130486860871315,
0.034868378192186356,
0.12235841900110245,
0.06419183313846588,
0.1263909488916397,
0.11112850159406662,
0.21827156841754913,
0.004710470791906118,
-0.16877473890781403,
0.012950888834893703,
-0.06222505122423172,
0.027494778856635094,
0.11959651857614517,
0.1396549642086029,
-0.09856460243463516,
0.07673339545726776,
-0.02992725744843483,
-0.0005424626870080829,
-0.028894338756799698,
-0.0708523541688919,
-0.012488127686083317,
0.053794972598552704,
0.03208228945732117,
0.0525510311126709,
-0.009660214185714722,
0.08070879429578781,
-0.2754440903663635,
0.018078148365020752,
0.04027361050248146,
-0.006933963857591152,
0.08197353780269623,
0.08994840830564499,
-0.04974745959043503,
0.12694624066352844,
-0.0211015772074461,
0.13242195546627045,
0.08403473347425461,
-0.10460661351680756,
-0.2198062241077423,
-0.056514911353588104,
0.08008076995611191,
0.1775771528482437,
0.0714016854763031,
-0.04339029639959335,
0.11679478734731674,
-0.062170397490262985,
0.028052356094121933,
0.07337860763072968,
-0.10805536806583405,
-0.05886485055088997,
0.06385475397109985,
0.1398380696773529,
0.08405106514692307,
-0.12279261648654938,
-0.030621707439422607,
0.03738781809806824,
0.04378221556544304,
0.06085578724741936,
0.009114369750022888,
0.14957883954048157,
0.034363746643066406,
-0.14772923290729523,
-0.04945335164666176,
0.11587067693471909,
0.008449236862361431,
-0.040099646896123886,
-0.21912848949432373,
-0.0006358168320730329,
-0.08486124128103256,
-0.04355473071336746,
-0.04698105901479721,
0.038532793521881104,
0.013007923029363155,
0.12398376315832138,
-0.05398046225309372,
-0.0820193886756897,
-0.015998929738998413,
0.11508168280124664,
0.06484728306531906,
0.014229908585548401,
-0.023142006248235703,
0.004240380134433508,
0.11859031766653061,
0.060579657554626465,
-0.1293778270483017,
-0.060990434139966965,
-0.06125754863023758,
-0.033133428543806076,
-0.022024130448698997,
0.04630811884999275,
0.031436365097761154,
0.05259203910827637,
0.27759912610054016,
-0.008779690600931644,
0.05943429470062256,
0.028049694374203682,
0.02417568303644657,
0.027477581053972244,
0.10569463670253754,
-0.02449667826294899,
-0.1844077855348587,
-0.010981583036482334,
0.1016341969370842,
0.004667207133024931,
-0.03368605673313141,
-0.05996830016374588,
0.033619336783885956,
0.0356002040207386,
0.12666426599025726,
0.11466240882873535,
-0.024486107751727104,
-0.07352887094020844,
-0.053785376250743866,
0.20745383203029633,
-0.14994123578071594,
0.04971524700522423,
0.025182779878377914,
-0.006629920564591885,
-0.07297391444444656,
0.008819131180644035,
0.0178294125944376,
-0.029168326407670975,
0.08170107752084732,
-0.06749238073825836,
-0.04552546143531799,
-0.11653129011392593,
-0.040890131145715714,
0.03831058368086815,
-0.008504104800522327,
-0.04226085543632507,
-0.03494182601571083,
-0.0758577436208725,
-0.10385201871395111,
0.1030234694480896,
-0.054590482264757156,
-0.05424109473824501,
-0.03300964832305908,
-0.06951668113470078,
0.019826633855700493,
0.03383185341954231,
0.07388542592525482,
-0.026939403265714645,
0.048318810760974884,
-0.011730038560926914,
0.07610604912042618,
0.07559537887573242,
0.038704436272382736,
-0.08696544915437698,
0.06442493200302124,
-0.1888771504163742,
0.07372172921895981,
-0.07829123735427856,
0.045798830687999725,
-0.16440725326538086,
0.0018479019636288285,
-0.001955440966412425,
0.03380048647522926,
0.04406625032424927,
0.15154872834682465,
-0.21142132580280304,
-0.035915471613407135,
0.16962222754955292,
-0.10104305297136307,
-0.12794654071331024,
0.03668995574116707,
-0.03894568607211113,
0.17735300958156586,
0.03730401024222374,
0.0277557410299778,
0.08271300792694092,
-0.1549948751926422,
-0.019280212000012398,
-0.02409866452217102,
0.008576393127441406,
0.060660798102617264,
0.07705198228359222,
-0.08494039624929428,
-0.001361711765639484,
0.010136125609278679,
-0.051505785435438156,
-0.01939685456454754,
-0.03782987594604492,
-0.10173629224300385,
0.009918900206685066,
-0.08577639609575272,
0.006364820059388876,
0.006076454184949398,
-0.09756340086460114,
-0.010866845957934856,
-0.14952442049980164,
-0.04052611067891121,
0.07865596562623978,
0.005822575651109219,
-0.00791190005838871,
-0.08602384477853775,
0.05402924865484238,
-0.044181425124406815,
-0.014951156452298164,
-0.14914758503437042,
-0.004843289498239756,
0.023726701736450195,
-0.1311894953250885,
0.019857069477438927,
-0.1217334121465683,
0.0661471039056778,
0.005987814627587795,
-0.049798376858234406,
-0.03748062998056412,
0.010219392366707325,
-0.011383811943233013,
-0.07513183355331421,
-0.23357374966144562,
-0.026961347088217735,
-0.05758388713002205,
0.14068089425563812,
-0.22934266924858093,
0.04024171084165573,
-0.003909803926944733,
0.1113806813955307,
0.011906696483492851,
-0.059226006269454956,
0.023774882778525352,
-0.057636916637420654,
-0.029652472585439682,
-0.06591758877038956,
-0.00041670750943012536,
-0.004494942724704742,
-0.03350665792822838,
0.023289566859602928,
-0.12996633350849152,
-0.07429824024438858,
0.09242846816778183,
0.05924617871642113,
-0.1445338875055313,
0.007152359001338482,
-0.04079718515276909,
-0.05899117514491081,
-0.0630284920334816,
-0.07211257517337799,
0.08091451227664948,
0.048754818737506866,
0.04846727102994919,
-0.0851212590932846,
-0.07634302228689194,
-0.002715606242418289,
-0.015456018969416618,
-0.022141309455037117,
0.13415707647800446,
0.09106959402561188,
-0.09835916757583618,
0.09127078950405121,
0.07238071411848068,
0.03376450389623642,
0.09255268424749374,
-0.00996700581163168,
-0.10258829593658447,
-0.02477920614182949,
0.05149694159626961,
0.01697908528149128,
0.1570264995098114,
-0.07652076333761215,
0.04357793554663658,
0.045137207955121994,
-0.05605098977684975,
0.04751571640372276,
-0.09013201296329498,
0.008464605547487736,
0.004369740840047598,
-0.01834085024893284,
0.03243931382894516,
-0.020104417577385902,
-0.003419782966375351,
0.09519241750240326,
0.06656599789857864,
0.019376231357455254,
0.00975741446018219,
-0.037639737129211426,
-0.13700032234191895,
0.17528226971626282,
-0.08812502771615982,
-0.22590312361717224,
-0.15116438269615173,
0.03783496096730232,
0.0654321238398552,
-0.009897656738758087,
0.03286023437976837,
-0.05076591297984123,
-0.09162332117557526,
-0.08860927075147629,
0.016268925741314888,
0.02897106669843197,
-0.05703979358077049,
-0.0651242658495903,
0.03791940584778786,
0.025274639949202538,
-0.12935741245746613,
0.024682000279426575,
0.047136493027210236,
0.0002955126401502639,
-0.014335398562252522,
0.03375260904431343,
0.09340076148509979,
0.21119721233844757,
0.0006048908107914031,
-0.001468065893277526,
0.05556706711649895,
0.28055712580680847,
-0.15294264256954193,
0.11901337653398514,
0.1290755718946457,
-0.06364960223436356,
0.07975853234529495,
0.1874227076768875,
0.03162434324622154,
-0.09297460317611694,
0.02172970585525036,
0.035400837659835815,
-0.03098401054739952,
-0.27076229453086853,
-0.04951518028974533,
-0.024123234674334526,
-0.07247661054134369,
0.08504333347082138,
0.0887731984257698,
0.0973530039191246,
0.02713734842836857,
-0.0665862113237381,
-0.07734780758619308,
0.0309065580368042,
0.11552991718053818,
-0.04094674810767174,
0.00603155791759491,
0.08269727975130081,
-0.048599857836961746,
0.003459060564637184,
0.08660347014665604,
-0.009172657504677773,
0.12829908728599548,
0.0623808428645134,
0.12059289216995239,
0.08144988119602203,
0.06098749116063118,
-0.005281600169837475,
0.03490869700908661,
-0.01821751333773136,
0.024338314309716225,
0.0136351827532053,
-0.09154008328914642,
0.02552677132189274,
0.11746326833963394,
0.01931912638247013,
0.017565341666340828,
0.019069356843829155,
-0.0737425833940506,
0.03723186254501343,
0.17794813215732574,
0.03214984014630318,
-0.19681525230407715,
-0.07689731568098068,
0.06384780257940292,
-0.07469027489423752,
-0.14459916949272156,
-0.012049161829054356,
0.005432620644569397,
-0.14883780479431152,
0.01171682309359312,
-0.03843681141734123,
0.11440008133649826,
-0.07214752584695816,
-0.04009411856532097,
0.09146135300397873,
0.04673856869339943,
-0.03784070163965225,
0.051697831600904465,
-0.19362185895442963,
0.11073504388332367,
0.03089703992009163,
0.06452888995409012,
-0.09183812141418457,
0.08373306691646576,
-0.009340612217783928,
-0.01885385252535343,
0.16284142434597015,
-0.007252827286720276,
-0.08220232278108597,
-0.0906125158071518,
-0.07514890283346176,
-0.01414016168564558,
0.08846046030521393,
-0.1403351128101349,
0.07465635240077972,
-0.025046054273843765,
-0.03574824705719948,
-0.0035754318814724684,
-0.09478596597909927,
-0.11459410190582275,
-0.16378392279148102,
0.05825783684849739,
-0.07977693527936935,
0.012616901658475399,
-0.07303495705127716,
-0.05209098011255264,
0.04397496208548546,
0.1805005818605423,
-0.20954544842243195,
-0.10623325407505035,
-0.14109660685062408,
-0.10068323463201523,
0.15394742786884308,
-0.050469450652599335,
0.08825237303972244,
-0.01107017695903778,
0.15524502098560333,
-0.010445703752338886,
-0.021361127495765686,
0.08931757509708405,
-0.09198518842458725,
-0.1860412210226059,
-0.05356001481413841,
0.18764148652553558,
0.13229098916053772,
0.03142114356160164,
-0.01245570182800293,
0.028042269870638847,
-0.06286514550447464,
-0.10786346346139908,
0.036171745508909225,
0.12442152947187424,
0.06373029202222824,
-0.01675054430961609,
-0.04815051332116127,
-0.09611888229846954,
-0.06349294632673264,
-0.04270539805293083,
-0.008009996265172958,
0.2074401080608368,
-0.07042710483074188,
0.16541717946529388,
0.12950368225574493,
-0.06865622848272324,
-0.2064598649740219,
0.03573588654398918,
0.027457932010293007,
0.013756096363067627,
0.027982285246253014,
-0.19992324709892273,
0.08320288360118866,
-0.03217789903283119,
-0.07918344438076019,
0.17633795738220215,
-0.1946314126253128,
-0.13467486202716827,
0.10253657400608063,
0.016055753454566002,
-0.19882991909980774,
-0.1484425961971283,
-0.11011216789484024,
-0.01864740625023842,
-0.11813635379076004,
0.060123927891254425,
0.031319376081228256,
0.016468632966279984,
0.00975018460303545,
0.01901957392692566,
0.042284052819013596,
-0.046068448573350906,
0.1908806413412094,
-0.031019777059555054,
-0.0014828185085207224,
-0.05635875090956688,
-0.10667873919010162,
0.010496399365365505,
-0.055438216775655746,
0.11973274499177933,
-0.029843023046851158,
0.02940557710826397,
-0.1646263748407364,
-0.0457628108561039,
-0.059632204473018646,
0.03216702863574028,
-0.09470967948436737,
-0.08455348759889603,
-0.048016197979450226,
0.08345594257116318,
0.08694549649953842,
-0.01202030573040247,
0.023163000121712685,
-0.09587077051401138,
0.09479934722185135,
0.189895361661911,
0.18698395788669586,
0.06403937190771103,
-0.04093598201870918,
0.028902282938361168,
-0.03648100048303604,
0.043284736573696136,
-0.22562384605407715,
0.04052383080124855,
0.06601022928953171,
0.02985338866710663,
0.07579614222049713,
-0.002486366080120206,
-0.1620195209980011,
-0.08387333899736404,
0.08740963041782379,
-0.05640522018074989,
-0.16394618153572083,
-0.02977389097213745,
0.03339004889130592,
-0.20692893862724304,
-0.04342186450958252,
0.03448840603232384,
-0.01549533475190401,
-0.04270240291953087,
0.025290241464972496,
0.0827464684844017,
-0.019757036119699478,
0.09213725477457047,
0.0962642952799797,
0.0903785228729248,
-0.09037606418132782,
0.05498812720179558,
0.08467282354831696,
-0.01563161239027977,
0.02507021091878414,
0.13899575173854828,
-0.029520977288484573,
-0.040351469069719315,
0.0846097394824028,
0.1253902018070221,
-0.004463523160666227,
-0.04304011911153793,
0.008593124337494373,
-0.043463051319122314,
0.07065188884735107,
0.13083955645561218,
0.018144158646464348,
-0.00886706542223692,
0.07212556898593903,
0.030890701338648796,
-0.08998452872037888,
0.1256890892982483,
0.04462732747197151,
0.022680815309286118,
-0.019686881452798843,
-0.025918712839484215,
-0.0160124022513628,
-0.0005283464561216533,
-0.015585984103381634,
0.0007587817381136119,
-0.09888938814401627,
-0.00006926281639607623,
-0.10546515882015228,
0.017710931599140167,
-0.06698242574930191,
0.0021139809396117926,
0.016930803656578064,
-0.05087796971201897,
-0.002534870756790042,
-0.009404445998370647,
-0.08077740669250488,
-0.050140686333179474,
-0.0252046100795269,
0.08101721107959747,
-0.1485767364501953,
0.027885034680366516,
0.07892994582653046,
-0.09970258176326752,
0.06517777591943741,
-0.01873192749917507,
0.019565092399716377,
0.005905136466026306,
-0.15865039825439453,
0.0620618537068367,
-0.03039751946926117,
-0.007569129578769207,
0.0020806461106985807,
-0.16258390247821808,
-0.010257774032652378,
-0.049148499965667725,
-0.07110545784235,
0.01075794082134962,
-0.01912991888821125,
-0.12950438261032104,
0.10966525226831436,
0.004114254843443632,
-0.07305090874433517,
-0.011819737032055855,
0.053023140877485275,
0.06632334738969803,
-0.019293809309601784,
0.09660836309194565,
-0.023217499256134033,
0.0821610540151596,
-0.18379007279872894,
-0.0029726524371653795,
-0.014174961484968662,
0.03725659102201462,
-0.018727868795394897,
-0.043616391718387604,
0.05280245095491409,
-0.017030635848641396,
0.17069032788276672,
0.0027024971786886454,
0.07202150672674179,
0.050508540123701096,
0.021284272894263268,
0.04522961750626564,
0.07172354310750961,
0.06659617274999619,
-0.017040187492966652,
-0.004747196566313505,
0.028053270652890205,
0.0019269968615844846,
-0.0439034067094326,
-0.12489422410726547,
0.06858792155981064,
0.1850202977657318,
0.08369418233633041,
0.02102753147482872,
0.01522328145802021,
-0.13008658587932587,
-0.08441363275051117,
0.10343252122402191,
-0.013250499032437801,
-0.02908562682569027,
-0.06789563596248627,
0.23240430653095245,
0.1355157345533371,
-0.18935371935367584,
0.07967161387205124,
-0.042587775737047195,
-0.033565688878297806,
-0.1383104771375656,
-0.17325642704963684,
-0.056658048182725906,
-0.03240250423550606,
-0.03163605183362961,
-0.061833254992961884,
0.05579284951090813,
0.028381401672959328,
-0.005594220943748951,
-0.01656755432486534,
0.09554847329854965,
0.021905893459916115,
-0.03105766884982586,
0.050382357090711594,
0.05934056267142296,
0.0398729145526886,
-0.09929823875427246,
0.015242934226989746,
0.00042991232476197183,
0.008296972140669823,
0.05905533954501152,
0.025476183742284775,
-0.07169640064239502,
0.02931138686835766,
-0.014420375227928162,
-0.12119250744581223,
0.04484518989920616,
-0.01275691855698824,
-0.016327152028679848,
0.14168815314769745,
0.03310782462358475,
0.007274302188307047,
-0.00994622241705656,
0.24094544351100922,
-0.06387631595134735,
-0.07729392498731613,
-0.11949346959590912,
0.07389383763074875,
-0.062073808163404465,
0.02958582155406475,
0.010184717364609241,
-0.1242094486951828,
0.014478972181677818,
0.1838737428188324,
0.12285590171813965,
-0.0146947605535388,
0.011202151887118816,
0.04585453122854233,
0.012883433140814304,
-0.01956269145011902,
0.011182927526533604,
0.04761539027094841,
0.2128383368253708,
-0.07638697326183319,
0.05717942491173744,
-0.014077423140406609,
-0.06760895252227783,
-0.020446691662073135,
0.12039031088352203,
-0.008357951417565346,
-0.012548095546662807,
-0.06315059959888458,
0.13830721378326416,
-0.07572930306196213,
-0.22243916988372803,
0.046377550810575485,
-0.0905035212635994,
-0.1358063966035843,
-0.05028173699975014,
0.027409855276346207,
-0.02298293448984623,
0.00921400636434555,
0.06587166339159012,
-0.05489714816212654,
0.16017381846904755,
0.028330493718385696,
-0.0569877065718174,
-0.09957297891378403,
0.05394477769732475,
-0.14269739389419556,
0.2821206748485565,
0.01914871670305729,
0.03756105527281761,
0.10966864973306656,
-0.01852920465171337,
-0.12976732850074768,
0.013898354955017567,
0.10975085943937302,
-0.059649575501680374,
0.06684797257184982,
0.16104890406131744,
-0.0007486705435439944,
0.1250441074371338,
0.06366666406393051,
-0.057023752480745316,
0.04201650992035866,
-0.06529106944799423,
-0.06316815316677094,
-0.11952103674411774,
0.07416974008083344,
-0.09214751422405243,
0.1534411609172821,
0.1220586821436882,
-0.07461508363485336,
-0.012376432307064533,
-0.02083708345890045,
0.07446185499429703,
0.014823240227997303,
0.12135554105043411,
0.005804038140922785,
-0.18228164315223694,
0.04091908410191536,
0.014385065995156765,
0.10669425874948502,
-0.2194354385137558,
-0.05315806344151497,
0.04218944534659386,
-0.015510765835642815,
-0.0936613455414772,
0.11523307859897614,
0.05780625343322754,
0.013531544245779514,
-0.036207590252161026,
-0.07838582992553711,
0.023627886548638344,
0.14887608587741852,
-0.10628054291009903,
-0.011921405792236328
] |
null | null | ml-agents |
# **ppo** Agent playing **Huggy**
This is a trained model of a **ppo** agent playing **Huggy**
using the [Unity ML-Agents Library](https://github.com/Unity-Technologies/ml-agents).
## Usage (with ML-Agents)
The Documentation: https://unity-technologies.github.io/ml-agents/ML-Agents-Toolkit-Documentation/
We wrote a complete tutorial to learn to train your first agent using ML-Agents and publish it to the Hub:
- A *short tutorial* where you teach Huggy the Dog 🐶 to fetch the stick and then play with him directly in your
browser: https://huggingface.co/learn/deep-rl-course/unitbonus1/introduction
- A *longer tutorial* to understand how works ML-Agents:
https://huggingface.co/learn/deep-rl-course/unit5/introduction
### Resume the training
```bash
mlagents-learn <your_configuration_file_path.yaml> --run-id=<run_id> --resume
```
### Watch your Agent play
You can watch your agent **playing directly in your browser**
1. If the environment is part of ML-Agents official environments, go to https://huggingface.co/unity
2. Step 1: Find your model_id: youngsterEthan/ppo-Huggy
3. Step 2: Select your *.nn /*.onnx file
4. Click on Watch the agent play 👀
| {"library_name": "ml-agents", "tags": ["Huggy", "deep-reinforcement-learning", "reinforcement-learning", "ML-Agents-Huggy"]} | reinforcement-learning | youngsterEthan/ppo-Huggy | [
"ml-agents",
"tensorboard",
"onnx",
"Huggy",
"deep-reinforcement-learning",
"reinforcement-learning",
"ML-Agents-Huggy",
"region:us"
] | 2023-11-11T08:25:30+00:00 | [] | [] | TAGS
#ml-agents #tensorboard #onnx #Huggy #deep-reinforcement-learning #reinforcement-learning #ML-Agents-Huggy #region-us
|
# ppo Agent playing Huggy
This is a trained model of a ppo agent playing Huggy
using the Unity ML-Agents Library.
## Usage (with ML-Agents)
The Documentation: URL
We wrote a complete tutorial to learn to train your first agent using ML-Agents and publish it to the Hub:
- A *short tutorial* where you teach Huggy the Dog to fetch the stick and then play with him directly in your
browser: URL
- A *longer tutorial* to understand how works ML-Agents:
URL
### Resume the training
### Watch your Agent play
You can watch your agent playing directly in your browser
1. If the environment is part of ML-Agents official environments, go to URL
2. Step 1: Find your model_id: youngsterEthan/ppo-Huggy
3. Step 2: Select your *.nn /*.onnx file
4. Click on Watch the agent play
| [
"# ppo Agent playing Huggy\n This is a trained model of a ppo agent playing Huggy\n using the Unity ML-Agents Library.\n\n ## Usage (with ML-Agents)\n The Documentation: URL\n\n We wrote a complete tutorial to learn to train your first agent using ML-Agents and publish it to the Hub:\n - A *short tutorial* where you teach Huggy the Dog to fetch the stick and then play with him directly in your\n browser: URL\n - A *longer tutorial* to understand how works ML-Agents:\n URL\n\n ### Resume the training\n \n\n ### Watch your Agent play\n You can watch your agent playing directly in your browser\n\n 1. If the environment is part of ML-Agents official environments, go to URL\n 2. Step 1: Find your model_id: youngsterEthan/ppo-Huggy\n 3. Step 2: Select your *.nn /*.onnx file\n 4. Click on Watch the agent play"
] | [
"TAGS\n#ml-agents #tensorboard #onnx #Huggy #deep-reinforcement-learning #reinforcement-learning #ML-Agents-Huggy #region-us \n",
"# ppo Agent playing Huggy\n This is a trained model of a ppo agent playing Huggy\n using the Unity ML-Agents Library.\n\n ## Usage (with ML-Agents)\n The Documentation: URL\n\n We wrote a complete tutorial to learn to train your first agent using ML-Agents and publish it to the Hub:\n - A *short tutorial* where you teach Huggy the Dog to fetch the stick and then play with him directly in your\n browser: URL\n - A *longer tutorial* to understand how works ML-Agents:\n URL\n\n ### Resume the training\n \n\n ### Watch your Agent play\n You can watch your agent playing directly in your browser\n\n 1. If the environment is part of ML-Agents official environments, go to URL\n 2. Step 1: Find your model_id: youngsterEthan/ppo-Huggy\n 3. Step 2: Select your *.nn /*.onnx file\n 4. Click on Watch the agent play"
] | [
44,
200
] | [
"passage: TAGS\n#ml-agents #tensorboard #onnx #Huggy #deep-reinforcement-learning #reinforcement-learning #ML-Agents-Huggy #region-us \n# ppo Agent playing Huggy\n This is a trained model of a ppo agent playing Huggy\n using the Unity ML-Agents Library.\n\n ## Usage (with ML-Agents)\n The Documentation: URL\n\n We wrote a complete tutorial to learn to train your first agent using ML-Agents and publish it to the Hub:\n - A *short tutorial* where you teach Huggy the Dog to fetch the stick and then play with him directly in your\n browser: URL\n - A *longer tutorial* to understand how works ML-Agents:\n URL\n\n ### Resume the training\n \n\n ### Watch your Agent play\n You can watch your agent playing directly in your browser\n\n 1. If the environment is part of ML-Agents official environments, go to URL\n 2. Step 1: Find your model_id: youngsterEthan/ppo-Huggy\n 3. Step 2: Select your *.nn /*.onnx file\n 4. Click on Watch the agent play"
] | [
0.02229628711938858,
0.022174367681145668,
-0.004711909685283899,
0.03627843037247658,
0.13065452873706818,
-0.007269237656146288,
0.16800877451896667,
0.13091449439525604,
0.12316984683275223,
0.07853847742080688,
0.06172521412372589,
0.014122090302407742,
0.043185044080019,
0.15453636646270752,
0.06945455819368362,
-0.2375084012746811,
-0.005775881465524435,
-0.08840067684650421,
0.060237184166908264,
0.09170708805322647,
0.03701247274875641,
-0.04216887056827545,
0.08214756846427917,
0.04284817725419998,
-0.04341961443424225,
-0.02723773382604122,
-0.07901151478290558,
-0.024844329804182053,
0.04748889431357384,
-0.020751899108290672,
-0.006971179973334074,
-0.03864192217588425,
0.06808951497077942,
-0.17163880169391632,
0.030721642076969147,
0.07408366352319717,
0.001820600708015263,
0.015745481476187706,
0.09455784410238266,
0.023740245029330254,
0.1434839963912964,
-0.06113235279917717,
0.06672681123018265,
0.0650697574019432,
-0.06943079829216003,
-0.05147762596607208,
-0.09905222058296204,
0.027719449251890182,
0.22347871959209442,
0.07598881423473358,
0.007507402449846268,
0.10456576198339462,
-0.11275769770145416,
0.030120275914669037,
0.21268078684806824,
-0.23054496943950653,
-0.0719916895031929,
0.07134975492954254,
0.07177550345659256,
-0.008818225935101509,
-0.05258621275424957,
0.027927061542868614,
-0.005023130681365728,
0.03382290154695511,
0.09745465964078903,
-0.035895396023988724,
0.2542072534561157,
-0.011905189603567123,
-0.08088352531194687,
-0.06402076780796051,
0.0393800213932991,
0.05309142544865608,
-0.07061491161584854,
-0.21598941087722778,
0.021621540188789368,
0.14264975488185883,
-0.04683930426836014,
0.014020534232258797,
0.08573461323976517,
-0.016252711415290833,
-0.03581338748335838,
-0.12941865622997284,
-0.06010694429278374,
-0.05348527431488037,
0.08011244237422943,
0.1570311039686203,
0.0018241934012621641,
-0.03285494074225426,
0.06917086243629456,
0.06866807490587234,
0.04577121511101723,
-0.014775119721889496,
-0.027631497010588646,
-0.039411358535289764,
-0.09834910929203033,
0.0018834524089470506,
-0.033657267689704895,
0.07960116118192673,
0.04372110962867737,
0.13844981789588928,
0.029465433210134506,
-0.005205229856073856,
0.032000165432691574,
0.04893164336681366,
-0.010535056702792645,
0.11313796788454056,
0.03559200465679169,
0.01145140640437603,
0.051866792142391205,
0.061894163489341736,
0.09058689326047897,
-0.0505874864757061,
-0.1002340167760849,
0.07883884012699127,
-0.08879465609788895,
0.09973224997520447,
0.08824252337217331,
0.02384091354906559,
-0.07985123991966248,
-0.026784537360072136,
0.024334441870450974,
-0.12152973562479019,
0.09094439446926117,
0.05482034757733345,
-0.04857680946588516,
-0.05127160623669624,
-0.010804763995110989,
0.025025447830557823,
-0.07862626016139984,
0.02477133646607399,
-0.025634469464421272,
0.05202895775437355,
-0.006012571044266224,
-0.01921321637928486,
0.09223622828722,
-0.038463905453681946,
-0.02555173449218273,
-0.11917842924594879,
-0.13453112542629242,
-0.0527082160115242,
0.061230555176734924,
-0.060482852160930634,
-0.10197810083627701,
-0.05430297553539276,
-0.00941567961126566,
-0.08935558050870895,
0.0016380525194108486,
-0.061524398624897,
-0.05107113718986511,
-0.0054351999424397945,
-0.046681102365255356,
0.07013634592294693,
0.17763154208660126,
0.029272720217704773,
-0.048395249992609024,
0.07986669987440109,
-0.18472528457641602,
0.10334721207618713,
-0.08366242796182632,
0.16974923014640808,
-0.058463145047426224,
-0.0020228286739438772,
0.016897151246666908,
0.03780161589384079,
-0.006190380081534386,
0.16839464008808136,
-0.027207516133785248,
-0.13730764389038086,
0.11889742314815521,
-0.057162266224622726,
-0.12900285422801971,
0.06353168189525604,
0.040473874658346176,
0.08852755278348923,
0.05891118943691254,
0.24445085227489471,
0.06107139587402344,
-0.2920711934566498,
0.053580619394779205,
0.03238963335752487,
-0.10875122994184494,
0.007457324303686619,
0.1497628390789032,
-0.07041601836681366,
0.02830137312412262,
-0.008178978227078915,
-0.16473077237606049,
0.07944965362548828,
0.002242705086246133,
-0.025877736508846283,
0.04345177114009857,
-0.024958128109574318,
-0.00916769728064537,
-0.011621640995144844,
-0.008091666735708714,
-0.058431025594472885,
-0.11287182569503784,
-0.020463604480028152,
0.07918020337820053,
-0.026488803327083588,
0.0793047770857811,
-0.07141947001218796,
0.12506823241710663,
0.028540093451738358,
0.029146239161491394,
-0.07325057685375214,
-0.10849517583847046,
0.013786484487354755,
0.013681062497198582,
0.07852638512849808,
-0.09821660071611404,
0.05929403007030487,
0.0760352686047554,
0.009997743181884289,
-0.08269785344600677,
-0.08813701570034027,
-0.018242862075567245,
-0.05718191713094711,
-0.11260739713907242,
-0.08527349680662155,
-0.05998086929321289,
0.14689943194389343,
-0.0932922512292862,
0.06377071142196655,
-0.09541627019643784,
0.054828204214572906,
0.017960350960493088,
-0.025267567485570908,
0.053647879511117935,
-0.005732354708015919,
0.03941190242767334,
-0.07237080484628677,
0.12335412204265594,
0.038935936987400055,
-0.06559266895055771,
0.08080194145441055,
-0.05866098776459694,
-0.06495483964681625,
0.10638255625963211,
0.019299136474728584,
-0.0016740345163270831,
-0.05253846198320389,
-0.09030912071466446,
0.022517522796988487,
-0.05082939192652702,
-0.0163471270352602,
0.13623425364494324,
0.10455720871686935,
0.12559154629707336,
-0.10634086281061172,
-0.09431661665439606,
-0.026345154270529747,
-0.09639552235603333,
-0.05294395610690117,
0.1295337826013565,
0.023750443011522293,
0.07853604108095169,
0.04835304990410805,
0.0958147719502449,
0.08212799578905106,
0.0661323070526123,
0.012024524621665478,
-0.1242932453751564,
-0.015775935724377632,
0.06561096012592316,
0.0448770634829998,
-0.007796186953783035,
0.019814105704426765,
-0.0012629522243514657,
0.023999439552426338,
-0.02824588492512703,
-0.006015010643750429,
-0.14807279407978058,
-0.06226684898138046,
-0.0020098041277378798,
-0.029549812898039818,
0.0605882965028286,
-0.0027191585395485163,
-0.031622353941202164,
0.06347643584012985,
0.08012447506189346,
0.045469436794519424,
0.0046217977069318295,
-0.044183939695358276,
-0.11528947949409485,
0.08007264137268066,
-0.08732718229293823,
-0.29673096537590027,
-0.10406453907489777,
-0.09902115166187286,
-0.05091806873679161,
0.03422073647379875,
0.051632609218358994,
-0.14481256902217865,
-0.020111190155148506,
-0.1277303397655487,
-0.01944565214216709,
0.04966170713305473,
-0.08277039229869843,
0.18888694047927856,
0.092988520860672,
0.010544313117861748,
-0.06781798601150513,
-0.025246813893318176,
0.02416994608938694,
-0.06132109463214874,
0.03191671147942543,
0.034083619713783264,
0.028636539354920387,
0.1002691313624382,
0.09145082533359528,
0.03118959814310074,
-0.03807676583528519,
0.10185027867555618,
-0.06625153124332428,
0.017701761797070503,
0.12873093783855438,
-0.014955679886043072,
0.08481423556804657,
0.029897449538111687,
0.02286168374121189,
-0.03106582537293434,
0.03725640848278999,
0.016877571120858192,
-0.06650179624557495,
-0.19296562671661377,
-0.10724744945764542,
-0.017409665510058403,
0.2322525531053543,
0.07846236974000931,
0.07949653267860413,
-0.06223077327013016,
-0.050568755716085434,
-0.04187691956758499,
-0.039694756269454956,
0.1418125480413437,
0.11095104366540909,
0.002453512279316783,
-0.08064840734004974,
-0.01085063349455595,
-0.033847711980342865,
0.020000627264380455,
0.09105096757411957,
-0.01843315362930298,
0.05542191490530968,
0.027903003618121147,
0.046756625175476074,
0.010891525074839592,
-0.057942844927310944,
-0.06554044038057327,
0.07631833851337433,
0.029985612258315086,
-0.007391497492790222,
-0.030890224501490593,
-0.09060614556074142,
-0.02222941815853119,
0.10825188457965851,
0.09724434465169907,
-0.045936401933431625,
-0.099098339676857,
0.0694633349776268,
0.104702889919281,
0.10031859576702118,
0.011851806193590164,
-0.15054962038993835,
-0.05015036463737488,
0.014366094022989273,
-0.11570508033037186,
0.02487039566040039,
0.005076857749372721,
0.04567519575357437,
-0.19856226444244385,
0.08128411322832108,
0.009958280250430107,
0.1111566349864006,
0.06774789839982986,
0.008636008016765118,
0.031067265197634697,
0.09904486685991287,
-0.006231999024748802,
0.06278260797262192,
-0.13692104816436768,
0.056415751576423645,
-0.010442456230521202,
0.09089832007884979,
-0.041528720408678055,
0.002806370612233877,
0.08985038101673126,
-0.0340927429497242,
0.19092382490634918,
0.03979812189936638,
0.07013078033924103,
-0.07018496841192245,
-0.1737797111272812,
-0.05072532966732979,
0.0109816649928689,
-0.07787016779184341,
0.08744965493679047,
-0.03760095685720444,
-0.043279603123664856,
-0.10260909050703049,
0.11725180596113205,
0.002089058281853795,
-0.06031971797347069,
-0.009686888195574284,
-0.059519775211811066,
0.0025729050394147635,
-0.06222076341509819,
-0.0424334853887558,
-0.035581473261117935,
0.17625845968723297,
0.12101110070943832,
-0.058968234807252884,
-0.09288252890110016,
-0.06989765167236328,
-0.012925426475703716,
-0.026454605162143707,
-0.012569062411785126,
-0.009687427431344986,
0.15009698271751404,
-0.07529384642839432,
-0.02710893005132675,
-0.01760309748351574,
-0.10652019828557968,
-0.1300613135099411,
0.002202759962528944,
0.25919052958488464,
-0.01058513205498457,
0.10244620591402054,
-0.016111910343170166,
0.018292393535375595,
-0.007811190094798803,
-0.07332631200551987,
0.1448018103837967,
0.18851228058338165,
0.0241596270352602,
0.0473494678735733,
-0.09806181490421295,
0.094294473528862,
-0.07740813493728638,
-0.006692967377603054,
0.2248729020357132,
0.3375093340873718,
-0.01469116285443306,
0.2224324345588684,
0.04824943467974663,
-0.06644922494888306,
-0.22329232096672058,
-0.05486391857266426,
0.03902404382824898,
-0.01910269260406494,
0.13350388407707214,
-0.14255064725875854,
0.043493445962667465,
0.046562761068344116,
-0.015261023305356503,
-0.0029009461868554354,
-0.16556526720523834,
-0.08583369106054306,
-0.043005891144275665,
0.06537945568561554,
0.024054281413555145,
-0.10110551118850708,
-0.04824623838067055,
-0.023999162018299103,
-0.0848216861486435,
0.0863843783736229,
-0.15390297770500183,
0.07892564684152603,
-0.00858794990926981,
0.022897202521562576,
0.0440387986600399,
-0.030241891741752625,
0.11632386595010757,
-0.0843924880027771,
-0.025913100689649582,
-0.08837742358446121,
-0.0149125587195158,
0.00873830821365118,
-0.1027558445930481,
0.08734900504350662,
-0.05976210534572601,
-0.06618676334619522,
-0.1847047656774521,
-0.03805563598871231,
-0.04251350834965706,
0.04680394008755684,
-0.03271865472197533,
-0.02341991290450096,
-0.021127434447407722,
0.06436353921890259,
0.09141264110803604,
0.04189707338809967,
0.06022386997938156,
-0.008351915515959263,
0.002260595327243209,
0.08181547373533249,
0.09985891729593277,
-0.019034933298826218,
-0.07689977437257767,
-0.0497652105987072,
-0.016617905348539352,
-0.02320466749370098,
-0.09719759225845337,
-0.00382985663600266,
0.032130736857652664,
0.016300460323691368,
0.058955296874046326,
0.04003160819411278,
-0.11160498112440109,
-0.010827875696122646,
0.07152920961380005,
-0.088958241045475,
-0.14952203631401062,
-0.06490975618362427,
-0.0917229875922203,
-0.05507681146264076,
-0.06534843891859055,
0.04659498482942581,
-0.037381306290626526,
-0.012621561996638775,
0.03909427300095558,
0.027123823761940002,
-0.05157647654414177,
0.001568073988892138,
-0.014832203276455402,
0.007366759702563286,
-0.06242901459336281,
0.15039554238319397,
0.0051267859525978565,
-0.060755833983421326,
0.03403165936470032,
0.21081779897212982,
-0.04089624062180519,
-0.06967665255069733,
-0.004537058062851429,
0.06785403192043304,
0.16549937427043915,
-0.024325309321284294,
-0.04118391126394272,
-0.06913929432630539,
0.08479788154363632,
-0.10646567493677139,
0.008701379410922527,
-0.09500930458307266,
0.03210832178592682,
0.09654189646244049,
-0.10034588724374771,
0.10581936687231064,
-0.02502165362238884,
-0.06824652850627899,
-0.11830253899097443,
0.09804052114486694,
0.04626496136188507,
0.1443672776222229,
-0.021497692912817,
-0.05779819190502167,
-0.13550442457199097,
0.003069740254431963,
-0.05231284350156784,
0.005242928396910429,
-0.1786995232105255,
-0.019457869231700897,
-0.01905430480837822,
0.045773182064294815,
-0.010948813520371914,
0.03407905250787735,
-0.06268052756786346,
-0.06233259662985802,
-0.05039207264780998,
0.09670159965753555,
-0.06350377947092056,
-0.015302914194762707,
0.027656087651848793,
-0.06302101910114288,
0.08928666263818741,
0.061133529990911484,
-0.03496383875608444,
-0.04309316352009773,
-0.05927877873182297,
-0.051657821983098984,
0.01499666552990675,
-0.05564728379249573,
0.06377222388982773,
-0.15370723605155945,
0.007986457087099552,
-0.029820017516613007,
-0.10559934377670288,
0.005042253993451595,
0.11701410263776779,
-0.06882574409246445,
0.05845525860786438,
0.0111830560490489,
-0.11244943737983704,
-0.07500558346509933,
-0.008062459528446198,
0.0013417323352769017,
0.044523924589157104,
0.0934547632932663,
-0.06688438355922699,
0.1732746958732605,
-0.14355720579624176,
-0.013697557151317596,
-0.0018858363619074225,
0.027854107320308685,
0.0010312811937183142,
-0.09344307333230972,
0.015004736371338367,
-0.0025114172603935003,
0.11252348124980927,
0.0859040841460228,
-0.029734592884778976,
0.027221186086535454,
0.024495624005794525,
0.09586770832538605,
0.011422849260270596,
0.017413880676031113,
-0.011672223918139935,
-0.009094467386603355,
0.0642910823225975,
-0.022446174174547195,
0.08359794318675995,
-0.13717450201511383,
0.10615964978933334,
0.07414697110652924,
0.12023195624351501,
0.08280880004167557,
0.06458375602960587,
-0.08637160062789917,
-0.2216649204492569,
-0.035268768668174744,
0.06182768568396568,
0.02325921133160591,
-0.06547084450721741,
0.25607383251190186,
0.133445605635643,
-0.24288253486156464,
0.04863244667649269,
0.0032190135680139065,
0.029133569449186325,
-0.0892738625407219,
-0.13953877985477448,
-0.004218366928398609,
-0.22096292674541473,
0.06531333923339844,
-0.07349299639463425,
-0.005261735990643501,
-0.05720808357000351,
-0.024104688316583633,
-0.011252546682953835,
0.06887988746166229,
-0.12793055176734924,
-0.05803045630455017,
0.08222400397062302,
-0.040391311049461365,
0.03417365998029709,
-0.004710162989795208,
-0.02115040272474289,
-0.036071520298719406,
-0.08254604041576385,
0.06122354045510292,
0.06422153860330582,
0.0098726162686944,
0.054899945855140686,
-0.09580478072166443,
-0.07477529346942902,
0.04520857334136963,
0.00188990228343755,
0.018918577581644058,
0.09498172998428345,
0.04273952543735504,
-0.10629291087388992,
-0.002154369605705142,
0.21849896013736725,
-0.05689585581421852,
0.01551677007228136,
-0.08477242290973663,
0.16017886996269226,
-0.0378735288977623,
-0.06671052426099777,
-0.018281305208802223,
-0.09041021019220352,
-0.09362754970788956,
0.267090380191803,
0.13046368956565857,
-0.047212693840265274,
0.01695059984922409,
-0.03796343132853508,
0.021406833082437515,
-0.01274021714925766,
0.1346062421798706,
0.071149080991745,
0.13610145449638367,
-0.06266403198242188,
-0.019884584471583366,
-0.016664141789078712,
-0.09442006051540375,
-0.17302905023097992,
0.01435905508697033,
0.008307170122861862,
-0.04716555029153824,
-0.012955652549862862,
0.06781857460737228,
-0.12139242142438889,
-0.1298321932554245,
0.08772166818380356,
-0.1073160320520401,
-0.08133530616760254,
-0.014254125766456127,
0.03241312503814697,
0.04788674786686897,
0.13368165493011475,
0.05594171583652496,
0.012584388256072998,
0.1083148792386055,
-0.035151153802871704,
-0.05558120459318161,
0.024338675662875175,
0.07716882973909378,
-0.09845627099275589,
0.20143075287342072,
-0.021654216572642326,
0.04594365134835243,
0.051625724881887436,
0.01765313372015953,
-0.15037883818149567,
0.036650508642196655,
0.03689500689506531,
-0.15363331139087677,
0.008228319697082043,
0.07919108122587204,
-0.069472536444664,
-0.015337555669248104,
0.0902564525604248,
-0.010353288613259792,
0.005707386881113052,
0.12126915901899338,
-0.028067467734217644,
-0.04810846596956253,
0.06701258569955826,
-0.1671907752752304,
0.09339158982038498,
0.12686017155647278,
-0.06944889575242996,
-0.01689833216369152,
-0.04199718311429024,
0.04193747788667679,
0.052379459142684937,
0.054321449249982834,
-0.0020354632288217545,
-0.14360497891902924,
0.01232417207211256,
0.02212216891348362,
0.02958531305193901,
-0.26392680406570435,
-0.10284179449081421,
-0.052209462970495224,
-0.035941291600465775,
-0.0728328675031662,
0.10648636519908905,
0.08475083112716675,
-0.020971255376935005,
-0.008332152850925922,
-0.12228640913963318,
0.040778785943984985,
0.16129831969738007,
-0.07645377516746521,
0.00014839897630736232
] |
null | null | peft |
# Model Card for Model ID
<!-- Provide a quick summary of what the model is/does. -->
## Model Details
### Model Description
<!-- Provide a longer summary of what this model is. -->
- **Developed by:** [More Information Needed]
- **Shared by [optional]:** [More Information Needed]
- **Model type:** [More Information Needed]
- **Language(s) (NLP):** [More Information Needed]
- **License:** [More Information Needed]
- **Finetuned from model [optional]:** [More Information Needed]
### Model Sources [optional]
<!-- Provide the basic links for the model. -->
- **Repository:** [More Information Needed]
- **Paper [optional]:** [More Information Needed]
- **Demo [optional]:** [More Information Needed]
## Uses
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
### Direct Use
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
[More Information Needed]
### Downstream Use [optional]
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
[More Information Needed]
### Out-of-Scope Use
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
[More Information Needed]
## Bias, Risks, and Limitations
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
[More Information Needed]
### Recommendations
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
## How to Get Started with the Model
Use the code below to get started with the model.
[More Information Needed]
## Training Details
### Training Data
<!-- This should link to a Data Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
[More Information Needed]
### Training Procedure
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
#### Preprocessing [optional]
[More Information Needed]
#### Training Hyperparameters
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
#### Speeds, Sizes, Times [optional]
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
[More Information Needed]
## Evaluation
<!-- This section describes the evaluation protocols and provides the results. -->
### Testing Data, Factors & Metrics
#### Testing Data
<!-- This should link to a Data Card if possible. -->
[More Information Needed]
#### Factors
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
[More Information Needed]
#### Metrics
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
[More Information Needed]
### Results
[More Information Needed]
#### Summary
## Model Examination [optional]
<!-- Relevant interpretability work for the model goes here -->
[More Information Needed]
## Environmental Impact
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
- **Hardware Type:** [More Information Needed]
- **Hours used:** [More Information Needed]
- **Cloud Provider:** [More Information Needed]
- **Compute Region:** [More Information Needed]
- **Carbon Emitted:** [More Information Needed]
## Technical Specifications [optional]
### Model Architecture and Objective
[More Information Needed]
### Compute Infrastructure
[More Information Needed]
#### Hardware
[More Information Needed]
#### Software
[More Information Needed]
## Citation [optional]
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
**BibTeX:**
[More Information Needed]
**APA:**
[More Information Needed]
## Glossary [optional]
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
[More Information Needed]
## More Information [optional]
[More Information Needed]
## Model Card Authors [optional]
[More Information Needed]
## Model Card Contact
[More Information Needed]
## Training procedure
The following `bitsandbytes` quantization config was used during training:
- quant_method: bitsandbytes
- load_in_8bit: False
- load_in_4bit: True
- llm_int8_threshold: 6.0
- llm_int8_skip_modules: None
- llm_int8_enable_fp32_cpu_offload: False
- llm_int8_has_fp16_weight: False
- bnb_4bit_quant_type: nf4
- bnb_4bit_use_double_quant: True
- bnb_4bit_compute_dtype: bfloat16
### Framework versions
- PEFT 0.6.2.dev0
| {"library_name": "peft", "base_model": "bn22/Mistral-7B-Instruct-v0.1-sharded"} | null | darshini/MistralAI7BV1 | [
"peft",
"arxiv:1910.09700",
"base_model:bn22/Mistral-7B-Instruct-v0.1-sharded",
"region:us"
] | 2023-11-11T08:30:38+00:00 | [
"1910.09700"
] | [] | TAGS
#peft #arxiv-1910.09700 #base_model-bn22/Mistral-7B-Instruct-v0.1-sharded #region-us
|
# Model Card for Model ID
## Model Details
### Model Description
- Developed by:
- Shared by [optional]:
- Model type:
- Language(s) (NLP):
- License:
- Finetuned from model [optional]:
### Model Sources [optional]
- Repository:
- Paper [optional]:
- Demo [optional]:
## Uses
### Direct Use
### Downstream Use [optional]
### Out-of-Scope Use
## Bias, Risks, and Limitations
### Recommendations
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
## How to Get Started with the Model
Use the code below to get started with the model.
## Training Details
### Training Data
### Training Procedure
#### Preprocessing [optional]
#### Training Hyperparameters
- Training regime:
#### Speeds, Sizes, Times [optional]
## Evaluation
### Testing Data, Factors & Metrics
#### Testing Data
#### Factors
#### Metrics
### Results
#### Summary
## Model Examination [optional]
## Environmental Impact
Carbon emissions can be estimated using the Machine Learning Impact calculator presented in Lacoste et al. (2019).
- Hardware Type:
- Hours used:
- Cloud Provider:
- Compute Region:
- Carbon Emitted:
## Technical Specifications [optional]
### Model Architecture and Objective
### Compute Infrastructure
#### Hardware
#### Software
[optional]
BibTeX:
APA:
## Glossary [optional]
## More Information [optional]
## Model Card Authors [optional]
## Model Card Contact
## Training procedure
The following 'bitsandbytes' quantization config was used during training:
- quant_method: bitsandbytes
- load_in_8bit: False
- load_in_4bit: True
- llm_int8_threshold: 6.0
- llm_int8_skip_modules: None
- llm_int8_enable_fp32_cpu_offload: False
- llm_int8_has_fp16_weight: False
- bnb_4bit_quant_type: nf4
- bnb_4bit_use_double_quant: True
- bnb_4bit_compute_dtype: bfloat16
### Framework versions
- PEFT 0.6.2.dev0
| [
"# Model Card for Model ID",
"## Model Details",
"### Model Description\n\n\n\n\n\n- Developed by: \n- Shared by [optional]: \n- Model type: \n- Language(s) (NLP): \n- License: \n- Finetuned from model [optional]:",
"### Model Sources [optional]\n\n\n\n- Repository: \n- Paper [optional]: \n- Demo [optional]:",
"## Uses",
"### Direct Use",
"### Downstream Use [optional]",
"### Out-of-Scope Use",
"## Bias, Risks, and Limitations",
"### Recommendations\n\n\n\nUsers (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.",
"## How to Get Started with the Model\n\nUse the code below to get started with the model.",
"## Training Details",
"### Training Data",
"### Training Procedure",
"#### Preprocessing [optional]",
"#### Training Hyperparameters\n\n- Training regime:",
"#### Speeds, Sizes, Times [optional]",
"## Evaluation",
"### Testing Data, Factors & Metrics",
"#### Testing Data",
"#### Factors",
"#### Metrics",
"### Results",
"#### Summary",
"## Model Examination [optional]",
"## Environmental Impact\n\n\n\nCarbon emissions can be estimated using the Machine Learning Impact calculator presented in Lacoste et al. (2019).\n\n- Hardware Type: \n- Hours used: \n- Cloud Provider: \n- Compute Region: \n- Carbon Emitted:",
"## Technical Specifications [optional]",
"### Model Architecture and Objective",
"### Compute Infrastructure",
"#### Hardware",
"#### Software\n\n\n\n[optional]\n\n\n\nBibTeX:\n\n\n\nAPA:",
"## Glossary [optional]",
"## More Information [optional]",
"## Model Card Authors [optional]",
"## Model Card Contact",
"## Training procedure\n\n\nThe following 'bitsandbytes' quantization config was used during training:\n- quant_method: bitsandbytes\n- load_in_8bit: False\n- load_in_4bit: True\n- llm_int8_threshold: 6.0\n- llm_int8_skip_modules: None\n- llm_int8_enable_fp32_cpu_offload: False\n- llm_int8_has_fp16_weight: False\n- bnb_4bit_quant_type: nf4\n- bnb_4bit_use_double_quant: True\n- bnb_4bit_compute_dtype: bfloat16",
"### Framework versions\n\n\n- PEFT 0.6.2.dev0"
] | [
"TAGS\n#peft #arxiv-1910.09700 #base_model-bn22/Mistral-7B-Instruct-v0.1-sharded #region-us \n",
"# Model Card for Model ID",
"## Model Details",
"### Model Description\n\n\n\n\n\n- Developed by: \n- Shared by [optional]: \n- Model type: \n- Language(s) (NLP): \n- License: \n- Finetuned from model [optional]:",
"### Model Sources [optional]\n\n\n\n- Repository: \n- Paper [optional]: \n- Demo [optional]:",
"## Uses",
"### Direct Use",
"### Downstream Use [optional]",
"### Out-of-Scope Use",
"## Bias, Risks, and Limitations",
"### Recommendations\n\n\n\nUsers (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.",
"## How to Get Started with the Model\n\nUse the code below to get started with the model.",
"## Training Details",
"### Training Data",
"### Training Procedure",
"#### Preprocessing [optional]",
"#### Training Hyperparameters\n\n- Training regime:",
"#### Speeds, Sizes, Times [optional]",
"## Evaluation",
"### Testing Data, Factors & Metrics",
"#### Testing Data",
"#### Factors",
"#### Metrics",
"### Results",
"#### Summary",
"## Model Examination [optional]",
"## Environmental Impact\n\n\n\nCarbon emissions can be estimated using the Machine Learning Impact calculator presented in Lacoste et al. (2019).\n\n- Hardware Type: \n- Hours used: \n- Cloud Provider: \n- Compute Region: \n- Carbon Emitted:",
"## Technical Specifications [optional]",
"### Model Architecture and Objective",
"### Compute Infrastructure",
"#### Hardware",
"#### Software\n\n\n\n[optional]\n\n\n\nBibTeX:\n\n\n\nAPA:",
"## Glossary [optional]",
"## More Information [optional]",
"## Model Card Authors [optional]",
"## Model Card Contact",
"## Training procedure\n\n\nThe following 'bitsandbytes' quantization config was used during training:\n- quant_method: bitsandbytes\n- load_in_8bit: False\n- load_in_4bit: True\n- llm_int8_threshold: 6.0\n- llm_int8_skip_modules: None\n- llm_int8_enable_fp32_cpu_offload: False\n- llm_int8_has_fp16_weight: False\n- bnb_4bit_quant_type: nf4\n- bnb_4bit_use_double_quant: True\n- bnb_4bit_compute_dtype: bfloat16",
"### Framework versions\n\n\n- PEFT 0.6.2.dev0"
] | [
40,
6,
3,
45,
28,
3,
4,
9,
9,
10,
42,
20,
3,
4,
5,
9,
11,
13,
3,
12,
5,
4,
5,
3,
4,
9,
53,
9,
8,
6,
3,
14,
8,
7,
9,
4,
164,
14
] | [
"passage: TAGS\n#peft #arxiv-1910.09700 #base_model-bn22/Mistral-7B-Instruct-v0.1-sharded #region-us \n# Model Card for Model ID## Model Details### Model Description\n\n\n\n\n\n- Developed by: \n- Shared by [optional]: \n- Model type: \n- Language(s) (NLP): \n- License: \n- Finetuned from model [optional]:### Model Sources [optional]\n\n\n\n- Repository: \n- Paper [optional]: \n- Demo [optional]:## Uses### Direct Use### Downstream Use [optional]### Out-of-Scope Use## Bias, Risks, and Limitations### Recommendations\n\n\n\nUsers (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.## How to Get Started with the Model\n\nUse the code below to get started with the model.## Training Details### Training Data### Training Procedure#### Preprocessing [optional]#### Training Hyperparameters\n\n- Training regime:#### Speeds, Sizes, Times [optional]## Evaluation### Testing Data, Factors & Metrics#### Testing Data#### Factors#### Metrics### Results#### Summary## Model Examination [optional]## Environmental Impact\n\n\n\nCarbon emissions can be estimated using the Machine Learning Impact calculator presented in Lacoste et al. (2019).\n\n- Hardware Type: \n- Hours used: \n- Cloud Provider: \n- Compute Region: \n- Carbon Emitted:## Technical Specifications [optional]### Model Architecture and Objective### Compute Infrastructure#### Hardware#### Software\n\n\n\n[optional]\n\n\n\nBibTeX:\n\n\n\nAPA:## Glossary [optional]## More Information [optional]## Model Card Authors [optional]## Model Card Contact"
] | [
-0.09336372464895248,
0.16299568116664886,
-0.0034579159691929817,
0.04221443086862564,
0.08892574906349182,
0.025688745081424713,
0.05313967913389206,
0.1168934628367424,
-0.04379875212907791,
0.10037196427583694,
0.056575607508420944,
0.10505413264036179,
0.09330586344003677,
0.1847182661294937,
-0.004422346595674753,
-0.19744683802127838,
0.016362590715289116,
-0.10239436477422714,
0.005422068294137716,
0.12511922419071198,
0.15963496267795563,
-0.09159689396619797,
0.08384925872087479,
-0.023747924715280533,
-0.01753421686589718,
-0.041052136570215225,
-0.0681098997592926,
-0.042533040046691895,
0.040978170931339264,
0.07018474489450455,
0.04977281019091606,
-0.01030183956027031,
0.0829455703496933,
-0.2644512355327606,
0.01577666774392128,
0.036668624728918076,
-0.01296671200543642,
0.0914645567536354,
0.09084170311689377,
-0.047690775245428085,
0.09355086088180542,
-0.047393832355737686,
0.12381953001022339,
0.07222980260848999,
-0.07384203374385834,
-0.15901018679141998,
-0.08537524193525314,
0.08188982307910919,
0.16456247866153717,
0.07577221840620041,
-0.044615305960178375,
0.16604086756706238,
-0.11598755419254303,
0.013468759134411812,
0.03138730674982071,
-0.03173091635107994,
-0.08644860237836838,
0.060570623725652695,
0.11060240864753723,
0.05952458456158638,
-0.13555116951465607,
-0.032781533896923065,
0.0303717702627182,
0.032836128026247025,
0.07398026436567307,
0.02700360119342804,
0.15233959257602692,
0.045419707894325256,
-0.1399167776107788,
-0.03306909650564194,
0.1472790241241455,
0.052500560879707336,
-0.0496600903570652,
-0.2182805836200714,
0.01408920157700777,
-0.05528281256556511,
-0.01708524487912655,
-0.055454183369874954,
0.03694803640246391,
-0.011749879457056522,
0.07595716416835785,
-0.007375023327767849,
-0.09272676706314087,
-0.03784307464957237,
0.08153027296066284,
0.03046773001551628,
0.024734370410442352,
-0.03269914165139198,
-0.009258480742573738,
0.12302085757255554,
0.04589492827653885,
-0.12262697517871857,
-0.062295734882354736,
-0.06839076429605484,
-0.05154973268508911,
-0.0650002658367157,
0.022915689274668694,
0.038908861577510834,
0.05505761876702309,
0.23116885125637054,
0.016313213855028152,
0.04027864709496498,
0.05966218188405037,
0.018224727362394333,
0.06587401777505875,
0.08866413682699203,
-0.07451413571834564,
-0.1387244015932083,
-0.023655133321881294,
0.09218919277191162,
-0.013067335821688175,
-0.01534258108586073,
-0.041533488780260086,
0.037448059767484665,
0.04953490570187569,
0.08874238282442093,
0.09831146895885468,
-0.00495241628959775,
-0.08803244680166245,
-0.05631173774600029,
0.22470924258232117,
-0.14550629258155823,
0.031238064169883728,
0.0056334249675273895,
-0.043396566063165665,
-0.04534805938601494,
0.01273350976407528,
0.014501597732305527,
-0.01902545802295208,
0.08428911119699478,
-0.07693427801132202,
-0.025045882910490036,
-0.11583743989467621,
-0.011372068896889687,
0.03858192637562752,
0.04335920512676239,
-0.007317811716347933,
-0.016311978921294212,
-0.0651993677020073,
-0.08105973154306412,
0.09475439786911011,
-0.09162557125091553,
-0.0627838596701622,
-0.029256287962198257,
-0.09391378611326218,
0.02034929022192955,
0.010406005196273327,
0.1306711882352829,
-0.024459049105644226,
0.04111799597740173,
-0.009269293397665024,
0.04533752426505089,
0.06686222553253174,
0.03944159671664238,
-0.05665213614702225,
0.05465978756546974,
-0.1899624466896057,
0.09879585355520248,
-0.08818880468606949,
0.016928695142269135,
-0.15658538043498993,
-0.017146117985248566,
0.04257412999868393,
0.01167234592139721,
0.028414756059646606,
0.132796511054039,
-0.22913873195648193,
-0.004244488663971424,
0.14441317319869995,
-0.08574318885803223,
-0.11476539820432663,
0.054769136011600494,
-0.06932775676250458,
0.1498631238937378,
0.028158606961369514,
-0.044199611991643906,
0.0586182065308094,
-0.15033309161663055,
-0.036397725343704224,
-0.032451432198286057,
-0.0134963383898139,
0.11743432283401489,
0.09807956963777542,
-0.05767912417650223,
0.049679938703775406,
0.019794145599007607,
-0.034401785582304,
-0.03952088952064514,
-0.054229043424129486,
-0.12324647605419159,
-0.00011583053128561005,
-0.06991583853960037,
0.050882939249277115,
-0.014478887431323528,
-0.06725030392408371,
-0.012803561985492706,
-0.17069055140018463,
0.005434661637991667,
0.08495832234621048,
0.022883426398038864,
-0.028854835778474808,
-0.09674251079559326,
0.007109369151294231,
-0.01427444163709879,
-0.030588457360863686,
-0.14336931705474854,
-0.028223445639014244,
0.016233012080192566,
-0.13307252526283264,
0.025557346642017365,
-0.09035106748342514,
0.05501190572977066,
0.016497578471899033,
-0.06816589832305908,
-0.010373461991548538,
-0.019091108813881874,
0.0216502845287323,
-0.05329190939664841,
-0.24334128201007843,
-0.01722516119480133,
-0.04339713230729103,
0.133962482213974,
-0.23471307754516602,
0.038586366921663284,
0.049660809338092804,
0.1124015524983406,
-0.016716323792934418,
-0.05565202236175537,
0.017690258100628853,
-0.07533963769674301,
-0.03396211937069893,
-0.05563192442059517,
-0.011474991217255592,
-0.023505788296461105,
-0.06483294069766998,
0.017944185063242912,
-0.10804668813943863,
-0.055726516991853714,
0.10619694739580154,
0.07162805646657944,
-0.1682709902524948,
-0.04068944230675697,
-0.029782600700855255,
-0.08793985098600388,
-0.07587973028421402,
-0.0600506030023098,
0.11610565334558487,
0.051249220967292786,
0.0248799379914999,
-0.07676307111978531,
-0.08321443945169449,
0.009665608406066895,
-0.03142841160297394,
-0.030802227556705475,
0.10151711106300354,
0.0546276792883873,
-0.12491796910762787,
0.09672330319881439,
0.08488339185714722,
0.009485108777880669,
0.09547876566648483,
-0.014722160063683987,
-0.11314918100833893,
-0.05422186106443405,
0.03864537924528122,
0.01141555979847908,
0.16091006994247437,
-0.08142610639333725,
0.07168760895729065,
0.04181913286447525,
-0.013820565305650234,
0.05383864790201187,
-0.0885326936841011,
0.013433114625513554,
0.005331513937562704,
-0.009217553772032261,
-0.01090509444475174,
-0.03616463765501976,
0.016965940594673157,
0.07300180941820145,
0.04422753304243088,
0.03951705992221832,
0.04714440554380417,
-0.04012023285031319,
-0.124353788793087,
0.188044935464859,
-0.10985521227121353,
-0.2090735286474228,
-0.1664348691701889,
0.03947494179010391,
0.0414016917347908,
-0.02403465285897255,
0.006811139639467001,
-0.04638814926147461,
-0.0960482507944107,
-0.07345325499773026,
0.010452182963490486,
0.03185215964913368,
-0.07690213620662689,
-0.07295124232769012,
0.06110667064785957,
0.054944101721048355,
-0.13127422332763672,
0.044475898146629333,
0.05347038805484772,
-0.042020294815301895,
0.00951246079057455,
0.07476464658975601,
0.07302352786064148,
0.1434478461742401,
-0.014585178345441818,
-0.02629876881837845,
0.05293054133653641,
0.2726307809352875,
-0.14616326987743378,
0.09917394071817398,
0.10504676401615143,
-0.07502242922782898,
0.07842106372117996,
0.18392342329025269,
0.03473827242851257,
-0.10896275192499161,
0.04205482453107834,
0.023977478966116905,
-0.015510372817516327,
-0.28489527106285095,
-0.058852482587099075,
-0.002095557516440749,
-0.10634876042604446,
0.06858765333890915,
0.07168055325746536,
0.09496310353279114,
0.0499887652695179,
-0.06343445926904678,
-0.06323956698179245,
0.028413956984877586,
0.0835690125823021,
-0.03389187529683113,
0.005504409316927195,
0.08112093061208725,
-0.0130075104534626,
0.01934760995209217,
0.11144039034843445,
0.00013006143853999674,
0.1967463344335556,
0.04124674201011658,
0.11403567343950272,
0.09253019094467163,
0.1009540781378746,
-0.0036874618381261826,
0.02181459777057171,
0.0176092442125082,
0.017793960869312286,
-0.003964628092944622,
-0.0827116146683693,
0.027733469381928444,
0.11505856364965439,
0.05944395810365677,
0.04347742348909378,
0.02591775916516781,
-0.05405104160308838,
0.05232509225606918,
0.1615372896194458,
-0.012515476904809475,
-0.19754628837108612,
-0.08197810500860214,
0.06580135226249695,
-0.07644964754581451,
-0.12534458935260773,
-0.02543124556541443,
0.05098867416381836,
-0.16615304350852966,
0.007056424394249916,
-0.04901806265115738,
0.09639961272478104,
-0.08429649472236633,
-0.036436278373003006,
0.06797602772712708,
0.07752055674791336,
-0.014598038978874683,
0.08345279097557068,
-0.18520165979862213,
0.13211354613304138,
0.022498903796076775,
0.07133203744888306,
-0.0913376733660698,
0.11071714013814926,
0.011407085694372654,
-0.019918419420719147,
0.14853812754154205,
0.008791794069111347,
-0.03365439176559448,
-0.06930877268314362,
-0.11262606829404831,
-0.017505040392279625,
0.09033272415399551,
-0.12104899436235428,
0.0651809573173523,
-0.0071342093870043755,
-0.01774504780769348,
0.01694452576339245,
-0.06679040938615799,
-0.14042213559150696,
-0.1715564876794815,
0.05809084698557854,
-0.13844364881515503,
0.05615687370300293,
-0.09431656450033188,
-0.07202436029911041,
-0.0016155987977981567,
0.17992760241031647,
-0.20321348309516907,
-0.06169824302196503,
-0.1347741186618805,
-0.07501953095197678,
0.18585415184497833,
-0.044601332396268845,
0.07141844928264618,
0.02146604284644127,
0.15811045467853546,
0.030258512124419212,
0.011359884403645992,
0.1046052798628807,
-0.08854047954082489,
-0.18915310502052307,
-0.06813960522413254,
0.1348077803850174,
0.16129066050052643,
0.04531673714518547,
-0.012333919294178486,
0.014277822338044643,
-0.06119927763938904,
-0.12292840331792831,
0.015596920624375343,
0.1454983800649643,
0.0990857183933258,
0.010087613947689533,
-0.022888604551553726,
-0.13282352685928345,
-0.06774920225143433,
-0.0726042166352272,
-0.0015443561132997274,
0.19177590310573578,
-0.06417536735534668,
0.14979088306427002,
0.12822969257831573,
-0.05848272889852524,
-0.19276347756385803,
0.04669109359383583,
0.069000743329525,
0.01834397204220295,
0.07020541280508041,
-0.16847732663154602,
0.09733588248491287,
0.02898852899670601,
-0.05729665607213974,
0.13580778241157532,
-0.13107886910438538,
-0.15448158979415894,
0.08831647038459778,
0.04882295802235603,
-0.2262103259563446,
-0.10366038978099823,
-0.09707769751548767,
-0.031071871519088745,
-0.1146460697054863,
0.07710393518209457,
0.01211413275450468,
0.013028180226683617,
0.031059786677360535,
0.03678468242287636,
0.016896773129701614,
-0.04916473105549812,
0.2063187062740326,
0.0016969762509688735,
0.03230544179677963,
-0.056119389832019806,
-0.10342826694250107,
0.051701873540878296,
-0.04762253537774086,
0.08893739432096481,
-0.0053844694048166275,
0.022453879937529564,
-0.12622913718223572,
-0.044389307498931885,
-0.062125153839588165,
0.022922124713659286,
-0.09970542043447495,
-0.09080114215612411,
-0.04736486077308655,
0.10589653998613358,
0.08302788436412811,
-0.04514247551560402,
-0.004103046376258135,
-0.0666576623916626,
0.032882098108530045,
0.2032151073217392,
0.1929367184638977,
0.06663692742586136,
-0.07253258675336838,
0.009046455845236778,
-0.018093712627887726,
0.050130147486925125,
-0.23242439329624176,
0.049031179398298264,
0.04113193228840828,
0.012619627639651299,
0.10872913897037506,
-0.02524675987660885,
-0.14918451011180878,
-0.055236220359802246,
0.06709957122802734,
-0.03111400455236435,
-0.15658026933670044,
-0.023688839748501778,
0.03067680448293686,
-0.20947334170341492,
-0.044014886021614075,
0.01587926410138607,
-0.02002403698861599,
-0.042499806731939316,
0.01665526069700718,
0.08743304759263992,
-0.021561264991760254,
0.13377492129802704,
0.07850117981433868,
0.09247373044490814,
-0.10055173933506012,
0.06840094923973083,
0.06645233184099197,
-0.05339835584163666,
0.028161196038126945,
0.07476615160703659,
-0.042405035346746445,
-0.035747822374105453,
0.09663008898496628,
0.06123791262507439,
0.03964632377028465,
-0.036477282643318176,
0.005326288752257824,
-0.04084358736872673,
0.05450873449444771,
0.0944189578294754,
0.05076982080936432,
0.0036751162260770798,
0.04260255768895149,
0.027140185236930847,
-0.08227885514497757,
0.11172809451818466,
0.06386930495500565,
0.025329703465104103,
-0.038993097841739655,
-0.04373280331492424,
0.002252106089144945,
-0.018430020660161972,
-0.016889996826648712,
-0.009116435423493385,
-0.08424700051546097,
-0.018541976809501648,
-0.13401533663272858,
0.051318034529685974,
-0.08417348563671112,
0.01877552829682827,
0.01756095699965954,
-0.055711470544338226,
0.0024153655394911766,
0.012855934910476208,
-0.07194148004055023,
-0.051575109362602234,
-0.004284387920051813,
0.12178406119346619,
-0.1211189329624176,
0.03835378214716911,
0.08794762939214706,
-0.09852778911590576,
0.0791720524430275,
0.005494916811585426,
0.008464377373456955,
0.024895355105400085,
-0.18252460658550262,
0.0672266036272049,
-0.03044562041759491,
-0.005109885707497597,
0.02691052481532097,
-0.23448222875595093,
-0.012039052322506905,
-0.03837910667061806,
-0.024796128273010254,
0.008384019136428833,
-0.029294239357113838,
-0.13202925026416779,
0.06831452995538712,
-0.008129688911139965,
-0.07976018637418747,
-0.03232262656092644,
0.03248937800526619,
0.1150931790471077,
-0.03320934996008873,
0.15468232333660126,
-0.014854609966278076,
0.06831645220518112,
-0.17717918753623962,
-0.007525429129600525,
-0.01218792051076889,
0.04008686542510986,
-0.025829080492258072,
-0.019492197781801224,
0.0530434176325798,
-0.03438514471054077,
0.20207522809505463,
-0.03973902389407158,
0.05719076469540596,
0.05051136389374733,
0.024129599332809448,
-0.021325254812836647,
0.08590327948331833,
0.06773733347654343,
-0.009460847824811935,
0.017451344057917595,
0.024776218459010124,
-0.006738245952874422,
-0.044583726674318314,
-0.15952926874160767,
0.04797336086630821,
0.1605387032032013,
0.0396244153380394,
0.012963760644197464,
0.05859352648258209,
-0.1012553945183754,
-0.08488790690898895,
0.14870989322662354,
-0.006342487409710884,
-0.042128585278987885,
-0.07494187355041504,
0.13942569494247437,
0.11011563241481781,
-0.20010459423065186,
0.08136965334415436,
-0.07708682119846344,
-0.07137563824653625,
-0.0995519682765007,
-0.1616814136505127,
-0.0615156851708889,
-0.04828427731990814,
-0.010912684723734856,
-0.0690416470170021,
0.06403901427984238,
0.09547561407089233,
0.004315052181482315,
-0.024040311574935913,
0.08755194395780563,
-0.0018782903207466006,
-0.020996680483222008,
0.02697068639099598,
0.058538977056741714,
0.012426158413290977,
-0.09763054549694061,
0.016930997371673584,
0.0011834767647087574,
0.02868543565273285,
0.06847021728754044,
0.007764856796711683,
-0.029842454940080643,
-0.013343650847673416,
-0.0286702997982502,
-0.11726367473602295,
0.040102262049913406,
-0.01678517833352089,
-0.03875076770782471,
0.1333659589290619,
0.02114959806203842,
0.0038543532136827707,
-0.022621553391218185,
0.2308064103126526,
-0.07327963411808014,
-0.09325335919857025,
-0.166330948472023,
0.050491154193878174,
-0.06038537621498108,
0.034505799412727356,
0.03996086120605469,
-0.10869856923818588,
0.029992057010531425,
0.13118189573287964,
0.14026902616024017,
-0.008876928128302097,
0.0036211975384503603,
0.05038469657301903,
-0.0036253894213587046,
-0.04586362838745117,
0.02561703324317932,
0.043024804443120956,
0.09955552965402603,
-0.05872758850455284,
0.08999945968389511,
-0.006494374014437199,
-0.08447250723838806,
0.018750805407762527,
0.10903485864400864,
-0.008388829417526722,
0.009877016767859459,
-0.07118666917085648,
0.14270338416099548,
-0.062381234019994736,
-0.2417825609445572,
0.04819389805197716,
-0.0710114911198616,
-0.1596689522266388,
-0.037983741611242294,
0.034044165164232254,
-0.01998881809413433,
0.019032923504710197,
0.0866890475153923,
-0.046426404267549515,
0.1776016354560852,
0.03233465552330017,
-0.07235930114984512,
-0.0660339742898941,
0.0721723735332489,
-0.10748938471078873,
0.2771540880203247,
0.01831246353685856,
0.07063016295433044,
0.1055036336183548,
-0.011201636865735054,
-0.12915973365306854,
0.027453362941741943,
0.09373576939105988,
-0.06722307950258255,
0.08200003951787949,
0.19271773099899292,
-0.004277651198208332,
0.14646238088607788,
0.06649067997932434,
-0.048153866082429886,
0.03200778737664223,
-0.1218237578868866,
-0.06316866725683212,
-0.10911966860294342,
0.08467663824558258,
-0.07638223469257355,
0.16333088278770447,
0.1414930373430252,
-0.0715751200914383,
-0.008098547346889973,
-0.024884533137083054,
0.0859745591878891,
-0.009580979123711586,
0.12698538601398468,
-0.00017129497427958995,
-0.20348015427589417,
0.021495534107089043,
0.032624583691358566,
0.10770298540592194,
-0.2056039422750473,
-0.0709550678730011,
0.060240790247917175,
-0.03002275340259075,
-0.05654515326023102,
0.11777248978614807,
0.060435157269239426,
0.04357694834470749,
-0.03754099830985069,
-0.04362514242529869,
-0.024335041642189026,
0.12957318127155304,
-0.10351408272981644,
-0.01430934201925993
] |
null | null | spacy | ## Introduction
Als data scientist nam ik deel aan de hackathon georganiseerd door de Ministeries van BZK en VWS.
Ik toelegde mij op Challenge 2: het verbeteren van de gebruikerservaring op de website en
het optimaliseren van relevante informatieverschaffing met behulp van design en data science.
Een belangrijk onderdeel van mijn bijdrage was de implementatie van een text classification model.
Dit model analyseert meningen over de overheidssite en classificeert ze als positief of negatief.
Het biedt een waardevol instrument om de gebruikerservaring te monitoren en te verbeteren.
De hackathon bood een vruchtbare omgeving om innovatieve oplossingen te ontwikkelen die de interactie tussen de overheid en haar burgers verbeteren.
Mijn text classification model draagt bij aan een meer gepersonaliseerde en efficiënte gebruikerservaring op overheidswebsites.
## Prompt with Prodigy
Go to folder envs (home/anaconda3/envs) and open the terminal (Ctl+ALT+T)
run: source prodi-env/bin/activate where prodi-env is the folder of processing
run: prodigy textcat.manual meningen_dataset ./meningen.txt --label Positief,Negatief
run to create model : prodigy train /home/gebruiker/anaconda3/hack_model --textcat meningen_dataset --lang "nl" --label-stats --verbose
or to export data to spacy
Type: prodigy data-to-spacy /home/gebruiker/anaconda3/envs/corpus --textcat meningen_dataset --lang "nl" --eval-split 0.1
To use this data for training with spaCy, you can run:
python -m spacy train --output /home/gebruiker/anaconda3/meningen_model /home/gebruiker/anaconda3/envs/corpus/config.cfg --paths.train /home/gebruiker/anaconda3/envs/corpus/train.spacy --paths.dev /home/gebruiker/anaconda3/envs/corpus/dev.spacy
## Upload model to huggingface
huggingface-cli login
python -m spacy package /home/gebruiker/anaconda3/meningen_model/model-last /home/gebruiker/anaconda3/output --build wheel
cd /home/gebruiker/anaconda3/output/nl_meningen-0.0.0/dist/
python -m spacy huggingface-hub push nl_meningen-0.0.0-py3-none-any.whl
To download the data set from the database
run: python -m prodigy db-out meningen_dataset > meningen_dataset.jsonl
| Feature | Description |
| --- | --- |
| **Name** | `nl_meningen` |
| **Version** | `0.0.0` |
| **spaCy** | `>=3.4.3,<3.5.0` |
| **Default Pipeline** | `textcat` |
| **Components** | `textcat` |
| **Vectors** | 0 keys, 0 unique vectors (0 dimensions) |
| **Sources** | n/a |
| **License** | n/a |
| **Author** | [n/a]() |
### Label Scheme
<details>
<summary>View label scheme (2 labels for 1 components)</summary>
| Component | Labels |
| --- | --- |
| **`textcat`** | `Positief`, `Negatief` |
</details>
### Accuracy
| Type | Score |
| --- | --- |
| `CATS_SCORE` | 96.54 |
| `CATS_MICRO_P` | 96.77 |
| `CATS_MICRO_R` | 96.77 |
| `CATS_MICRO_F` | 96.77 |
| `CATS_MACRO_P` | 95.83 |
| `CATS_MACRO_R` | 97.50 |
| `CATS_MACRO_F` | 96.54 |
| `CATS_MACRO_AUC` | 98.18 |
| `CATS_MACRO_AUC_PER_TYPE` | 0.00 |
| `TEXTCAT_LOSS` | 8.31 |
| {"language": ["nl"], "license": "mit", "tags": ["spacy", "text-classification"], "pipeline_tag": "text-classification", "model-index": [{"name": "nl_meningen", "results": []}]} | text-classification | RaThorat/nl_meningen | [
"spacy",
"text-classification",
"nl",
"license:mit",
"region:us"
] | 2023-11-11T08:32:48+00:00 | [] | [
"nl"
] | TAGS
#spacy #text-classification #nl #license-mit #region-us
| Introduction
------------
Als data scientist nam ik deel aan de hackathon georganiseerd door de Ministeries van BZK en VWS.
Ik toelegde mij op Challenge 2: het verbeteren van de gebruikerservaring op de website en
het optimaliseren van relevante informatieverschaffing met behulp van design en data science.
Een belangrijk onderdeel van mijn bijdrage was de implementatie van een text classification model.
Dit model analyseert meningen over de overheidssite en classificeert ze als positief of negatief.
Het biedt een waardevol instrument om de gebruikerservaring te monitoren en te verbeteren.
De hackathon bood een vruchtbare omgeving om innovatieve oplossingen te ontwikkelen die de interactie tussen de overheid en haar burgers verbeteren.
Mijn text classification model draagt bij aan een meer gepersonaliseerde en efficiënte gebruikerservaring op overheidswebsites.
Prompt with Prodigy
-------------------
Go to folder envs (home/anaconda3/envs) and open the terminal (Ctl+ALT+T)
run: source prodi-env/bin/activate where prodi-env is the folder of processing
run: prodigy URL meningen\_dataset ./URL --label Positief,Negatief
run to create model : prodigy train /home/gebruiker/anaconda3/hack\_model --textcat meningen\_dataset --lang "nl" --label-stats --verbose
or to export data to spacy
Type: prodigy data-to-spacy /home/gebruiker/anaconda3/envs/corpus --textcat meningen\_dataset --lang "nl" --eval-split 0.1
To use this data for training with spaCy, you can run:
python -m spacy train --output /home/gebruiker/anaconda3/meningen\_model /home/gebruiker/anaconda3/envs/corpus/URL --URL /home/gebruiker/anaconda3/envs/corpus/URL --URL /home/gebruiker/anaconda3/envs/corpus/URL
Upload model to huggingface
---------------------------
huggingface-cli login
python -m spacy package /home/gebruiker/anaconda3/meningen\_model/model-last /home/gebruiker/anaconda3/output --build wheel
cd /home/gebruiker/anaconda3/output/nl\_meningen-0.0.0/dist/
python -m spacy huggingface-hub push nl\_meningen-0.0.URL
To download the data set from the database
run: python -m prodigy db-out meningen\_dataset > meningen\_dataset.jsonl
### Label Scheme
View label scheme (2 labels for 1 components)
### Accuracy
| [
"### Label Scheme\n\n\n\nView label scheme (2 labels for 1 components)",
"### Accuracy"
] | [
"TAGS\n#spacy #text-classification #nl #license-mit #region-us \n",
"### Label Scheme\n\n\n\nView label scheme (2 labels for 1 components)",
"### Accuracy"
] | [
21,
16,
5
] | [
"passage: TAGS\n#spacy #text-classification #nl #license-mit #region-us \n### Label Scheme\n\n\n\nView label scheme (2 labels for 1 components)### Accuracy"
] | [
0.003535201773047447,
0.10683445632457733,
-0.004225564654916525,
0.0402759350836277,
0.05333593860268593,
0.032496269792318344,
0.25717806816101074,
0.07924117147922516,
0.20149540901184082,
0.02907249890267849,
0.03852025046944618,
0.05813179165124893,
0.05411922186613083,
0.2070614993572235,
-0.09852825105190277,
-0.241278737783432,
0.05810550972819328,
-0.01721271499991417,
0.07580121606588364,
0.11984147131443024,
0.08698119968175888,
-0.11369355767965317,
0.04933210089802742,
-0.04681159183382988,
-0.17094817757606506,
0.013272508047521114,
0.017172513529658318,
-0.09593997895717621,
0.08506456762552261,
-0.00829984713345766,
0.17275437712669373,
0.05211176350712776,
0.06219622120261192,
-0.25855931639671326,
0.0028626401908695698,
-0.04973338544368744,
-0.0993218943476677,
0.05283272638916969,
0.036327607929706573,
-0.041547972708940506,
0.042306482791900635,
-0.07062714546918869,
0.04421898350119591,
0.04837274178862572,
-0.13805030286312103,
-0.11425386369228363,
-0.0558837465941906,
0.1342315524816513,
0.09568425267934799,
-0.06995054334402084,
-0.004541894420981407,
0.02013886161148548,
-0.11121825873851776,
0.07616551965475082,
0.150772362947464,
-0.3626418113708496,
0.018462032079696655,
0.1998109668493271,
-0.05571303889155388,
0.11487538367509842,
-0.0541924424469471,
0.1379292756319046,
0.12205683439970016,
-0.04646952450275421,
-0.07352539896965027,
0.00043456157436594367,
0.04977153241634369,
0.053244780749082565,
-0.09563204646110535,
-0.10685853660106659,
0.4667498767375946,
0.05383504182100296,
-0.017485730350017548,
-0.11723979562520981,
-0.06699533760547638,
-0.15923255681991577,
-0.046140365302562714,
-0.0028930753469467163,
0.041123442351818085,
0.05443495512008667,
0.11132802814245224,
0.058370087295770645,
-0.10738860070705414,
-0.04714730754494667,
-0.18105380237102509,
0.2481926828622818,
0.005402297712862492,
0.09147313237190247,
-0.1651352345943451,
0.026017803698778152,
-0.06841599196195602,
-0.08763787150382996,
0.014137099497020245,
-0.04951837286353111,
-0.034583888947963715,
-0.02341107279062271,
0.012279876507818699,
0.09614600986242294,
0.07748355716466904,
0.07749895751476288,
-0.013431779108941555,
0.023761127144098282,
-0.12531110644340515,
0.11449262499809265,
0.1179928332567215,
0.1622225046157837,
0.0458834283053875,
0.007677210494875908,
-0.04266422986984253,
-0.1136568933725357,
0.12447473406791687,
-0.05349195376038551,
-0.18994006514549255,
0.011743392795324326,
0.03855425864458084,
0.1266600787639618,
-0.07531775534152985,
-0.04451026767492294,
-0.13832831382751465,
-0.011566673405468464,
0.06185641884803772,
-0.12103743851184845,
0.04587964341044426,
0.012559391558170319,
-0.006620317697525024,
0.0312189944088459,
-0.09088493883609772,
-0.01703181490302086,
0.04407905042171478,
0.03706400841474533,
-0.08058947324752808,
0.0439349040389061,
-0.010871724225580692,
-0.07206618785858154,
0.06119805946946144,
-0.05913656949996948,
-0.003668486373499036,
-0.04431402310729027,
-0.1418004184961319,
0.010243033058941364,
-0.022089090198278427,
-0.07011473178863525,
0.0232778862118721,
-0.0633290708065033,
-0.03889399766921997,
0.015127159655094147,
0.002719523850828409,
-0.07934793829917908,
-0.09068040549755096,
0.05046972259879112,
-0.0499529168009758,
0.12200633436441422,
-0.12293175607919693,
0.026479847729206085,
-0.09177711606025696,
0.05590260773897171,
-0.12767687439918518,
0.04600251093506813,
-0.08052898943424225,
0.03914627432823181,
-0.035020362585783005,
-0.06616077572107315,
0.0032890797592699528,
0.008351144380867481,
-0.13472655415534973,
0.1288609653711319,
-0.2296665608882904,
-0.06603199988603592,
0.23424901068210602,
-0.20065228641033173,
-0.1282372623682022,
0.054298002272844315,
-0.018805481493473053,
0.08666267991065979,
0.08883626013994217,
0.20679785311222076,
0.009320552460849285,
-0.1548449695110321,
0.01748553290963173,
0.12416655570268631,
-0.04932432621717453,
-0.024768570438027382,
0.07845965027809143,
0.007080492097884417,
-0.018371444195508957,
0.030092552304267883,
0.04164206609129906,
-0.10568523406982422,
-0.035322122275829315,
-0.09229809790849686,
-0.039203960448503494,
0.04921598359942436,
0.08067086338996887,
0.029562292620539665,
0.014896703884005547,
-0.07224860042333603,
0.012052344158291817,
0.04451726749539375,
0.03424616903066635,
0.0432092547416687,
-0.017542915418744087,
-0.038046061992645264,
0.06828918308019638,
-0.03242067992687225,
-0.05131214112043381,
-0.1375032514333725,
-0.13281218707561493,
0.033462896943092346,
0.014744404703378677,
0.07933428138494492,
0.1906343251466751,
-0.016140688210725784,
0.01243768259882927,
-0.02301274612545967,
0.0025201437529176474,
-0.021472863852977753,
0.06901010870933533,
-0.0273048747330904,
-0.17092519998550415,
0.004059183411300182,
-0.06395787000656128,
0.04922761768102646,
-0.021473107859492302,
0.012563767842948437,
0.21995654702186584,
0.048569776117801666,
0.04360238462686539,
0.06398046016693115,
0.0019681130070239305,
0.05503585562109947,
-0.06870266795158386,
-0.01615843176841736,
0.07795373350381851,
-0.0856289491057396,
-0.09470434486865997,
0.007495801895856857,
-0.12511757016181946,
0.036486078053712845,
0.16568993031978607,
-0.09636647999286652,
-0.027445390820503235,
-0.10158631950616837,
-0.018598856404423714,
0.016405640169978142,
-0.14108026027679443,
-0.01455016154795885,
-0.08768412470817566,
-0.03398596867918968,
0.05784398317337036,
-0.1163262352347374,
-0.0689118281006813,
-0.006047690752893686,
-0.04500756412744522,
-0.16687855124473572,
0.11663661897182465,
0.0073501942679286,
-0.22622403502464294,
0.18423232436180115,
0.28905153274536133,
0.1618516445159912,
0.1423168182373047,
-0.038077130913734436,
-0.00392815750092268,
-0.057804349809885025,
0.032443031668663025,
-0.06351536512374878,
0.1483079344034195,
-0.14992283284664154,
-0.0010971638839691877,
0.06323238462209702,
0.0617855079472065,
0.015932926908135414,
-0.24201206862926483,
-0.028371140360832214,
-0.03845575824379921,
-0.09257776290178299,
-0.11484416574239731,
-0.04241064563393593,
0.028911476954817772,
0.152775377035141,
0.03522784262895584,
-0.16924670338630676,
0.0976148396730423,
-0.05177902802824974,
-0.06834159791469574,
0.11208890378475189,
-0.12429127097129822,
-0.2729613780975342,
-0.1965971142053604,
-0.08730830252170563,
-0.08686736971139908,
0.06914523243904114,
0.011688247323036194,
-0.06651134788990021,
-0.0278713908046484,
-0.006514194421470165,
-0.04740630090236664,
-0.1648816466331482,
-0.06817636638879776,
-0.06426944583654404,
0.12844854593276978,
-0.15601325035095215,
-0.08195915073156357,
-0.10016216337680817,
-0.055872101336717606,
0.05834600701928139,
0.11475928872823715,
-0.15760967135429382,
0.06647844612598419,
0.2918725609779358,
-0.05122015252709389,
0.0889422595500946,
-0.042333632707595825,
0.06552611291408539,
-0.09601838141679764,
0.01966932602226734,
0.08889120072126389,
0.036830149590969086,
0.055473603308200836,
0.2894071936607361,
0.07120067626237869,
-0.1512133777141571,
-0.0007402413175441325,
-0.07549849897623062,
-0.13258814811706543,
-0.1825537383556366,
-0.14059391617774963,
-0.05995062738656998,
0.04027221351861954,
0.040790822356939316,
0.0576847568154335,
0.04087420180439949,
0.0009035173570737243,
-0.009607234038412571,
-0.012139823287725449,
0.11215034127235413,
0.06780102103948593,
0.18142184615135193,
-0.0559728778898716,
0.08132240921258926,
-0.0785522386431694,
-0.08655863255262375,
0.09539201855659485,
0.1114889457821846,
0.16576676070690155,
0.18971048295497894,
0.09574993699789047,
0.10339287668466568,
-0.012892713770270348,
0.1320178359746933,
0.038434501737356186,
0.16248375177383423,
-0.005964479874819517,
-0.042914021760225296,
-0.0750473365187645,
0.003799517871811986,
0.08631395548582077,
-0.023887507617473602,
-0.06634548306465149,
-0.02650780975818634,
-0.11740875244140625,
0.09949588775634766,
-0.040539756417274475,
0.2333448976278305,
-0.13221721351146698,
0.0443226657807827,
0.15130962431430817,
0.07958661019802094,
-0.06332467496395111,
0.1222347691655159,
0.0583718866109848,
-0.08094841986894608,
0.09970652312040329,
0.018167829141020775,
0.12764474749565125,
-0.07601654529571533,
-0.010632982477545738,
-0.10152134299278259,
-0.13951413333415985,
-0.0027037872932851315,
0.12866854667663574,
-0.14838990569114685,
0.3292461335659027,
0.046433914452791214,
-0.045748282223939896,
-0.0625850111246109,
-0.03279885649681091,
-0.01405035238713026,
0.2301560938358307,
0.19482149183750153,
0.053453534841537476,
-0.24859382212162018,
-0.19801512360572815,
-0.023701591417193413,
-0.0537569560110569,
0.1908796727657318,
-0.03375124931335449,
0.0031201813835650682,
0.007187072653323412,
0.013266346417367458,
-0.028331255540251732,
0.04542476311326027,
-0.030799685046076775,
-0.07047626376152039,
0.016530686989426613,
0.10308516770601273,
-0.05579240620136261,
-0.031221909448504448,
-0.03877091780304909,
-0.14084285497665405,
0.16497987508773804,
-0.07828707993030548,
-0.08106335252523422,
-0.06841669231653214,
-0.029387686401605606,
0.019139906391501427,
-0.016304567456245422,
-0.05733019486069679,
-0.0452088788151741,
0.12161829322576523,
-0.06532803922891617,
-0.10167428106069565,
0.09598711878061295,
-0.005148183088749647,
-0.06508221477270126,
-0.06326364725828171,
0.20247061550617218,
-0.03438354656100273,
0.016163920983672142,
0.07993204146623611,
0.08131998032331467,
-0.025354215875267982,
-0.1264997273683548,
0.08889378607273102,
0.022046107798814774,
-0.004787299316376448,
0.2701236307621002,
-0.11375459283590317,
-0.16358928382396698,
-0.031189505010843277,
0.004306938964873552,
0.16151665151119232,
0.27911409735679626,
-0.08818554133176804,
0.17167308926582336,
0.05782885476946831,
-0.07395240664482117,
-0.22198526561260223,
-0.06770578771829605,
-0.19170117378234863,
-0.016443563625216484,
0.00268674292601645,
-0.05286218971014023,
0.09443290531635284,
0.03661951422691345,
-0.07934343069791794,
0.08815426379442215,
-0.27895814180374146,
-0.09475070238113403,
0.14826372265815735,
0.004457681905478239,
0.19076770544052124,
-0.06253833323717117,
-0.14403869211673737,
-0.10272863507270813,
-0.17074184119701385,
0.21457944810390472,
0.0036008688621222973,
0.09746070206165314,
-0.034685101360082626,
0.029170555993914604,
0.010367149487137794,
0.013490306213498116,
0.23856014013290405,
0.1171347051858902,
0.10266102850437164,
0.0026446182746440172,
-0.18858835101127625,
0.21787704527378082,
0.00539820920675993,
0.015504535287618637,
0.09276383370161057,
-0.010799703188240528,
-0.10475213080644608,
-0.01930486410856247,
0.01963283307850361,
0.02473687008023262,
-0.07006088644266129,
-0.05823889747262001,
-0.1414613425731659,
-0.013034584932029247,
-0.06689359992742538,
-0.049057673662900925,
0.3231305778026581,
-0.05416187644004822,
0.10430815070867538,
0.20558752119541168,
0.004776260815560818,
-0.058524858206510544,
0.05901865288615227,
-0.08400025218725204,
-0.06907565146684647,
0.033853929489851,
-0.17765186727046967,
0.06074760854244232,
0.12104965001344681,
0.04069964215159416,
0.15701408684253693,
0.1086399182677269,
-0.02151431329548359,
-0.034510307013988495,
0.1255350112915039,
-0.09705186635255814,
-0.2111341953277588,
-0.009945579804480076,
-0.14175036549568176,
0.0641450434923172,
0.02045116014778614,
0.07412134855985641,
0.03541119769215584,
-0.006047585979104042,
0.02463582344353199,
0.05580656975507736,
-0.04244554787874222,
0.03509954363107681,
0.009169694036245346,
0.06555451452732086,
-0.1324726641178131,
0.14951765537261963,
0.12016294151544571,
0.008084121160209179,
-0.055516909807920456,
-0.02839982695877552,
-0.1179833635687828,
-0.03405191749334335,
-0.019260888919234276,
0.11264528334140778,
-0.0891360491514206,
-0.12725351750850677,
-0.06620574742555618,
-0.1819705069065094,
0.013000039383769035,
0.12362111359834671,
0.13065479695796967,
0.13499009609222412,
0.0032138980459421873,
-0.07077217102050781,
0.07771584391593933,
0.0945010706782341,
-0.08942775428295135,
0.01445147953927517,
-0.14092162251472473,
0.0851355567574501,
-0.023724760860204697,
0.12947095930576324,
-0.09218216687440872,
-0.09729546308517456,
-0.135625422000885,
0.039573267102241516,
-0.048570096492767334,
0.09290752559900284,
-0.044133611023426056,
0.00032682219170965254,
-0.0016070266719907522,
-0.018606707453727722,
-0.059564441442489624,
-0.03808903321623802,
-0.10409282892942429,
0.06834371387958527,
-0.018706893548369408,
0.15242497622966766,
-0.14656399190425873,
-0.04423163831233978,
0.1110510528087616,
-0.029388263821601868,
0.05188152939081192,
0.02698860876262188,
0.008689667098224163,
0.08834291249513626,
-0.26544272899627686,
0.017890088260173798,
0.10053626447916031,
0.044660866260528564,
0.05765751749277115,
-0.10128559172153473,
-0.019371740520000458,
0.05595184862613678,
-0.07077338546514511,
0.10064474493265152,
-0.08709558099508286,
-0.11714265495538712,
-0.09575851261615753,
-0.1315770447254181,
-0.2033124715089798,
-0.02776184119284153,
0.049537040293216705,
0.15391908586025238,
0.013734623789787292,
0.044446125626564026,
0.00308785866945982,
0.016805823892354965,
-0.030972298234701157,
-0.0050948732532560825,
-0.03837205469608307,
-0.09916085004806519,
-0.05965515598654747,
-0.05093769356608391,
-0.041255563497543335,
-0.01677830144762993,
0.3434852361679077,
0.09576800465583801,
-0.06377612054347992,
0.055801697075366974,
0.20690642297267914,
-0.07212284952402115,
0.018190814182162285,
0.27722495794296265,
0.05498315021395683,
-0.033555563539266586,
0.012964428402483463,
-0.009846726432442665,
0.002742975950241089,
0.023232372477650642,
0.2158808410167694,
0.09709315747022629,
-0.11445710808038712,
0.05002955347299576,
0.045303381979465485,
0.0025769895873963833,
-0.06914206594228745,
0.07051555812358856,
0.06858193129301071,
0.02396938018500805,
0.03254633769392967,
-0.0547407791018486,
0.1069236770272255,
-0.17925308644771576,
0.1184530183672905,
-0.006374026648700237,
-0.0952826589345932,
-0.20193156599998474,
-0.10338230431079865,
-0.09020698070526123,
-0.041766099631786346,
0.006470527034252882,
-0.1114528477191925,
0.015548872761428356,
0.11078650504350662,
0.03135504573583603,
-0.02597888559103012,
-0.003911213018000126,
-0.27520570158958435,
-0.0047803884372115135,
0.07426811754703522,
-0.00375216081738472,
0.03758672997355461,
-0.0819835513830185,
-0.025871025398373604,
-0.0030299914069473743,
-0.07238415628671646,
-0.03447229042649269,
0.041088562458753586,
0.09833014756441116,
-0.0721336379647255,
-0.20404469966888428,
-0.05391891300678253,
-0.0404336079955101,
-0.007376898545771837,
0.03607071191072464,
-0.04085775837302208,
0.05918935313820839,
-0.004614005330950022,
0.04562404379248619,
0.2621121406555176,
-0.05158565938472748,
-0.033780697733163834,
-0.007402043789625168,
0.2458140105009079,
-0.03357226401567459,
0.12099840492010117,
0.04905152693390846,
-0.06875873357057571,
-0.048514239490032196,
0.07287068665027618,
0.17978955805301666,
0.011876275762915611,
0.00801553949713707,
0.002531328471377492,
0.02555038221180439,
0.11894096434116364,
0.013334305956959724,
-0.04445613920688629,
0.1816594898700714,
-0.03289958834648132,
0.08176004886627197,
-0.09232732653617859,
-0.030525382608175278,
-0.08559391647577286,
-0.0266634039580822,
0.1079295352101326,
-0.06896750628948212,
-0.14761367440223694,
0.1956959217786789,
-0.0949283093214035,
0.03759092837572098,
0.2450646013021469,
-0.1522059291601181,
-0.07550586014986038,
0.02499731071293354,
0.09814251959323883,
-0.021972263231873512,
0.04145997017621994,
-0.11028626561164856,
-0.0126090869307518,
0.012419378384947777,
0.04100841283798218,
-0.22011587023735046,
-0.012775467708706856,
0.024457788094878197,
-0.0646386593580246,
0.06786314398050308,
-0.003889060113579035,
0.15711738169193268,
0.0847882479429245,
-0.023884866386651993,
-0.026172224432229996,
0.1238105446100235,
0.006232204847037792,
0.07751014828681946,
-0.02567516639828682,
0.062125906348228455,
-0.015395011752843857,
-0.08356280624866486,
0.15135179460048676,
-0.0683460682630539,
0.0019493947038426995,
0.02688681334257126,
-0.10356605052947998,
-0.06931452453136444,
0.04031054675579071,
-0.10801174491643906,
0.06266952306032181,
0.06636393070220947,
-0.020610712468624115,
0.0005925324512645602,
-0.005181523971259594,
0.03811901435256004,
0.04671977832913399,
-0.06384417414665222,
0.04265100881457329,
0.035613108426332474,
-0.037789519876241684,
0.11673510819673538,
0.006804320495575666,
-0.2445911467075348,
-0.029896065592765808,
-0.07727815955877304,
0.05255953595042229,
-0.09187603741884232,
0.1096922978758812,
0.12172552943229675,
0.022698039188981056,
-0.04383759945631027,
-0.2944043278694153,
0.07710521668195724,
0.061543866991996765,
-0.025612905621528625,
-0.04784347862005234
] |
null | null | transformers | # airoboros-2.2.1-y34b
Unofficial training of [Jon Durbin](https://huggingface.co/jondurbin)'s powerful airoboros 2.2.1 dataset on [Charles Goddard](https://huggingface.co/chargoddard)'s [Llama-fied Yi 34B model](https://huggingface.co/chargoddard/Yi-34B-Llama), aiming to bring the instruction-following capabilities of the airoboros dataset to the new Yi 34B foundational model.
As a 34B model with grouped-query attention, users will be able to conduct inference on the model with 4bit quantization on a single 24gb consumer GPU.
This Yi model is "Llama-fied", meaning the keys are renamed to match those used in Llama models, eliminating the need for remote code and ensuring compatibility with existing training and inference repositories. Architecturally this is similar to a Llama 2 34B model with an expanded vocab size of 64000.
This model is retrained thanks to compute provided by [alpin](https://huggingface.co/alpindale) with a monkeypatch to the trainer to resolve EOS token issues in the prompter. A smaller batch size and learning rate were used and training was extended by one epoch. 8-bit lora was also used instead of qlora.
## Usage:
The intended prompt format is the modified Vicuna 1.1 instruction format used by airoboros v2:
```
A chat.
USER: {prompt}
ASSISTANT:
```
## Training Details:
The model was trained using [axolotl](https://github.com/OpenAccess-AI-Collective/axolotl) as a lora adapter on 1x A100 80gb GPU for 4 epochs, before being fused to the base model with PEFT.
## License:
This model is built on the Yi 34B base model, which has its own custom license included in this repository.
Please refer to the [airoboros 2.2.1 dataset card](https://huggingface.co/datasets/jondurbin/airoboros-2.2.1) regarding the usage of gpt-4 API calls in creating the dataset. | {"language": ["en"], "license": "other", "library_name": "transformers", "tags": ["Yi", "llama", "llama 2"], "datasets": ["jondurbin/airoboros-2.2.1"], "inference": false, "pipeline_tag": "text-generation", "license_name": "yi-license", "license_link": "LICENSE"} | text-generation | LoneStriker/airoboros-2.2.1-y34b-4.0bpw-h6-exl2 | [
"transformers",
"safetensors",
"llama",
"text-generation",
"Yi",
"llama 2",
"en",
"dataset:jondurbin/airoboros-2.2.1",
"license:other",
"autotrain_compatible",
"text-generation-inference",
"region:us"
] | 2023-11-11T08:48:59+00:00 | [] | [
"en"
] | TAGS
#transformers #safetensors #llama #text-generation #Yi #llama 2 #en #dataset-jondurbin/airoboros-2.2.1 #license-other #autotrain_compatible #text-generation-inference #region-us
| # airoboros-2.2.1-y34b
Unofficial training of Jon Durbin's powerful airoboros 2.2.1 dataset on Charles Goddard's Llama-fied Yi 34B model, aiming to bring the instruction-following capabilities of the airoboros dataset to the new Yi 34B foundational model.
As a 34B model with grouped-query attention, users will be able to conduct inference on the model with 4bit quantization on a single 24gb consumer GPU.
This Yi model is "Llama-fied", meaning the keys are renamed to match those used in Llama models, eliminating the need for remote code and ensuring compatibility with existing training and inference repositories. Architecturally this is similar to a Llama 2 34B model with an expanded vocab size of 64000.
This model is retrained thanks to compute provided by alpin with a monkeypatch to the trainer to resolve EOS token issues in the prompter. A smaller batch size and learning rate were used and training was extended by one epoch. 8-bit lora was also used instead of qlora.
## Usage:
The intended prompt format is the modified Vicuna 1.1 instruction format used by airoboros v2:
## Training Details:
The model was trained using axolotl as a lora adapter on 1x A100 80gb GPU for 4 epochs, before being fused to the base model with PEFT.
## License:
This model is built on the Yi 34B base model, which has its own custom license included in this repository.
Please refer to the airoboros 2.2.1 dataset card regarding the usage of gpt-4 API calls in creating the dataset. | [
"# airoboros-2.2.1-y34b\n\nUnofficial training of Jon Durbin's powerful airoboros 2.2.1 dataset on Charles Goddard's Llama-fied Yi 34B model, aiming to bring the instruction-following capabilities of the airoboros dataset to the new Yi 34B foundational model.\n\nAs a 34B model with grouped-query attention, users will be able to conduct inference on the model with 4bit quantization on a single 24gb consumer GPU.\n\nThis Yi model is \"Llama-fied\", meaning the keys are renamed to match those used in Llama models, eliminating the need for remote code and ensuring compatibility with existing training and inference repositories. Architecturally this is similar to a Llama 2 34B model with an expanded vocab size of 64000.\n\nThis model is retrained thanks to compute provided by alpin with a monkeypatch to the trainer to resolve EOS token issues in the prompter. A smaller batch size and learning rate were used and training was extended by one epoch. 8-bit lora was also used instead of qlora.",
"## Usage:\n\nThe intended prompt format is the modified Vicuna 1.1 instruction format used by airoboros v2:",
"## Training Details:\n\nThe model was trained using axolotl as a lora adapter on 1x A100 80gb GPU for 4 epochs, before being fused to the base model with PEFT.",
"## License:\n\nThis model is built on the Yi 34B base model, which has its own custom license included in this repository.\n\nPlease refer to the airoboros 2.2.1 dataset card regarding the usage of gpt-4 API calls in creating the dataset."
] | [
"TAGS\n#transformers #safetensors #llama #text-generation #Yi #llama 2 #en #dataset-jondurbin/airoboros-2.2.1 #license-other #autotrain_compatible #text-generation-inference #region-us \n",
"# airoboros-2.2.1-y34b\n\nUnofficial training of Jon Durbin's powerful airoboros 2.2.1 dataset on Charles Goddard's Llama-fied Yi 34B model, aiming to bring the instruction-following capabilities of the airoboros dataset to the new Yi 34B foundational model.\n\nAs a 34B model with grouped-query attention, users will be able to conduct inference on the model with 4bit quantization on a single 24gb consumer GPU.\n\nThis Yi model is \"Llama-fied\", meaning the keys are renamed to match those used in Llama models, eliminating the need for remote code and ensuring compatibility with existing training and inference repositories. Architecturally this is similar to a Llama 2 34B model with an expanded vocab size of 64000.\n\nThis model is retrained thanks to compute provided by alpin with a monkeypatch to the trainer to resolve EOS token issues in the prompter. A smaller batch size and learning rate were used and training was extended by one epoch. 8-bit lora was also used instead of qlora.",
"## Usage:\n\nThe intended prompt format is the modified Vicuna 1.1 instruction format used by airoboros v2:",
"## Training Details:\n\nThe model was trained using axolotl as a lora adapter on 1x A100 80gb GPU for 4 epochs, before being fused to the base model with PEFT.",
"## License:\n\nThis model is built on the Yi 34B base model, which has its own custom license included in this repository.\n\nPlease refer to the airoboros 2.2.1 dataset card regarding the usage of gpt-4 API calls in creating the dataset."
] | [
67,
253,
26,
46,
56
] | [
"passage: TAGS\n#transformers #safetensors #llama #text-generation #Yi #llama 2 #en #dataset-jondurbin/airoboros-2.2.1 #license-other #autotrain_compatible #text-generation-inference #region-us \n# airoboros-2.2.1-y34b\n\nUnofficial training of Jon Durbin's powerful airoboros 2.2.1 dataset on Charles Goddard's Llama-fied Yi 34B model, aiming to bring the instruction-following capabilities of the airoboros dataset to the new Yi 34B foundational model.\n\nAs a 34B model with grouped-query attention, users will be able to conduct inference on the model with 4bit quantization on a single 24gb consumer GPU.\n\nThis Yi model is \"Llama-fied\", meaning the keys are renamed to match those used in Llama models, eliminating the need for remote code and ensuring compatibility with existing training and inference repositories. Architecturally this is similar to a Llama 2 34B model with an expanded vocab size of 64000.\n\nThis model is retrained thanks to compute provided by alpin with a monkeypatch to the trainer to resolve EOS token issues in the prompter. A smaller batch size and learning rate were used and training was extended by one epoch. 8-bit lora was also used instead of qlora.## Usage:\n\nThe intended prompt format is the modified Vicuna 1.1 instruction format used by airoboros v2:## Training Details:\n\nThe model was trained using axolotl as a lora adapter on 1x A100 80gb GPU for 4 epochs, before being fused to the base model with PEFT.## License:\n\nThis model is built on the Yi 34B base model, which has its own custom license included in this repository.\n\nPlease refer to the airoboros 2.2.1 dataset card regarding the usage of gpt-4 API calls in creating the dataset."
] | [
-0.08662984520196915,
0.0621708407998085,
-0.003103029914200306,
0.06006096675992012,
0.10708695650100708,
0.019222591072320938,
0.14084821939468384,
0.14281849563121796,
0.020915523171424866,
0.10535850375890732,
-0.04390526935458183,
0.03201090171933174,
0.11703190952539444,
0.13653433322906494,
-0.011841454543173313,
-0.1903853863477707,
0.045942217111587524,
0.0027673051226884127,
-0.06497853994369507,
-0.005730979610234499,
0.14187811315059662,
-0.060304295271635056,
0.1042328029870987,
0.027927178889513016,
-0.08868381381034851,
0.09587656706571579,
-0.022030077874660492,
-0.0947006419301033,
0.09141628444194794,
0.1065988540649414,
0.07956884801387787,
0.018947431817650795,
0.11070436239242554,
-0.14827141165733337,
0.0009211854776367545,
0.0941198468208313,
-0.008864287286996841,
0.025248128920793533,
0.05930793657898903,
-0.024884814396500587,
0.09861736744642258,
-0.03938186913728714,
0.07461078464984894,
0.02180636115372181,
-0.06256487965583801,
-0.09296227991580963,
-0.08655474334955215,
0.02083681896328926,
0.09467127919197083,
0.053392112255096436,
0.02625289373099804,
0.05552279204130173,
-0.01662635989487171,
0.00849643163383007,
0.1257614940404892,
-0.17427590489387512,
-0.0014002019306644797,
0.1600562483072281,
0.03452497348189354,
0.04713128134608269,
-0.0842430517077446,
-0.04705626890063286,
0.0994952842593193,
0.0273783840239048,
0.07248422503471375,
-0.013405955396592617,
0.07778055965900421,
-0.018555857241153717,
-0.09321440011262894,
-0.0782262310385704,
0.18166577816009521,
0.05541647598147392,
-0.09917358309030533,
-0.07386603206396103,
-0.10158723592758179,
0.0668930783867836,
0.05037379264831543,
-0.07319816201925278,
0.050986163318157196,
0.0008399668149650097,
0.07900805026292801,
-0.10810676962137222,
-0.09988844394683838,
-0.04503629356622696,
-0.10622557252645493,
0.17315927147865295,
0.07373838126659393,
0.0952739343047142,
-0.06068819388747215,
0.09543098509311676,
-0.06308651715517044,
-0.07357775419950485,
-0.0875132828950882,
-0.02455516718327999,
-0.10391590744256973,
0.002611584961414337,
-0.04102523252367973,
-0.08848521113395691,
-0.01601475477218628,
0.220454141497612,
-0.06073746830224991,
0.011405983939766884,
0.07845836132764816,
0.024097861722111702,
0.02338932827115059,
0.13509367406368256,
0.0037604321260005236,
-0.08331330120563507,
0.058457013219594955,
0.07930757850408554,
-0.0007954849279485643,
-0.012675243429839611,
-0.0915500670671463,
-0.06905706971883774,
0.03005828522145748,
-0.02465786412358284,
-0.0320562869310379,
-0.011907604523003101,
-0.007556983269751072,
-0.03856277838349342,
0.1180616095662117,
-0.13968707621097565,
0.005210231989622116,
-0.02513790689408779,
-0.12405043095350266,
0.06779894977807999,
0.07375795394182205,
-0.009320779703557491,
-0.0607222318649292,
-0.004170096945017576,
-0.05709145963191986,
-0.09962338209152222,
-0.1208108514547348,
-0.07180248200893402,
-0.002761951880529523,
-0.08770883083343506,
0.038265109062194824,
-0.15872541069984436,
-0.2896882891654968,
-0.053301852196455,
-0.003366823773831129,
-0.0077204471454024315,
-0.04928238317370415,
-0.08605080097913742,
-0.020303579047322273,
-0.052647173404693604,
-0.009261555038392544,
0.04736768454313278,
-0.028591446578502655,
0.002204742282629013,
-0.030725808814167976,
0.09767881780862808,
-0.07761106640100479,
0.026039177551865578,
-0.039862748235464096,
0.02782670594751835,
-0.05476116016507149,
0.09525328129529953,
-0.0014736172743141651,
-0.11928097903728485,
-0.030587436631321907,
-0.012789610773324966,
-0.05628746375441551,
0.04521496593952179,
0.033093973994255066,
0.059104278683662415,
-0.1314769983291626,
-0.07219108939170837,
0.09283320605754852,
-0.14370539784431458,
-0.010716368444263935,
0.06816790997982025,
-0.0316670797765255,
0.08567652106285095,
0.07481800019741058,
0.09288254380226135,
0.08067989349365234,
-0.06259144097566605,
-0.11404483020305634,
-0.03757582604885101,
-0.01973387785255909,
-0.002363720675930381,
0.03179888427257538,
0.0473664328455925,
0.07019805908203125,
0.03601836785674095,
0.04178735241293907,
0.003812019480392337,
-0.005414955317974091,
-0.011969003826379776,
-0.0340149886906147,
-0.0716257095336914,
-0.07752761989831924,
-0.046609148383140564,
0.021138900890946388,
-0.03505650907754898,
-0.0960598960518837,
0.025767968967556953,
0.18637843430042267,
-0.07515805214643478,
-0.01033844519406557,
-0.08562202751636505,
0.09806464612483978,
-0.07920617610216141,
-0.018461471423506737,
-0.11324790865182877,
-0.04828294366598129,
0.08509930968284607,
-0.13486328721046448,
-0.008768163621425629,
0.09635838121175766,
0.04371248558163643,
0.06956940144300461,
-0.038855668157339096,
-0.044622767716646194,
-0.08971279114484787,
-0.044973913580179214,
-0.03334151953458786,
-0.02637929469347,
-0.05734087899327278,
-0.0655522570014,
0.08374998718500137,
-0.09353785216808319,
0.07148650288581848,
-0.061319079250097275,
0.16745373606681824,
0.02990472875535488,
-0.03555469587445259,
-0.027746226638555527,
-0.030627034604549408,
-0.06166541948914528,
-0.1043417677283287,
-0.039156850427389145,
0.02434813790023327,
-0.008075295016169548,
0.057502083480358124,
-0.1666623055934906,
-0.06328136473894119,
0.07729122787714005,
0.16273874044418335,
-0.016146378591656685,
-0.06941783428192139,
-0.056219298392534256,
-0.03381573408842087,
-0.11154630035161972,
-0.0969688668847084,
0.22481507062911987,
-0.04203147813677788,
0.11424368619918823,
-0.11709389090538025,
-0.04701141640543938,
-0.020198427140712738,
-0.006676724646240473,
-0.030487241223454475,
-0.015072018839418888,
0.062459688633680344,
-0.07511114329099655,
0.09651099890470505,
-0.0074554202146828175,
-0.01929767057299614,
0.13760699331760406,
0.028514103963971138,
-0.1186404749751091,
-0.008154608309268951,
-0.03361691161990166,
0.0008633952238596976,
0.12325813621282578,
0.044758785516023636,
0.054452698677778244,
0.03462153673171997,
0.06357333064079285,
0.10222256928682327,
-0.115162692964077,
0.07108253985643387,
0.04901433363556862,
-0.05421607568860054,
0.07282562553882599,
0.028347887098789215,
0.024854807183146477,
0.08611255139112473,
-0.05710286647081375,
-0.032189201563596725,
-0.0025702465791255236,
-0.026964878663420677,
-0.05143195390701294,
0.1464645117521286,
-0.06783313304185867,
-0.16446055471897125,
-0.19235645234584808,
0.11377362161874771,
-0.06587127596139908,
0.042516034096479416,
0.03318410366773605,
0.0012906709453091025,
-0.07703579217195511,
-0.10035853832960129,
0.09695977717638016,
0.019964341074228287,
0.010899610817432404,
-0.008935839869081974,
0.02279266156256199,
0.002510317135602236,
-0.1610105186700821,
-0.03155384212732315,
-0.020408164709806442,
-0.13654811680316925,
0.012098784558475018,
-0.02448733150959015,
0.05150868743658066,
0.0417286679148674,
-0.0867747887969017,
-0.03227732703089714,
-0.03351368382573128,
0.14495138823986053,
-0.018023507669568062,
0.12105191498994827,
0.22839845716953278,
0.025782473385334015,
0.08029649406671524,
0.009126345627009869,
-0.0707557424902916,
-0.09099335968494415,
0.04206984117627144,
0.049589529633522034,
-0.03474568948149681,
-0.22807982563972473,
0.016264569014310837,
-0.027268730103969574,
-0.047453366219997406,
0.1040225401520729,
0.04142555221915245,
0.054278891533613205,
0.09804964065551758,
-0.06825770437717438,
0.10575612634420395,
0.014245934784412384,
0.06707799434661865,
0.026287946850061417,
0.02910369075834751,
0.05078766867518425,
-0.034030526876449585,
-0.00010625791765050963,
0.09290534257888794,
0.17956183850765228,
0.2234453409910202,
-0.10701656341552734,
0.013141583651304245,
0.011671389453113079,
0.02603837475180626,
0.031106416136026382,
0.11328408122062683,
-0.03946581855416298,
0.04708945006132126,
-0.08572139590978622,
0.004500894341617823,
-0.034576285630464554,
0.11876101791858673,
0.007995691150426865,
0.08967184275388718,
-0.0823267474770546,
0.06817451864480972,
-0.02480289526283741,
0.18556396663188934,
0.020896874368190765,
-0.27982908487319946,
-0.054289646446704865,
0.05866851285099983,
-0.047872770577669144,
-0.07243863493204117,
0.037693895399570465,
0.2244676798582077,
-0.08789659291505814,
0.017445091158151627,
0.010379564948379993,
0.07383554428815842,
-0.08137624710798264,
-0.0384514257311821,
-0.06811423599720001,
0.20809359848499298,
-0.015904037281870842,
0.06686222553253174,
-0.13569137454032898,
0.02418200857937336,
0.00031392835080623627,
0.10128675401210785,
-0.07996581494808197,
0.08580614626407623,
0.0560394749045372,
-0.03281336650252342,
0.060512639582157135,
-0.023115044459700584,
-0.16221433877944946,
-0.04773211479187012,
-0.11547249555587769,
0.07557489722967148,
-0.00941938254982233,
-0.07266315817832947,
0.08677602559328079,
-0.024163177236914635,
0.042773667722940445,
0.00102167425211519,
-0.01583831012248993,
-0.08252479135990143,
-0.1971258819103241,
-0.03840888664126396,
0.04007458686828613,
-0.05392571911215782,
-0.1471662074327469,
-0.03394816443324089,
0.006105495151132345,
0.03896654024720192,
0.0354885496199131,
-0.07641807943582535,
-0.10012192279100418,
0.05341264605522156,
0.10241709649562836,
-0.06416168063879013,
0.058061543852090836,
0.06247672066092491,
0.1577252894639969,
-0.05224728584289551,
-0.07906031608581543,
-0.01023855246603489,
-0.06874553859233856,
-0.08901369571685791,
-0.03708016499876976,
0.01667025312781334,
0.04553016275167465,
0.04658571258187294,
0.03509834036231041,
-0.054188989102840424,
0.0049971044063568115,
-0.042898811399936676,
-0.0017819112399592996,
0.22558262944221497,
0.015859534963965416,
0.13136038184165955,
-0.08798679709434509,
-0.1139518991112709,
-0.03596959263086319,
0.010061204433441162,
0.033999089151620865,
0.25458037853240967,
-0.023392342031002045,
0.02032899297773838,
0.09613905847072601,
-0.10007891058921814,
-0.1332501620054245,
-0.0010162662947550416,
0.04676032438874245,
0.12340463697910309,
-0.051229655742645264,
-0.10039355605840683,
0.0038095712661743164,
0.10931675136089325,
0.023791352286934853,
0.10045047104358673,
-0.2699452042579651,
-0.06874983012676239,
0.045970093458890915,
0.06570014357566833,
0.15846268832683563,
-0.017715198919177055,
0.018830152228474617,
-0.0030856409575790167,
-0.05266685038805008,
0.034041788429021835,
-0.004694005474448204,
0.11265872418880463,
-0.051123347133398056,
0.05233265087008476,
0.04028524458408356,
-0.01576850190758705,
0.15130198001861572,
0.0027692022267729044,
0.10156669467687607,
-0.041078805923461914,
0.08693063259124756,
0.07383817434310913,
-0.07315507531166077,
0.10485182702541351,
-0.06071293726563454,
0.04840549826622009,
-0.07163311541080475,
-0.0885394960641861,
-0.013313096016645432,
0.08385494351387024,
-0.0021903894376009703,
-0.09019958227872849,
-0.06880255788564682,
0.047714147716760635,
0.07393572479486465,
0.0148758664727211,
-0.09893188625574112,
0.015216370113193989,
-0.02870016172528267,
0.110978864133358,
0.06163065880537033,
-0.03076516091823578,
-0.09202203154563904,
0.0067678471095860004,
0.03838164731860161,
0.11076179891824722,
-0.13356561958789825,
0.016621073707938194,
0.10589143633842468,
-0.04055396094918251,
0.1208353266119957,
0.06547649949789047,
-0.14396530389785767,
0.058197081089019775,
0.03164171800017357,
-0.017054973170161247,
-0.057758089154958725,
-0.020463157445192337,
0.03872966393828392,
-0.07986300438642502,
-0.02076718397438526,
0.13364528119564056,
-0.06601822376251221,
-0.01651160605251789,
-0.05057668685913086,
0.016352705657482147,
-0.0025844485498964787,
0.10481924563646317,
0.031160244718194008,
0.005220972932875156,
0.0019309164490550756,
0.1896074414253235,
0.06302417069673538,
-0.11433403939008713,
0.03736374154686928,
-0.0335809551179409,
-0.04012685641646385,
0.00003350226324982941,
-0.07032772153615952,
0.14312800765037537,
-0.10366685688495636,
-0.09172849357128143,
-0.13492712378501892,
-0.06099148467183113,
0.035359036177396774,
0.02917494997382164,
0.016030268743634224,
0.011049406602978706,
-0.022661712020635605,
0.05188262090086937,
-0.11827417463064194,
0.035395000129938126,
0.06545433402061462,
0.10332926362752914,
-0.10066049546003342,
0.017742643132805824,
-0.0051520816050469875,
0.00330023979768157,
0.0017602590378373861,
-0.0025655122008174658,
-0.08929907530546188,
-0.027456002309918404,
-0.14230559766292572,
0.03729994595050812,
-0.007471915800124407,
-0.027120111510157585,
0.02903807908296585,
-0.04317798838019371,
-0.0450776144862175,
0.08183249831199646,
-0.04775939881801605,
-0.060047805309295654,
-0.0005904237041249871,
0.0863855630159378,
-0.03063337318599224,
-0.062383003532886505,
0.029879078269004822,
-0.11793141067028046,
0.0736546665430069,
0.021805599331855774,
-0.008263806812465191,
-0.025281159207224846,
-0.08326702564954758,
-0.008923922665417194,
0.033481910824775696,
0.08177368342876434,
0.0649615228176117,
-0.05834777280688286,
0.07488888502120972,
0.0036791011225432158,
-0.06191254407167435,
-0.07149651646614075,
-0.01569523848593235,
-0.050221480429172516,
0.02925063669681549,
-0.04570931941270828,
-0.034497689455747604,
-0.0758291706442833,
-0.025629734620451927,
0.09567005187273026,
0.06243632361292839,
0.10983327031135559,
-0.015812011435627937,
0.022086739540100098,
-0.1899895966053009,
0.008562344126403332,
0.021360132843255997,
0.007408421952277422,
0.07919273525476456,
-0.05686695873737335,
0.045745234936475754,
0.01089715026319027,
0.13759230077266693,
-0.009342407807707787,
-0.0003376135427970439,
-0.011868327856063843,
-0.06384116411209106,
0.031793124973773956,
0.015261022374033928,
0.08157533407211304,
0.03632228448987007,
0.024089016020298004,
0.025493910536170006,
-0.0001973943435586989,
0.09332971274852753,
-0.03659394383430481,
0.07640496641397476,
0.07891417294740677,
0.026338661089539528,
0.16652058064937592,
0.0576777458190918,
-0.060049135237932205,
-0.05820359289646149,
0.0074661532416939735,
0.008919726125895977,
-0.03423786908388138,
0.00961736124008894,
0.041059307754039764,
0.1559373140335083,
-0.1814340502023697,
0.08712051808834076,
0.033293332904577255,
-0.04173843935132027,
-0.09506779909133911,
-0.10548514872789383,
-0.06129536032676697,
-0.07363376766443253,
0.021695736795663834,
-0.09507636725902557,
0.0029434440657496452,
0.06340257078409195,
-0.011134929023683071,
-0.010606604628264904,
0.02501273714005947,
-0.11066709458827972,
-0.05318691208958626,
-0.03700333088636398,
0.01840587519109249,
0.0406314991414547,
0.015909358859062195,
-0.08692921698093414,
0.050925370305776596,
0.08162444084882736,
0.05759700760245323,
-0.039798758924007416,
0.16286389529705048,
0.06082959473133087,
0.03241083770990372,
0.03957607224583626,
-0.013074476271867752,
-0.062345828860998154,
-0.020868608728051186,
0.06487580388784409,
0.07807517051696777,
-0.015233540907502174,
0.031194888055324554,
0.1638394147157669,
-0.0364031121134758,
-0.09228775650262833,
-0.1568448692560196,
0.02674342505633831,
0.0675424337387085,
0.06086781248450279,
0.04727712646126747,
-0.13189294934272766,
-0.08171015232801437,
0.13864809274673462,
0.07204161584377289,
-0.010568760335445404,
-0.04588809981942177,
-0.01725665293633938,
-0.024533778429031372,
-0.05664537847042084,
0.07327831536531448,
0.10068956017494202,
0.14085343480110168,
-0.015216332860291004,
0.059209227561950684,
0.01455356553196907,
0.05160602927207947,
-0.004258085507899523,
0.13081109523773193,
-0.10160933434963226,
0.027975555509328842,
-0.012505046091973782,
-0.05638815090060234,
0.05007329210639,
-0.24789604544639587,
0.052244484424591064,
-0.06355530023574829,
-0.09749242663383484,
0.009901945479214191,
0.012105925008654594,
-0.0498659648001194,
0.08413877338171005,
-0.02270328626036644,
0.018696272745728493,
0.15484800934791565,
-0.04295525327324867,
-0.11348021030426025,
-0.055211760103702545,
0.03861197084188461,
-0.08441899716854095,
0.23385553061962128,
-0.004599365871399641,
0.06703537702560425,
0.07249698042869568,
0.029550623148679733,
-0.1120232567191124,
0.03985252231359482,
-0.032559219747781754,
-0.002298654755577445,
0.01788724772632122,
0.11647694557905197,
-0.05622204393148422,
0.10460567474365234,
0.02367520146071911,
-0.060689087957143784,
0.0013843284687027335,
0.016468072310090065,
-0.014274480752646923,
-0.07029924541711807,
0.027080561965703964,
-0.07816773653030396,
0.1320045292377472,
0.09524790942668915,
-0.0027379579842090607,
-0.010632697492837906,
-0.03431893512606621,
0.08104332536458969,
0.07853078097105026,
0.07912872731685638,
0.020229576155543327,
-0.09935589134693146,
-0.026873892173171043,
-0.12549147009849548,
-0.000978869036771357,
-0.19236701726913452,
-0.09516928344964981,
-0.03559013083577156,
-0.11868893355131149,
-0.0465523935854435,
0.0794944018125534,
0.06942232698202133,
0.06319834291934967,
-0.08160360157489777,
-0.11705666035413742,
-0.06671486049890518,
0.07371608912944794,
-0.10350318253040314,
-0.10531782358884811
] |
null | null | null | <style>
td pre {
white-space: pre-wrap;
}
table {
margin-top: 0;
margin-bottom: 0;
}
</style>
<table style="border-collapse: separate; border-spacing: 10px; width:100%">
<tr>
<td style="vertical-align: top">
<img src="./Examples/01.png" alt="SchoolGirl01" width="100%"/>
</td>
<td style="vertical-align: top;">
<img src="./Examples/02.png" alt="SchoolGirl02" width="100%"/>
</td>
</tr>
</table>
# Overview
A **LOCON** for **Stable Diffusion 1.5** of Rina Tennoji from Love Live. This model was trained and tested on the [Mistoon Anime model](https://civitai.com/models/24149/mistoonanime) using [Kohya SS](https://github.com/bmaltais/kohya_ss).
**Note**: My models are trained heavily to recreate not only the character but also their original art style. This makes the models more prone to overfitting, so they might not work well with other SD 1.5 models. You can check out the [Epoches](https://huggingface.co/CulturedDiffusion/Rina_Tennoji_SD1.5_LOCON/tree/main/Epoches) folder for alternative versions that might work better for your use-case.
# Usage
- **Trigger keywords**: rina tennoji
- **Recommended keywords**: pink hair, ahoge, yellow eyes
- **Recommended strength**: 0.6
- **Recommended CFG**: 4
- **Recommended SD model**: [Mistoon Anime model](https://civitai.com/models/24149/mistoonanime)
- **Clip skip**: 2
**Rina-chan board**
- **Trigger keywords**: rina-chan board
- **Recommended keywords**: sketchbook (if you want specifically the sketchbook version)
**Rina-chan board Tips**:
- Increase the weight of **rina-chan board** (and **sketchbook** if you use it). They rarely work at weight 1.0.
- Avoid tags that mention eyes (ex: **yellow eyes** and **beautiful eyes**).
- Avoid negative tags related to **sketch**/**doodles**.
- Preferably avoid expression tags (ex: **smile**). They can work, but from my tests the model is more likely to draw Rina's actual face instead of the board.
- Some tags (like **> <**) seem to give a strong push toward drawing the board.
- Experiment and share your results!
# Examples
**Note**: All examples in the repo were produced with [AUTOMATIC1111](https://github.com/AUTOMATIC1111/stable-diffusion-webui) without any edits. You download them and load all their settings from the metadata to reproduce similar results.
Highres fix details:
<pre>Denoising strength: 0.5, Hires upscale: 2, Hires upscaler: 4x-UltraSharp</pre>
<table style="border-collapse: separate; border-spacing: 10px; width:100%;">
<tr>
<td style="vertical-align: top">
<img src="./Examples/03.png" width="100%"/>
<pre>masterpiece, best quality, highres, absurdres, beautiful eyes, 1girl,
rina tennoji, pink hair, ahoge, yellow eyes,
smirk, hand on own chest, lying,
school uniform, jacket, black thighhighs,
classroom, table, chair,
Steps: 50, Sampler: DPM++ 2M SDE, CFG scale: 4, Seed: 651122942, Size: 512x768</pre>
</td>
<td style="vertical-align: top;">
<img src="./Examples/04.png" width="100%"/>
<pre>masterpiece, best quality, highres, absurdres, 1girl,
rina tennoji, pink hair, ahoge, (rina-chan board: 1.4), (sketchbook: 1.4),
smirk, hands behind head, from below,
white dress,
park, bench, birds, sunlight,
Steps: 50, Sampler: DPM++ 2M SDE, CFG scale: 4, Seed: 3577430021, Size: 512x768</pre>
</td>
<td style="vertical-align: top;">
<img src="./Examples/05.png"width="100%"/>
<pre>masterpiece, best quality, highres, absurdres, 1girl,
rina tennoji, pink hair, ahoge, yellow eyes,
smile, open mouth, hands behind head, crossed legs,
maid,
restaurant, chair, table,
Steps: 50, Sampler: DPM++ 2M SDE, CFG scale: 4, Seed: 3198814560, Size: 512x768</pre>
</td>
</tr>
</table>
# Donate
<a href='https://ko-fi.com/K3K1O4HGG' target='_blank'><img height ="60px" style='border:0px; height: 60px' src='https://storage.ko-fi.com/cdn/kofi2.png?v=3' border='0' alt='Buy Me a Coffee at ko-fi.com' /></a> | {"license": "cc"} | null | CulturedDiffusion/Rina_Tennoji_SD1.5_LOCON | [
"license:cc",
"region:us"
] | 2023-11-11T09:01:30+00:00 | [] | [] | TAGS
#license-cc #region-us
| <style>
td pre {
white-space: pre-wrap;
}
table {
margin-top: 0;
margin-bottom: 0;
}
</style>
<table style="border-collapse: separate; border-spacing: 10px; width:100%">
<tr>
<td style="vertical-align: top">
<img src="./Examples/URL" alt="SchoolGirl01" width="100%"/>
</td>
<td style="vertical-align: top;">
<img src="./Examples/URL" alt="SchoolGirl02" width="100%"/>
</td>
</tr>
</table>
# Overview
A LOCON for Stable Diffusion 1.5 of Rina Tennoji from Love Live. This model was trained and tested on the Mistoon Anime model using Kohya SS.
Note: My models are trained heavily to recreate not only the character but also their original art style. This makes the models more prone to overfitting, so they might not work well with other SD 1.5 models. You can check out the Epoches folder for alternative versions that might work better for your use-case.
# Usage
- Trigger keywords: rina tennoji
- Recommended keywords: pink hair, ahoge, yellow eyes
- Recommended strength: 0.6
- Recommended CFG: 4
- Recommended SD model: Mistoon Anime model
- Clip skip: 2
Rina-chan board
- Trigger keywords: rina-chan board
- Recommended keywords: sketchbook (if you want specifically the sketchbook version)
Rina-chan board Tips:
- Increase the weight of rina-chan board (and sketchbook if you use it). They rarely work at weight 1.0.
- Avoid tags that mention eyes (ex: yellow eyes and beautiful eyes).
- Avoid negative tags related to sketch/doodles.
- Preferably avoid expression tags (ex: smile). They can work, but from my tests the model is more likely to draw Rina's actual face instead of the board.
- Some tags (like > <) seem to give a strong push toward drawing the board.
- Experiment and share your results!
# Examples
Note: All examples in the repo were produced with AUTOMATIC1111 without any edits. You download them and load all their settings from the metadata to reproduce similar results.
Highres fix details:
<pre>Denoising strength: 0.5, Hires upscale: 2, Hires upscaler: 4x-UltraSharp</pre>
<table style="border-collapse: separate; border-spacing: 10px; width:100%;">
<tr>
<td style="vertical-align: top">
<img src="./Examples/URL" width="100%"/>
<pre>masterpiece, best quality, highres, absurdres, beautiful eyes, 1girl,
rina tennoji, pink hair, ahoge, yellow eyes,
smirk, hand on own chest, lying,
school uniform, jacket, black thighhighs,
classroom, table, chair,
Steps: 50, Sampler: DPM++ 2M SDE, CFG scale: 4, Seed: 651122942, Size: 512x768</pre>
</td>
<td style="vertical-align: top;">
<img src="./Examples/URL" width="100%"/>
<pre>masterpiece, best quality, highres, absurdres, 1girl,
rina tennoji, pink hair, ahoge, (rina-chan board: 1.4), (sketchbook: 1.4),
smirk, hands behind head, from below,
white dress,
park, bench, birds, sunlight,
Steps: 50, Sampler: DPM++ 2M SDE, CFG scale: 4, Seed: 3577430021, Size: 512x768</pre>
</td>
<td style="vertical-align: top;">
<img src="./Examples/URL"width="100%"/>
<pre>masterpiece, best quality, highres, absurdres, 1girl,
rina tennoji, pink hair, ahoge, yellow eyes,
smile, open mouth, hands behind head, crossed legs,
maid,
restaurant, chair, table,
Steps: 50, Sampler: DPM++ 2M SDE, CFG scale: 4, Seed: 3198814560, Size: 512x768</pre>
</td>
</tr>
</table>
# Donate
<a href='URL target='_blank'><img height ="60px" style='border:0px; height: 60px' src='URL border='0' alt='Buy Me a Coffee at URL' /></a> | [
"# Overview\nA LOCON for Stable Diffusion 1.5 of Rina Tennoji from Love Live. This model was trained and tested on the Mistoon Anime model using Kohya SS.\n\nNote: My models are trained heavily to recreate not only the character but also their original art style. This makes the models more prone to overfitting, so they might not work well with other SD 1.5 models. You can check out the Epoches folder for alternative versions that might work better for your use-case.",
"# Usage\n- Trigger keywords: rina tennoji\n- Recommended keywords: pink hair, ahoge, yellow eyes\n- Recommended strength: 0.6\n- Recommended CFG: 4\n- Recommended SD model: Mistoon Anime model\n- Clip skip: 2\n\n\nRina-chan board\n- Trigger keywords: rina-chan board\n- Recommended keywords: sketchbook (if you want specifically the sketchbook version)\n\nRina-chan board Tips:\n- Increase the weight of rina-chan board (and sketchbook if you use it). They rarely work at weight 1.0.\n- Avoid tags that mention eyes (ex: yellow eyes and beautiful eyes).\n- Avoid negative tags related to sketch/doodles.\n- Preferably avoid expression tags (ex: smile). They can work, but from my tests the model is more likely to draw Rina's actual face instead of the board.\n- Some tags (like > <) seem to give a strong push toward drawing the board.\n- Experiment and share your results!",
"# Examples\nNote: All examples in the repo were produced with AUTOMATIC1111 without any edits. You download them and load all their settings from the metadata to reproduce similar results.\n\nHighres fix details:\n<pre>Denoising strength: 0.5, Hires upscale: 2, Hires upscaler: 4x-UltraSharp</pre>\n\n<table style=\"border-collapse: separate; border-spacing: 10px; width:100%;\">\n <tr>\n <td style=\"vertical-align: top\">\n <img src=\"./Examples/URL\" width=\"100%\"/>\n <pre>masterpiece, best quality, highres, absurdres, beautiful eyes, 1girl,\nrina tennoji, pink hair, ahoge, yellow eyes,\nsmirk, hand on own chest, lying,\nschool uniform, jacket, black thighhighs,\nclassroom, table, chair,\n \nSteps: 50, Sampler: DPM++ 2M SDE, CFG scale: 4, Seed: 651122942, Size: 512x768</pre>\n </td>\n \n <td style=\"vertical-align: top;\">\n <img src=\"./Examples/URL\" width=\"100%\"/>\n <pre>masterpiece, best quality, highres, absurdres, 1girl,\nrina tennoji, pink hair, ahoge, (rina-chan board: 1.4), (sketchbook: 1.4),\nsmirk, hands behind head, from below,\nwhite dress,\npark, bench, birds, sunlight,\n \nSteps: 50, Sampler: DPM++ 2M SDE, CFG scale: 4, Seed: 3577430021, Size: 512x768</pre>\n </td>\n\n <td style=\"vertical-align: top;\">\n <img src=\"./Examples/URL\"width=\"100%\"/>\n <pre>masterpiece, best quality, highres, absurdres, 1girl,\nrina tennoji, pink hair, ahoge, yellow eyes,\nsmile, open mouth, hands behind head, crossed legs,\nmaid,\nrestaurant, chair, table,\n \nSteps: 50, Sampler: DPM++ 2M SDE, CFG scale: 4, Seed: 3198814560, Size: 512x768</pre>\n </td>\n \n </tr>\n</table>",
"# Donate\n<a href='URL target='_blank'><img height =\"60px\" style='border:0px; height: 60px' src='URL border='0' alt='Buy Me a Coffee at URL' /></a>"
] | [
"TAGS\n#license-cc #region-us \n",
"# Overview\nA LOCON for Stable Diffusion 1.5 of Rina Tennoji from Love Live. This model was trained and tested on the Mistoon Anime model using Kohya SS.\n\nNote: My models are trained heavily to recreate not only the character but also their original art style. This makes the models more prone to overfitting, so they might not work well with other SD 1.5 models. You can check out the Epoches folder for alternative versions that might work better for your use-case.",
"# Usage\n- Trigger keywords: rina tennoji\n- Recommended keywords: pink hair, ahoge, yellow eyes\n- Recommended strength: 0.6\n- Recommended CFG: 4\n- Recommended SD model: Mistoon Anime model\n- Clip skip: 2\n\n\nRina-chan board\n- Trigger keywords: rina-chan board\n- Recommended keywords: sketchbook (if you want specifically the sketchbook version)\n\nRina-chan board Tips:\n- Increase the weight of rina-chan board (and sketchbook if you use it). They rarely work at weight 1.0.\n- Avoid tags that mention eyes (ex: yellow eyes and beautiful eyes).\n- Avoid negative tags related to sketch/doodles.\n- Preferably avoid expression tags (ex: smile). They can work, but from my tests the model is more likely to draw Rina's actual face instead of the board.\n- Some tags (like > <) seem to give a strong push toward drawing the board.\n- Experiment and share your results!",
"# Examples\nNote: All examples in the repo were produced with AUTOMATIC1111 without any edits. You download them and load all their settings from the metadata to reproduce similar results.\n\nHighres fix details:\n<pre>Denoising strength: 0.5, Hires upscale: 2, Hires upscaler: 4x-UltraSharp</pre>\n\n<table style=\"border-collapse: separate; border-spacing: 10px; width:100%;\">\n <tr>\n <td style=\"vertical-align: top\">\n <img src=\"./Examples/URL\" width=\"100%\"/>\n <pre>masterpiece, best quality, highres, absurdres, beautiful eyes, 1girl,\nrina tennoji, pink hair, ahoge, yellow eyes,\nsmirk, hand on own chest, lying,\nschool uniform, jacket, black thighhighs,\nclassroom, table, chair,\n \nSteps: 50, Sampler: DPM++ 2M SDE, CFG scale: 4, Seed: 651122942, Size: 512x768</pre>\n </td>\n \n <td style=\"vertical-align: top;\">\n <img src=\"./Examples/URL\" width=\"100%\"/>\n <pre>masterpiece, best quality, highres, absurdres, 1girl,\nrina tennoji, pink hair, ahoge, (rina-chan board: 1.4), (sketchbook: 1.4),\nsmirk, hands behind head, from below,\nwhite dress,\npark, bench, birds, sunlight,\n \nSteps: 50, Sampler: DPM++ 2M SDE, CFG scale: 4, Seed: 3577430021, Size: 512x768</pre>\n </td>\n\n <td style=\"vertical-align: top;\">\n <img src=\"./Examples/URL\"width=\"100%\"/>\n <pre>masterpiece, best quality, highres, absurdres, 1girl,\nrina tennoji, pink hair, ahoge, yellow eyes,\nsmile, open mouth, hands behind head, crossed legs,\nmaid,\nrestaurant, chair, table,\n \nSteps: 50, Sampler: DPM++ 2M SDE, CFG scale: 4, Seed: 3198814560, Size: 512x768</pre>\n </td>\n \n </tr>\n</table>",
"# Donate\n<a href='URL target='_blank'><img height =\"60px\" style='border:0px; height: 60px' src='URL border='0' alt='Buy Me a Coffee at URL' /></a>"
] | [
11,
113,
227,
541,
63
] | [
"passage: TAGS\n#license-cc #region-us \n# Overview\nA LOCON for Stable Diffusion 1.5 of Rina Tennoji from Love Live. This model was trained and tested on the Mistoon Anime model using Kohya SS.\n\nNote: My models are trained heavily to recreate not only the character but also their original art style. This makes the models more prone to overfitting, so they might not work well with other SD 1.5 models. You can check out the Epoches folder for alternative versions that might work better for your use-case.# Usage\n- Trigger keywords: rina tennoji\n- Recommended keywords: pink hair, ahoge, yellow eyes\n- Recommended strength: 0.6\n- Recommended CFG: 4\n- Recommended SD model: Mistoon Anime model\n- Clip skip: 2\n\n\nRina-chan board\n- Trigger keywords: rina-chan board\n- Recommended keywords: sketchbook (if you want specifically the sketchbook version)\n\nRina-chan board Tips:\n- Increase the weight of rina-chan board (and sketchbook if you use it). They rarely work at weight 1.0.\n- Avoid tags that mention eyes (ex: yellow eyes and beautiful eyes).\n- Avoid negative tags related to sketch/doodles.\n- Preferably avoid expression tags (ex: smile). They can work, but from my tests the model is more likely to draw Rina's actual face instead of the board.\n- Some tags (like > <) seem to give a strong push toward drawing the board.\n- Experiment and share your results!"
] | [
0.009896266274154186,
-0.018645726144313812,
-0.006776448339223862,
0.021690864115953445,
0.019139057025313377,
0.0030023742001503706,
0.06691356003284454,
0.06860513985157013,
-0.006986010819673538,
0.10846506059169769,
-0.09322665631771088,
0.00003028587525477633,
0.10616052150726318,
0.14724905788898468,
-0.040634140372276306,
-0.23412643373012543,
0.07484553009271622,
0.06467902660369873,
0.14747914671897888,
0.03497983515262604,
0.0981764867901802,
-0.0783604234457016,
0.10685233771800995,
0.056819818913936615,
-0.043685007840394974,
-0.012922090478241444,
0.012534824199974537,
-0.030610861256718636,
0.03597216680645943,
0.06645956635475159,
0.14319930970668793,
0.002427124883979559,
-0.048522502183914185,
-0.22799080610275269,
0.036274902522563934,
0.07645492255687714,
-0.015098289586603642,
-0.0006452419329434633,
0.11077489703893661,
0.04760129749774933,
0.1354595571756363,
-0.11395014077425003,
0.10762157291173935,
0.04431264102458954,
-0.09410286694765091,
-0.08466985076665878,
-0.03268349915742874,
0.14175382256507874,
0.193749338388443,
-0.022257214412093163,
-0.047082241624593735,
0.1473778486251831,
-0.05890454724431038,
0.031312018632888794,
0.2593821883201599,
-0.13586567342281342,
-0.11361227929592133,
0.052640121430158615,
0.060601577162742615,
0.012281280942261219,
-0.12948490679264069,
0.05336752161383629,
0.00676828995347023,
-0.01970219798386097,
0.04157742112874985,
-0.01676340028643608,
0.18524038791656494,
-0.11025667935609818,
-0.07167825102806091,
0.020657246932387352,
0.08330105245113373,
0.09203584492206573,
-0.10884109139442444,
-0.20184582471847534,
-0.02630293369293213,
0.09563611447811127,
-0.05461134389042854,
-0.12980961799621582,
0.046230580657720566,
0.00964826624840498,
0.017485927790403366,
-0.09640733897686005,
-0.11519603431224823,
-0.005298169795423746,
0.06273576617240906,
0.03652963787317276,
0.009052807465195656,
-0.014895560219883919,
0.08857960999011993,
0.07737946510314941,
-0.11865560710430145,
-0.05311707407236099,
-0.049703460186719894,
-0.15130968391895294,
-0.03223434090614319,
-0.024056216701865196,
0.013957846909761429,
-0.13647393882274628,
-0.006046835333108902,
0.162202388048172,
0.11183805018663406,
0.05911536514759064,
-0.13343776762485504,
-0.0019013877026736736,
-0.017219411209225655,
0.07913029938936234,
0.029533373191952705,
-0.0011784634552896023,
0.012686150148510933,
0.053575512021780014,
0.08438893407583237,
-0.030170118436217308,
-0.015978720039129257,
-0.03241012617945671,
0.09711688756942749,
-0.00033672864083200693,
-0.01162020768970251,
-0.0054056779481470585,
-0.06401896476745605,
-0.0246855728328228,
0.22020386159420013,
-0.04704216867685318,
0.06721144914627075,
0.032034553587436676,
-0.03359425067901611,
0.08532800525426865,
-0.03704902157187462,
0.06718377023935318,
-0.03991343826055527,
0.0693182572722435,
-0.060684654861688614,
0.019126951694488525,
-0.10534042865037918,
-0.0394488200545311,
0.05629101023077965,
-0.074703648686409,
-0.01580170728266239,
-0.10175338387489319,
-0.04362035542726517,
0.012198222801089287,
0.01798980124294758,
-0.05101589113473892,
0.012596425600349903,
0.0283978134393692,
-0.05479149520397186,
-0.04394877701997757,
0.05521412193775177,
0.023249352350831032,
0.029534149914979935,
0.024060487747192383,
0.04726344347000122,
0.019599340856075287,
0.08274279534816742,
-0.018680553883314133,
-0.06814928352832794,
0.06756190210580826,
-0.21469742059707642,
0.06003708019852638,
-0.03031112439930439,
0.02983277291059494,
-0.04062018543481827,
-0.0582418292760849,
-0.036317914724349976,
0.017174405977129936,
-0.012461087666451931,
0.07049278169870377,
-0.15058967471122742,
0.018448345363140106,
0.06975220143795013,
-0.23303072154521942,
-0.003390108933672309,
0.11735408008098602,
-0.06299842149019241,
-0.04146881774067879,
0.13672886788845062,
0.14782248437404633,
-0.021552536636590958,
-0.17127294838428497,
-0.05382784083485603,
-0.12774008512496948,
-0.051475949585437775,
0.16397225856781006,
0.000676894502248615,
0.0621776357293129,
-0.00027323170797899365,
0.0574946403503418,
-0.12612247467041016,
-0.04729115217924118,
0.01164613664150238,
-0.04376691207289696,
-0.02999916858971119,
-0.044208694249391556,
0.027641315013170242,
0.057178299874067307,
-0.0349232479929924,
-0.03797311335802078,
-0.1086784154176712,
0.009700234048068523,
0.04216986894607544,
-0.040433619171381,
-0.0004902901127934456,
-0.1004602387547493,
0.10539964586496353,
-0.0023339157924056053,
-0.07806750386953354,
-0.033871784806251526,
-0.04258626326918602,
0.08479155600070953,
-0.15907923877239227,
-0.0006390298949554563,
0.047691021114587784,
0.018712930381298065,
0.07027792930603027,
-0.08278661221265793,
-0.00905473344027996,
-0.029480939731001854,
-0.013551086187362671,
-0.044422123581171036,
-0.06826594471931458,
0.04610922187566757,
-0.001746644382365048,
0.030682247132062912,
-0.25498342514038086,
0.037437088787555695,
0.09792762994766235,
0.13349483907222748,
0.07245674729347229,
-0.0282581839710474,
0.05755067244172096,
-0.023328792303800583,
-0.01159373577684164,
-0.03562367334961891,
0.021103650331497192,
-0.040135908871889114,
-0.07714750617742538,
-0.017550721764564514,
-0.2020484209060669,
-0.13592572510242462,
0.06859132647514343,
-0.054756343364715576,
-0.13901610672473907,
-0.03541870042681694,
-0.013780655339360237,
-0.026983894407749176,
-0.08197440207004547,
-0.0286246445029974,
0.05408123880624771,
-0.009792021475732327,
0.04241109639406204,
-0.10454770177602768,
0.0011900479439646006,
0.007522170431911945,
-0.04386137053370476,
-0.11551610380411148,
-0.023737045004963875,
0.04698853939771652,
-0.05163230746984482,
0.00866223219782114,
-0.11012248694896698,
-0.03605949133634567,
0.15907390415668488,
0.05391325429081917,
-0.03469736874103546,
-0.015644198283553123,
0.04354158788919449,
0.04329751804471016,
0.11190532892942429,
-0.06809219717979431,
0.057551175355911255,
0.05510792136192322,
-0.03097771666944027,
-0.005987775046378374,
-0.12126077711582184,
0.006806001998484135,
0.009491492062807083,
-0.016942739486694336,
0.06927570700645447,
0.04023252800107002,
-0.009110706858336926,
0.05155413970351219,
-0.01991518773138523,
0.04224018752574921,
-0.05345875769853592,
-0.04461170360445976,
-0.04674649238586426,
0.07942886650562286,
0.006827383302152157,
-0.23132264614105225,
-0.0683862566947937,
0.07904181629419327,
-0.05750679224729538,
0.008687818422913551,
0.023166971281170845,
-0.01870543323457241,
-0.08333349972963333,
-0.14964143931865692,
-0.01342184841632843,
-0.006399060133844614,
-0.08428382128477097,
-0.1287030726671219,
0.0424521341919899,
0.025476595386862755,
-0.08356018364429474,
-0.0029804790392518044,
-0.030100513249635696,
-0.046740394085645676,
0.005803178064525127,
-0.07450110465288162,
0.12414922565221786,
0.055647335946559906,
-0.009087973274290562,
-0.05253051966428757,
-0.04316943138837814,
0.14741745591163635,
-0.09999052435159683,
0.1656610369682312,
0.13015326857566833,
0.0028773501981049776,
0.08856616169214249,
0.16889242827892303,
-0.01270766369998455,
-0.044944554567337036,
0.020776381716132164,
0.06682578474283218,
-0.049417946487665176,
-0.13837167620658875,
0.02688649483025074,
-0.02385370247066021,
-0.021760951727628708,
0.030410895124077797,
0.01714678294956684,
0.21022860705852509,
0.12315677106380463,
-0.08662696182727814,
0.01637060008943081,
0.0802641212940216,
0.14489194750785828,
0.1375976949930191,
0.0649707093834877,
0.08627671748399734,
-0.02404838427901268,
-0.014187168329954147,
0.08271007984876633,
-0.030445372685790062,
0.16179615259170532,
-0.06470625102519989,
0.09608323872089386,
0.04029424488544464,
0.01894255541265011,
0.07472452521324158,
-0.019739650189876556,
-0.031181449070572853,
-0.015954170376062393,
-0.04979540780186653,
-0.04189334809780121,
0.039167370647192,
0.11521371454000473,
0.026615222916007042,
-0.03096420131623745,
-0.011489691212773323,
-0.11249005049467087,
0.09415481239557266,
0.09319265931844711,
-0.05111672729253769,
-0.05546681582927704,
0.00893112737685442,
0.07063961029052734,
-0.019834572449326515,
-0.07093469053506851,
-0.05411965772509575,
0.014357201755046844,
-0.13215599954128265,
0.13421767950057983,
-0.052597735077142715,
0.06937669217586517,
-0.09479231387376785,
-0.031428173184394836,
-0.08950858563184738,
0.0872497409582138,
-0.02677616849541664,
0.05340498685836792,
-0.15761889517307281,
-0.00787059124559164,
0.008610940538346767,
0.14401790499687195,
0.0014438702492043376,
-0.038954682648181915,
0.06745827943086624,
0.05704810470342636,
0.06475206464529037,
0.0022445579525083303,
-0.17216446995735168,
-0.10075990855693817,
-0.03189666196703911,
0.010839411057531834,
0.03968401998281479,
-0.02377837337553501,
0.04633193835616112,
-0.007515879813581705,
-0.02315368317067623,
-0.0333210788667202,
-0.016314854845404625,
-0.23174017667770386,
-0.09960447251796722,
0.05843530595302582,
-0.0817180946469307,
0.02408291958272457,
-0.052062954753637314,
-0.020093293860554695,
0.0216978769749403,
0.08608125895261765,
-0.11783551424741745,
-0.050485868006944656,
-0.07753614336252213,
-0.006453908514231443,
0.1441277414560318,
-0.034695565700531006,
0.05132623761892319,
-0.013812866061925888,
0.2058127373456955,
-0.057400062680244446,
0.04180089011788368,
-0.06036613509058952,
-0.01446301769465208,
-0.22213025391101837,
-0.008723152801394463,
0.08503110706806183,
0.06810130923986435,
0.040346913039684296,
0.05982469394803047,
0.005003000609576702,
0.04150677099823952,
-0.06109097599983215,
0.036289505660533905,
0.03636229410767555,
-0.03978795185685158,
-0.01710902340710163,
-0.03590647131204605,
-0.13709942996501923,
-0.1767338067293167,
-0.06122058257460594,
-0.030941270291805267,
0.25289857387542725,
-0.04292948171496391,
0.03495420143008232,
0.06793666630983353,
-0.09072969108819962,
0.037707652896642685,
0.026251958683133125,
0.02650861069560051,
0.01533468533307314,
0.04440341889858246,
-0.14300000667572021,
0.027343077585101128,
0.05650435388088226,
-0.012026913464069366,
0.1227189376950264,
-0.10753486305475235,
-0.13039372861385345,
0.002608870156109333,
0.15878146886825562,
0.059741292148828506,
-0.10525792837142944,
-0.01865624077618122,
-0.018285347148776054,
-0.025662343949079514,
0.052357833832502365,
0.04690496250987053,
0.07793127000331879,
0.020103152841329575,
-0.06118076667189598,
0.06251665204763412,
-0.011698953807353973,
0.17609010636806488,
-0.014177056029438972,
0.14735765755176544,
-0.08762848377227783,
-0.0796784833073616,
-0.026693452149629593,
-0.0743650496006012,
0.09095270931720734,
0.02375981956720352,
-0.06238207593560219,
0.029014568775892258,
-0.07736119627952576,
-0.03950890153646469,
0.059683892875909805,
-0.03845902159810066,
-0.04992465674877167,
-0.10687518864870071,
0.11902441829442978,
0.03889446705579758,
0.03347364440560341,
-0.006760870572179556,
-0.09109893441200256,
-0.013795976527035236,
0.03237323462963104,
0.14098411798477173,
0.0551157146692276,
-0.06176801770925522,
0.0057970080524683,
-0.007055453024804592,
0.0642414391040802,
-0.04190341383218765,
0.04683638736605644,
0.01590694673359394,
-0.060579583048820496,
0.1598864197731018,
-0.016922609880566597,
-0.17524504661560059,
0.070255808532238,
0.09816176444292068,
-0.024805283173918724,
-0.10653232038021088,
-0.0009292992181144655,
-0.017339875921607018,
-0.02467433176934719,
-0.14138394594192505,
0.0696425661444664,
-0.07099798321723938,
-0.05052969604730606,
0.0019509841222316027,
0.026591220870614052,
0.09750735759735107,
-0.009698181413114071,
0.08490855246782303,
-0.005846878048032522,
0.0010267113102599978,
0.034522831439971924,
0.05827416479587555,
-0.058705590665340424,
-0.0037118084728717804,
0.035491764545440674,
-0.04364510253071785,
-0.048105333000421524,
0.030654139816761017,
0.09981352835893631,
0.03443388640880585,
-0.0933847427368164,
-0.062233079224824905,
-0.07298576831817627,
-0.04311961680650711,
0.14236047863960266,
0.04065047204494476,
-0.009177789092063904,
0.05772782862186432,
0.06202685460448265,
-0.08585035800933838,
0.08012977987527847,
0.05506514385342598,
0.06132598593831062,
-0.08514030277729034,
0.05445950850844383,
0.12286890298128128,
-0.07500578463077545,
-0.017122309654951096,
-0.019551491364836693,
-0.04207688197493553,
-0.05040616914629936,
-0.010640031658113003,
0.0889122486114502,
-0.06432411074638367,
0.010416779667139053,
-0.02886035293340683,
0.04444241523742676,
-0.050356425344944,
0.02808791771531105,
-0.018222473561763763,
-0.016957087442278862,
-0.013361315242946148,
0.021761810407042503,
-0.08659236133098602,
0.01045186072587967,
0.14245891571044922,
-0.08793575316667557,
-0.00374997709877789,
-0.06507682055234909,
-0.034964773803949356,
0.023741569370031357,
-0.2552836537361145,
0.05307626351714134,
-0.0013011894188821316,
-0.011384560726583004,
-0.0688052773475647,
-0.11088543385267258,
0.03986167535185814,
-0.032097745686769485,
0.006265356671065092,
-0.04657042771577835,
0.04235043749213219,
-0.1122802272439003,
-0.07157119363546371,
0.04104008898139,
-0.15549246966838837,
-0.03800032287836075,
0.052749257534742355,
0.07488854974508286,
-0.009090883657336235,
0.0983317494392395,
-0.024360619485378265,
0.03080553375184536,
-0.08184453099966049,
-0.013059376738965511,
0.013997414149343967,
-0.035926055163145065,
0.12438365072011948,
-0.0575876384973526,
-0.018091382458806038,
-0.006861440371721983,
0.1334306001663208,
0.05658191442489624,
-0.0023951749317348003,
0.033263932913541794,
-0.0657062977552414,
0.020015107467770576,
0.029528459534049034,
0.08475752174854279,
-0.07663974910974503,
-0.05842213332653046,
0.09110845625400543,
-0.03569794073700905,
0.004176138434559107,
0.051439184695482254,
0.028048448264598846,
0.13643190264701843,
-0.09420003741979599,
0.06040376052260399,
-0.01202397421002388,
0.012553405947983265,
-0.08547075092792511,
0.060300473123788834,
-0.04785703122615814,
0.010840049013495445,
-0.04001251980662346,
0.04581229388713837,
0.2257745862007141,
-0.18971899151802063,
0.09749024361371994,
0.03843321278691292,
-0.04800809919834137,
-0.027324482798576355,
-0.1922733336687088,
-0.0993690937757492,
-0.023978043347597122,
0.07673341035842896,
-0.023140890523791313,
0.005952933337539434,
0.13271428644657135,
-0.005643381271511316,
-0.021630313247442245,
0.10329046100378036,
0.011059950105845928,
-0.04768330603837967,
0.10604676604270935,
-0.005582733079791069,
-0.04526643455028534,
0.09576097875833511,
0.050662994384765625,
0.008696711622178555,
-0.04385178163647652,
0.04088106378912926,
0.010975012555718422,
0.03513234481215477,
-0.001439861487597227,
-0.052524030208587646,
-0.06851956993341446,
0.026151543483138084,
-0.042611654847860336,
0.040986500680446625,
0.10825850814580917,
0.037913259118795395,
-0.027117032557725906,
-0.027362117543816566,
0.1905212551355362,
0.0572691485285759,
0.023978885263204575,
-0.17825041711330414,
-0.058803074061870575,
0.0772893875837326,
-0.05940725654363632,
-0.011648031882941723,
-0.10328672081232071,
0.10867058485746384,
0.18265382945537567,
0.011649679392576218,
0.06600204110145569,
-0.03537196293473244,
-0.059204790741205215,
-0.005049082916229963,
0.008484157733619213,
0.06838948279619217,
-0.031013567000627518,
0.13072913885116577,
-0.04039944335818291,
0.13579881191253662,
-0.05804716423153877,
-0.08805985748767853,
-0.05108369514346123,
0.1196204200387001,
0.07281064987182617,
0.0040310099720954895,
-0.12064462900161743,
0.12635616958141327,
0.054473016411066055,
-0.05424639210104942,
0.10532643646001816,
-0.008278070017695427,
-0.013869336806237698,
0.03420165181159973,
-0.03532474860548973,
-0.01568986102938652,
0.026074063032865524,
-0.017560409381985664,
-0.016650138422846794,
0.08304664492607117,
0.03487267717719078,
-0.06766901910305023,
-0.0165297519415617,
0.0733671635389328,
0.0007607335573993623,
0.20264621078968048,
0.008191436529159546,
0.03440207242965698,
0.06637030839920044,
-0.038438789546489716,
-0.0005798662314191461,
0.09779994934797287,
-0.01203901506960392,
-0.01820390485227108,
0.023405835032463074,
0.2798330783843994,
-0.01186426728963852,
0.03621086850762367,
0.087696373462677,
0.006575441919267178,
0.08930087834596634,
-0.05854661390185356,
-0.057997122406959534,
-0.03996606543660164,
0.1654094159603119,
-0.1681595742702484,
0.065989650785923,
0.15925757586956024,
-0.015361165627837181,
-0.05468211695551872,
-0.06153907626867294,
0.005671151913702488,
-0.008446794003248215,
0.07502920180559158,
0.015762336552143097,
-0.08795352280139923,
-0.001756459241732955,
0.13000521063804626,
0.0352463461458683,
-0.18520507216453552,
-0.07621461153030396,
-0.07092464715242386,
-0.05186108499765396,
-0.06572876125574112,
0.05124921724200249,
0.035786837339401245,
-0.005035565700381994,
-0.05093628168106079,
-0.16560770571231842,
-0.008869593963027,
0.07889015972614288,
-0.051868170499801636,
-0.021307233721017838
] |
null | null | transformers | Please refer to [faster-distil-whisper](https://github.com/metame-none/faster-distil-whisper) for more details. | {"license": "mit"} | null | metame/faster-distil-whisper-large-v2 | [
"transformers",
"license:mit",
"endpoints_compatible",
"has_space",
"region:us"
] | 2023-11-11T09:04:01+00:00 | [] | [] | TAGS
#transformers #license-mit #endpoints_compatible #has_space #region-us
| Please refer to faster-distil-whisper for more details. | [] | [
"TAGS\n#transformers #license-mit #endpoints_compatible #has_space #region-us \n"
] | [
26
] | [
"passage: TAGS\n#transformers #license-mit #endpoints_compatible #has_space #region-us \n"
] | [
0.02575245313346386,
0.02245331183075905,
-0.004422424361109734,
-0.05442967638373375,
0.06373696029186249,
0.023509781807661057,
0.1208283081650734,
0.10333538055419922,
0.08794423937797546,
0.0004237573593854904,
0.1424521505832672,
0.14516398310661316,
-0.055491745471954346,
0.0267595537006855,
-0.055308062583208084,
-0.19916562736034393,
0.1311430186033249,
0.03808217868208885,
-0.09712423384189606,
0.04176739975810051,
0.09193578362464905,
-0.0773678794503212,
0.05663909390568733,
-0.006433373317122459,
-0.13005299866199493,
0.06117439270019531,
0.020553505048155785,
-0.07843505591154099,
0.1489451378583908,
0.04395107552409172,
0.15807045996189117,
0.08244401961565018,
-0.06267046183347702,
-0.1801472008228302,
0.004650501534342766,
0.0020281316246837378,
-0.10799477249383926,
0.026885205879807472,
-0.029397793114185333,
-0.0011741319904103875,
0.06082911416888237,
-0.004824915435165167,
-0.000051114955567754805,
0.04656421020627022,
-0.14297479391098022,
-0.2545243501663208,
-0.09408426284790039,
-0.021032392978668213,
-0.003420199966058135,
0.047428544610738754,
0.0389309786260128,
0.14227037131786346,
-0.12985993921756744,
0.01445904653519392,
0.14006218314170837,
-0.38564980030059814,
0.0588756762444973,
0.270270973443985,
0.14773029088974,
0.010365796275436878,
-0.03453197330236435,
0.08994273096323013,
0.0714016780257225,
-0.0134540731087327,
0.05270933359861374,
-0.04229693487286568,
0.0307020153850317,
0.15132607519626617,
-0.07430556416511536,
-0.10541345924139023,
0.2309214323759079,
-0.032543107867240906,
0.051223088055849075,
-0.05059901252388954,
-0.06762100756168365,
-0.07200200855731964,
0.03208823502063751,
0.016286790370941162,
0.0524141788482666,
0.12844952940940857,
0.026432868093252182,
-0.03947790712118149,
-0.1761562079191208,
0.03024560771882534,
-0.23419936001300812,
0.1255505383014679,
-0.019587617367506027,
0.09492253512144089,
-0.16761675477027893,
0.03892986476421356,
-0.11007407307624817,
-0.07220872491598129,
-0.02320040948688984,
-0.09161560982465744,
0.016971508041024208,
-0.006702391430735588,
-0.1297769993543625,
0.06564030051231384,
0.08969749510288239,
0.17992465198040009,
0.015491029247641563,
-0.021204721182584763,
0.012910091318190098,
0.13408800959587097,
0.013676375150680542,
0.07427193969488144,
0.011818216182291508,
0.008764366619288921,
-0.03680381923913956,
-0.18206582963466644,
0.028887886554002762,
-0.050998225808143616,
-0.16485096514225006,
-0.08335660398006439,
-0.0702570378780365,
0.09073177725076675,
0.04138942435383797,
0.02464265376329422,
-0.029376361519098282,
0.09447906166315079,
0.09223704040050507,
-0.015422534197568893,
0.025295980274677277,
-0.046571969985961914,
0.06240816414356232,
0.04673903435468674,
-0.008025017566978931,
0.008315899409353733,
0.10021557658910751,
0.05731695145368576,
-0.10301968455314636,
-0.022891856729984283,
-0.06037186086177826,
-0.08795814216136932,
0.09066151082515717,
-0.13170763850212097,
0.06648485362529755,
-0.15125885605812073,
-0.06626498699188232,
0.031213728711009026,
0.07671468704938889,
-0.011813000775873661,
0.022358406335115433,
0.08612599223852158,
-0.05245642736554146,
0.06135725975036621,
-0.09973122179508209,
-0.09371361881494522,
-0.08771467208862305,
0.028772292658686638,
-0.049518290907144547,
0.07300040870904922,
-0.2265802025794983,
0.04962117597460747,
-0.08818370848894119,
0.05154597759246826,
-0.04552502557635307,
-0.038998279720544815,
-0.0698714405298233,
0.1814986616373062,
-0.011058368720114231,
-0.021400893107056618,
-0.09744048118591309,
0.08509901165962219,
-0.050673119723796844,
0.06286723911762238,
-0.14406369626522064,
-0.02595236338675022,
0.13052329421043396,
-0.1029273197054863,
-0.19039195775985718,
0.02273138426244259,
-0.010194913484156132,
0.06461682915687561,
-0.01083487831056118,
0.26302650570869446,
0.0043303025886416435,
-0.14266563951969147,
0.016525356099009514,
0.168243870139122,
-0.1302260458469391,
-0.20274874567985535,
0.0741410031914711,
-0.04629349708557129,
-0.028116099536418915,
-0.0022608982399106026,
-0.02204681746661663,
0.07508159428834915,
-0.020135167986154556,
-0.05126142501831055,
-0.0872807651758194,
-0.010724049061536789,
0.03212730959057808,
0.007391273509711027,
0.08221915364265442,
-0.09197162836790085,
-0.01821443997323513,
0.1319730430841446,
-0.011330326087772846,
0.06412497907876968,
0.05399012193083763,
-0.04501264914870262,
0.08357086777687073,
-0.0653773695230484,
-0.03632514178752899,
-0.10972081869840622,
-0.1081187054514885,
-0.04353679344058037,
-0.01317044161260128,
-0.005327940918505192,
0.3286328613758087,
0.0473141074180603,
-0.09439932554960251,
0.01668807864189148,
0.023067466914653778,
0.10787458717823029,
0.12760262191295624,
-0.021335544064641,
-0.04378118738532066,
-0.014766660518944263,
-0.06870956718921661,
-0.1333516240119934,
-0.02179311402142048,
0.03268489986658096,
0.13652746379375458,
0.10150659084320068,
-0.03219158947467804,
0.08322174847126007,
-0.05276016891002655,
0.011768600903451443,
-0.06829813122749329,
-0.014630566351115704,
0.0779058113694191,
0.013278305530548096,
-0.05594153329730034,
0.2642461955547333,
-0.12616950273513794,
0.3363301455974579,
0.22951774299144745,
-0.16210274398326874,
0.020161844789981842,
0.0036111692897975445,
-0.02317545749247074,
0.039385754615068436,
0.04055832326412201,
-0.05194872245192528,
-0.10855745524168015,
-0.04150327667593956,
0.08908837288618088,
-0.013312161900103092,
0.004496776033192873,
-0.02566620148718357,
-0.08997596055269241,
-0.10668722540140152,
-0.02185121551156044,
0.060113050043582916,
-0.17894306778907776,
0.22315353155136108,
0.39014747738838196,
0.04738142341375351,
0.12590669095516205,
-0.05689438059926033,
0.02208888903260231,
-0.04840997979044914,
-0.03709954395890236,
-0.07317211478948593,
0.1164298877120018,
-0.19377760589122772,
-0.05526111274957657,
0.0863080695271492,
0.07107293605804443,
0.08832178264856339,
-0.16291716694831848,
-0.08391674607992172,
0.0965818241238594,
0.028839509934186935,
-0.09930094331502914,
0.14417552947998047,
0.007040113210678101,
0.051443155854940414,
0.010153207927942276,
-0.07228715717792511,
0.11712882667779922,
-0.017511971294879913,
-0.031330447643995285,
0.08512331545352936,
-0.15476220846176147,
-0.1271122395992279,
-0.15860868990421295,
-0.1354214996099472,
0.04464612901210785,
0.051562659442424774,
0.14061684906482697,
-0.023834796622395515,
-0.054468970745801926,
-0.008051235228776932,
0.005443185567855835,
-0.14176048338413239,
0.03556769713759422,
-0.06622762233018875,
0.07440485805273056,
-0.08738773316144943,
-0.13178449869155884,
-0.08385481685400009,
0.01849626749753952,
-0.02661227248609066,
0.06028950959444046,
-0.04764663428068161,
0.08735858649015427,
0.10663077235221863,
-0.014887835830450058,
0.03233703225851059,
-0.05256948247551918,
0.18475134670734406,
-0.04574942588806152,
-0.036121759563684464,
0.16882917284965515,
0.07271259278059006,
0.06281653791666031,
0.22945186495780945,
0.05915381386876106,
-0.06249959394335747,
-0.009621400386095047,
-0.08423689007759094,
-0.14790627360343933,
-0.13810020685195923,
-0.10516435652971268,
-0.1438760757446289,
-0.02959836646914482,
-0.00310066738165915,
0.09253095090389252,
0.12113773822784424,
0.06443702429533005,
0.06516680121421814,
-0.053419411182403564,
-0.07082344591617584,
0.07314300537109375,
0.29471033811569214,
-0.06274715811014175,
0.10664259642362595,
-0.14356116950511932,
-0.047032810747623444,
0.09467422217130661,
0.1307031214237213,
0.1507866531610489,
0.176180899143219,
0.08393634110689163,
0.12451837956905365,
0.18567991256713867,
0.1448064148426056,
0.09206275641918182,
0.05626581981778145,
-0.03774531930685043,
-0.0352107435464859,
-0.002617540070787072,
0.019428644329309464,
0.12295272946357727,
0.11864398419857025,
-0.2032216638326645,
0.015613030642271042,
-0.2746088206768036,
0.06997288018465042,
0.05121801048517227,
0.11437072604894638,
-0.16255909204483032,
0.007872061803936958,
0.10875573754310608,
0.006622471380978823,
-0.010224948637187481,
0.08192488551139832,
0.08478463441133499,
-0.03727750852704048,
0.049637723714113235,
0.025443093851208687,
0.07361543923616409,
0.11907041817903519,
0.09968328475952148,
-0.033581968396902084,
-0.21833935379981995,
0.04144177585840225,
0.0878233090043068,
-0.29504501819610596,
0.25447598099708557,
-0.03361419960856438,
-0.09656088799238205,
-0.04477361962199211,
-0.012592209503054619,
0.022005517035722733,
0.19895222783088684,
0.07613326609134674,
0.03467059135437012,
-0.26517170667648315,
-0.10305094718933105,
0.10979210585355759,
-0.014020402915775776,
0.07244130969047546,
-0.007190199568867683,
-0.02793131209909916,
-0.04279036447405815,
0.0315701924264431,
0.044276025146245956,
0.2547980844974518,
0.008885828778147697,
-0.16578637063503265,
0.029325097799301147,
0.08702432364225388,
0.04025537148118019,
-0.0411565937101841,
0.03807841241359711,
-0.18542729318141937,
0.10027136653661728,
-0.034068722277879715,
0.013449322432279587,
-0.10810620337724686,
-0.2030586451292038,
0.10503341257572174,
-0.007340142037719488,
0.09164770692586899,
-0.05488700792193413,
-0.012383445166051388,
-0.1126134842634201,
-0.15205486118793488,
0.13435640931129456,
-0.08894755691289902,
0.03850661218166351,
-0.06011241301894188,
0.05535409227013588,
-0.16116520762443542,
0.02987317554652691,
0.04354710131883621,
0.0989346131682396,
-0.150682732462883,
-0.11538184434175491,
0.010072531178593636,
-0.03875565901398659,
0.05574285238981247,
-0.019243916496634483,
0.0043530152179300785,
0.01884765550494194,
0.13856452703475952,
-0.02897275611758232,
0.1978892982006073,
0.2227458953857422,
-0.1251935213804245,
0.16078990697860718,
0.11022873222827911,
-0.06544895470142365,
-0.30153778195381165,
-0.08410219848155975,
-0.2778349816799164,
-0.01830814965069294,
0.08889622986316681,
-0.03596320003271103,
0.05334831774234772,
0.042344383895397186,
-0.09553767740726471,
0.044290442019701004,
-0.20574626326560974,
-0.08155351132154465,
0.13277795910835266,
-0.07214255630970001,
0.4238613247871399,
-0.14246749877929688,
-0.06626824289560318,
-0.050075713545084,
-0.2553316652774811,
0.15868590772151947,
-0.06737501174211502,
0.07582640647888184,
0.001562827848829329,
0.019308606162667274,
-0.0006265292759053409,
-0.0931377112865448,
0.21476364135742188,
0.0007293656235560775,
0.08571089804172516,
-0.1103145033121109,
-0.09885453432798386,
0.17407312989234924,
-0.08210524171590805,
0.038138825446367264,
-0.05926933139562607,
-0.009159747511148453,
-0.12751857936382294,
0.01604865863919258,
-0.07834601402282715,
0.10124856978654861,
0.012601164169609547,
-0.06664152443408966,
-0.13201695680618286,
0.006332195829600096,
0.019265824928879738,
-0.03685532510280609,
0.33297887444496155,
-0.02996819280087948,
0.13857178390026093,
0.14075180888175964,
-0.041426610201597214,
-0.1831619292497635,
-0.05567747727036476,
0.03407473489642143,
-0.06185298040509224,
0.08755183219909668,
-0.19827650487422943,
0.022885272279381752,
0.09165938943624496,
-0.054644227027893066,
0.04272451251745224,
0.11588730663061142,
-0.006907309405505657,
0.010819575749337673,
0.1740051656961441,
-0.07945096492767334,
-0.12901808321475983,
0.03625509515404701,
0.012419575825333595,
0.1518857628107071,
0.04406779631972313,
0.08518745005130768,
-0.00350020918995142,
0.03355105593800545,
-0.013695134781301022,
-0.024105079472064972,
-0.13175545632839203,
-0.04339773952960968,
0.04836270958185196,
0.05238819122314453,
-0.09275450557470322,
0.06335151940584183,
0.01935749500989914,
-0.1580059826374054,
-0.020565198734402657,
-0.008394910953938961,
-0.09384027868509293,
-0.13684828579425812,
-0.11279164254665375,
-0.015294838696718216,
-0.18957854807376862,
-0.06478605419397354,
0.034856636077165604,
-0.13565441966056824,
0.008723554201424122,
0.16566090285778046,
0.11745937913656235,
0.14178957045078278,
0.007426347117871046,
-0.03676697239279747,
0.0503225103020668,
-0.1042424812912941,
-0.127703458070755,
0.060507066547870636,
-0.11304426938295364,
-0.009719439782202244,
-0.03928375244140625,
0.08533897250890732,
-0.08460525423288345,
-0.012271543964743614,
-0.16639479994773865,
0.012462645769119263,
-0.1428317427635193,
-0.09190607070922852,
-0.16219398379325867,
-0.07916770130395889,
0.07382503151893616,
-0.10030817985534668,
-0.06432761251926422,
-0.012895212508738041,
-0.16414937376976013,
0.016673456877470016,
0.008436539210379124,
0.10566579550504684,
-0.07851295173168182,
-0.025828640908002853,
0.0919782742857933,
-0.011846993118524551,
0.042335715144872665,
0.039206065237522125,
-0.062123026698827744,
0.06923764199018478,
-0.06993317604064941,
-0.11991772800683975,
0.08831160515546799,
-0.015299409627914429,
0.07399333268404007,
0.03783774748444557,
-0.032056696712970734,
0.09663930535316467,
0.029784750193357468,
0.03904780372977257,
-0.0985356867313385,
-0.09668814390897751,
-0.04530058428645134,
-0.0374814048409462,
-0.10739833861589432,
0.03193804249167442,
-0.11860596388578415,
0.2304348349571228,
0.008325198665261269,
0.14246122539043427,
0.03978889063000679,
0.008525965735316277,
-0.022674571722745895,
-0.002627980662509799,
-0.03370628505945206,
-0.1526096612215042,
0.015851512551307678,
-0.06930791586637497,
-0.05280061438679695,
-0.012929578311741352,
0.4227270185947418,
0.038303397595882416,
-0.13826261460781097,
0.08063115924596786,
0.07625218480825424,
0.012803254649043083,
0.005688901524990797,
0.32233497500419617,
0.09805870056152344,
-0.009095381945371628,
-0.12798529863357544,
0.07897941023111343,
-0.016146155074238777,
-0.13149148225784302,
0.03430650383234024,
0.17087338864803314,
0.04196653515100479,
0.1253625601530075,
0.07507002353668213,
-0.05255037173628807,
-0.0994105190038681,
-0.1271870732307434,
0.04650820791721344,
0.06519503891468048,
-0.07394354790449142,
-0.0018318434013053775,
0.1819625198841095,
-0.07441719621419907,
0.08611272275447845,
-0.0590684749186039,
0.041762575507164,
-0.1438836008310318,
-0.09898582845926285,
-0.027347946539521217,
-0.170694038271904,
0.0009573012357577682,
-0.011488077230751514,
0.0686679556965828,
0.29552969336509705,
0.03537917509675026,
0.0011997304391115904,
0.02475554682314396,
-0.058111175894737244,
-0.034892722964286804,
-0.04347337409853935,
-0.01048585120588541,
0.029622577130794525,
-0.07755306363105774,
-0.030289551243185997,
-0.08843743056058884,
-0.08884350955486298,
-0.06313353031873703,
0.05209261551499367,
-0.017256075516343117,
-0.01977688819169998,
-0.12803229689598083,
-0.056932415813207626,
-0.07342804223299026,
0.07872288674116135,
-0.06481342017650604,
0.12197362631559372,
-0.014197321608662605,
0.02126433700323105,
0.025950109586119652,
0.19919218122959137,
-0.10477590560913086,
-0.09344803541898727,
0.0029137583915144205,
0.12578341364860535,
0.06563206017017365,
0.1348629742860794,
-0.05828307569026947,
-0.004402272403240204,
-0.10338258743286133,
0.16265521943569183,
0.3238528072834015,
0.005586886312812567,
0.06823721528053284,
0.02629653550684452,
0.010483204387128353,
0.0570407435297966,
0.09012722969055176,
0.05331705883145332,
0.19702142477035522,
-0.08592169731855392,
0.004304788541048765,
-0.028836850076913834,
-0.016184629872441292,
-0.08150748908519745,
0.06793497502803802,
-0.004830654244869947,
-0.09930825978517532,
-0.04009340703487396,
0.08020392060279846,
-0.10551521182060242,
0.06745981425046921,
0.1581333428621292,
-0.15812507271766663,
0.009065721184015274,
0.03641309589147568,
0.23852968215942383,
-0.06708727031946182,
0.09373854845762253,
-0.07351414859294891,
-0.08622031658887863,
0.020861800760030746,
-0.005368847865611315,
-0.2488396316766739,
-0.02862965501844883,
0.11464522778987885,
0.06185010448098183,
0.051260970532894135,
-0.03482142835855484,
0.006325243040919304,
0.10470414161682129,
0.09340152144432068,
-0.08157975226640701,
0.12123087048530579,
0.050765156745910645,
-0.10991144180297852,
-0.09080589562654495,
-0.13697828352451324,
-0.020637687295675278,
-0.03939640149474144,
0.043969567865133286,
-0.23571543395519257,
0.07324659079313278,
0.024428196251392365,
-0.03145114704966545,
-0.032516706734895706,
-0.08692537248134613,
-0.049529243260622025,
0.08571599423885345,
-0.028960002586245537,
-0.01894204504787922,
-0.028024490922689438,
0.012913680635392666,
-0.011021536774933338,
0.07506351172924042,
-0.1252078115940094,
-0.12498342245817184,
0.025530824437737465,
-0.017897147685289383,
0.12164090573787689,
-0.01431437861174345,
-0.052519895136356354,
-0.06286974251270294,
0.009870410896837711,
0.05792772024869919,
-0.04748745262622833,
0.039709314703941345,
0.15156595408916473,
0.025648687034845352,
-0.026412149891257286,
-0.16500215232372284,
0.01941777393221855,
0.0409773588180542,
-0.08408593386411667,
-0.09868527203798294
] |
null | null | transformers | Please refer to [faster-distil-whisper](https://github.com/metame-none/faster-distil-whisper) for more details. | {"license": "mit"} | null | metame/faster-distil-whisper-medium.en | [
"transformers",
"license:mit",
"endpoints_compatible",
"region:us"
] | 2023-11-11T09:06:07+00:00 | [] | [] | TAGS
#transformers #license-mit #endpoints_compatible #region-us
| Please refer to faster-distil-whisper for more details. | [] | [
"TAGS\n#transformers #license-mit #endpoints_compatible #region-us \n"
] | [
22
] | [
"passage: TAGS\n#transformers #license-mit #endpoints_compatible #region-us \n"
] | [
-0.02384273335337639,
0.020705031231045723,
-0.006726514082401991,
-0.06449432671070099,
0.11350968480110168,
0.03331856057047844,
0.13456286489963531,
0.08676636964082718,
0.11866332590579987,
-0.06469320505857468,
0.12204904109239578,
0.23731914162635803,
-0.020222337916493416,
0.01691085286438465,
-0.07370807230472565,
-0.20247477293014526,
0.11601050943136215,
0.07310594618320465,
-0.04145419970154762,
0.05619204416871071,
0.0897371917963028,
-0.047508057206869125,
0.06195437163114548,
-0.00937095656991005,
-0.13643597066402435,
0.04333363100886345,
0.05310448259115219,
-0.08099320530891418,
0.12755423784255981,
0.059785839170217514,
0.1326955109834671,
0.07032227516174316,
-0.06254199147224426,
-0.24761216342449188,
-0.0057078152894973755,
-0.021324630826711655,
-0.10308854281902313,
0.009448914788663387,
0.017530160024762154,
-0.02313971146941185,
0.029233694076538086,
0.060568127781152725,
0.0008594611426815391,
0.08514750003814697,
-0.13433510065078735,
-0.22690589725971222,
-0.09808090329170227,
-0.012277181260287762,
0.07449813187122345,
0.051144663244485855,
0.06433986127376556,
0.1268102377653122,
-0.09217295050621033,
0.03524138405919075,
0.08146081864833832,
-0.3781523108482361,
0.07516434788703918,
0.18697589635849,
0.08781369775533676,
-0.013907917775213718,
-0.019564952701330185,
0.06817487627267838,
0.05817297473549843,
-0.005103239789605141,
-0.01606951840221882,
-0.06466294825077057,
0.06488178670406342,
0.12289543449878693,
-0.04147821292281151,
-0.09507770091295242,
0.2104606032371521,
-0.019690100103616714,
0.001806632848456502,
-0.026604754850268364,
-0.05741598829627037,
-0.040471646934747696,
-0.013151267543435097,
0.00791151262819767,
0.042697153985500336,
0.16251131892204285,
0.025161417201161385,
-0.01917458511888981,
-0.1407502293586731,
0.004771403502672911,
-0.26187407970428467,
0.16372328996658325,
0.00840137992054224,
0.10863889008760452,
-0.19817283749580383,
0.03905307874083519,
-0.1177014485001564,
-0.05005335062742233,
-0.07434895634651184,
-0.0825941264629364,
0.02751174569129944,
-0.038085971027612686,
-0.07601651549339294,
0.061645857989788055,
0.09176329523324966,
0.22113272547721863,
0.05380062386393547,
0.0018197925528511405,
-0.03329825401306152,
0.11777516454458237,
-0.03175189718604088,
0.08009898662567139,
0.07718075066804886,
0.016949743032455444,
0.0014575535897165537,
-0.26513856649398804,
0.013563708402216434,
-0.015209030359983444,
-0.15311749279499054,
-0.06650812178850174,
-0.08870896697044373,
0.13870158791542053,
-0.015305917710065842,
0.022671302780508995,
-0.06579633057117462,
0.06017236411571503,
0.10803282260894775,
-0.020073890686035156,
0.0006188948173075914,
-0.03313953056931496,
0.047573987394571304,
0.09574180096387863,
-0.021782375872135162,
0.01692146435379982,
0.03754736855626106,
0.10165198147296906,
-0.07533642649650574,
-0.03181091696023941,
-0.04548589512705803,
-0.020905528217554092,
0.09387249499559402,
-0.13279417157173157,
0.09154529124498367,
-0.13002167642116547,
-0.16465963423252106,
0.06122943386435509,
0.07382186502218246,
-0.00291044102050364,
0.045239582657814026,
0.020651064813137054,
-0.00418537063524127,
-0.002709822030737996,
-0.09907388687133789,
-0.1344023495912552,
-0.08191358298063278,
0.04605953022837639,
-0.026868650689721107,
0.01160772331058979,
-0.21424031257629395,
0.05137229338288307,
-0.10583736002445221,
0.04380261152982712,
-0.04487641900777817,
-0.02196287177503109,
-0.05979271978139877,
0.2193080484867096,
-0.03911827132105827,
-0.01311715878546238,
-0.05400514975190163,
0.048763614147901535,
-0.06791612505912781,
0.09835664927959442,
-0.08691305667161942,
-0.0649549812078476,
0.2005222886800766,
-0.12543851137161255,
-0.22726593911647797,
0.016990462318062782,
-0.010601229034364223,
0.09484834223985672,
0.06956876814365387,
0.19345375895500183,
0.055761225521564484,
-0.1348462849855423,
0.10587268322706223,
0.1592569649219513,
-0.19494420289993286,
-0.2712569534778595,
0.05494920164346695,
-0.08186967670917511,
-0.09680955857038498,
0.04136952385306358,
-0.014341473579406738,
0.09640856832265854,
-0.038715098053216934,
-0.030398067086935043,
-0.042023997753858566,
-0.0068369233049452305,
-0.005056248977780342,
0.01277709100395441,
0.05879024416208267,
-0.08992158621549606,
0.039777178317308426,
0.10232619196176529,
-0.0266822911798954,
0.04379948228597641,
0.042176131159067154,
-0.09614603221416473,
0.024422122165560722,
-0.040748730301856995,
-0.010937005281448364,
-0.10968691855669022,
-0.09194274991750717,
-0.004469335079193115,
-0.0034989805426448584,
-0.006323664449155331,
0.20165769755840302,
0.06153213977813721,
-0.07981271296739578,
0.0227351076900959,
0.025229092687368393,
0.15741413831710815,
0.09810194373130798,
0.0017115679802373052,
-0.04657233506441116,
0.02371392399072647,
-0.05062945932149887,
-0.13539278507232666,
-0.0019190437160432339,
0.004512490704655647,
0.12931489944458008,
0.08437316119670868,
-0.019846489652991295,
0.08140306174755096,
-0.07389896363019943,
0.007180328480899334,
-0.03752481937408447,
-0.004982427228242159,
0.11618391424417496,
0.027306942269206047,
-0.0738917738199234,
0.24024097621440887,
-0.08030202984809875,
0.3256012499332428,
0.2133895605802536,
-0.17755335569381714,
0.037649739533662796,
-0.0606115385890007,
-0.007606402039527893,
0.004819848574697971,
0.07520213723182678,
0.002134616021066904,
-0.015779931098222733,
0.022465143352746964,
0.12218932062387466,
-0.02078641578555107,
-0.0029222979210317135,
-0.012787822633981705,
-0.07958642393350601,
-0.08673392981290817,
-0.015335596166551113,
0.13026393949985504,
-0.23770196735858917,
0.19234879314899445,
0.3022809624671936,
0.11827586591243744,
0.08671890944242477,
-0.10416197776794434,
0.010622807778418064,
-0.01871360093355179,
0.022950323298573494,
-0.02079767733812332,
0.06005728244781494,
-0.18805256485939026,
-0.019473718479275703,
0.07265693694353104,
0.05331326276063919,
0.09490466117858887,
-0.16275666654109955,
-0.08045502752065659,
0.07917238771915436,
-0.026159631088376045,
-0.08217369019985199,
0.10558415949344635,
-0.015354105271399021,
0.03481259196996689,
-0.0039945337921381,
-0.07589113712310791,
0.17542999982833862,
-0.015496275387704372,
-0.08583636581897736,
0.11847470700740814,
-0.1576857566833496,
-0.1299610733985901,
-0.20804309844970703,
-0.21385890245437622,
0.035145439207553864,
0.05496923625469208,
0.11927305907011032,
-0.015707310289144516,
-0.0672420784831047,
0.0552830696105957,
-0.012561116367578506,
-0.10349857062101364,
0.01500244066119194,
-0.054966822266578674,
0.08788257092237473,
-0.08813685923814774,
-0.12223502993583679,
-0.0791560560464859,
0.02192765101790428,
-0.013854005374014378,
0.05097624287009239,
-0.13968996703624725,
0.09017618000507355,
0.09867097437381744,
-0.004360500257462263,
0.05179539695382118,
-0.05478517711162567,
0.14619293808937073,
-0.03421512991189957,
-0.0627262070775032,
0.1754438281059265,
0.02253301627933979,
0.07116447389125824,
0.2056799679994583,
0.04961163178086281,
-0.09961117804050446,
-0.01055111549794674,
-0.1115257740020752,
-0.13267424702644348,
-0.2255299687385559,
-0.08938716351985931,
-0.13338623940944672,
0.012343065813183784,
0.013573548756539822,
0.07846514880657196,
0.13367700576782227,
0.0969289243221283,
0.06028265133500099,
-0.043052852153778076,
-0.013009763322770596,
0.10325105488300323,
0.30653586983680725,
-0.0220295712351799,
0.07028248906135559,
-0.16429397463798523,
-0.041761405766010284,
0.10515029728412628,
0.1221882775425911,
0.19346371293067932,
0.21554692089557648,
0.15233296155929565,
0.11272814869880676,
0.14769600331783295,
0.14468485116958618,
0.13385391235351562,
0.052549175918102264,
-0.031028956174850464,
-0.01872316747903824,
0.020691536366939545,
-0.03237921744585037,
0.0776287242770195,
0.054968517273664474,
-0.18592654168605804,
-0.011459090746939182,
-0.24037885665893555,
0.04751325398683548,
0.08042722195386887,
0.05502830073237419,
-0.17461787164211273,
0.017324840649962425,
0.09147326648235321,
0.007296345662325621,
-0.03201040253043175,
0.10188812762498856,
-0.028359582647681236,
-0.08388392627239227,
0.0976857841014862,
-0.03302301466464996,
0.09858318418264389,
0.06807104498147964,
0.06432706117630005,
0.02808007411658764,
-0.1655854880809784,
0.056961540132761,
0.12037411332130432,
-0.31212806701660156,
0.25688567757606506,
-0.012854771688580513,
-0.024729976430535316,
-0.060363687574863434,
-0.013269270770251751,
-0.00918082520365715,
0.22540085017681122,
0.1103120893239975,
0.015481243841350079,
-0.22607913613319397,
-0.09864042699337006,
0.09710489958524704,
0.012679079547524452,
0.08995573222637177,
0.010798376053571701,
-0.05642721429467201,
-0.052529893815517426,
0.009864414110779762,
0.006603472400456667,
0.08721421658992767,
0.0318821482360363,
-0.16528454422950745,
0.006399974692612886,
0.061503831297159195,
0.08893024176359177,
-0.03951369971036911,
0.07295836508274078,
-0.10119444876909256,
0.14050067961215973,
-0.10569854825735092,
-0.020155886188149452,
-0.11076387763023376,
-0.24002496898174286,
0.06478855758905411,
-0.03920559585094452,
0.09119177609682083,
-0.0677507221698761,
-0.0389515683054924,
-0.09374887496232986,
-0.19626767933368683,
0.12821263074874878,
-0.09835125505924225,
0.04828294366598129,
-0.06368771940469742,
0.11451311409473419,
-0.12435232847929001,
-0.010434329509735107,
0.0510193333029747,
0.0240828525274992,
-0.0771469995379448,
-0.11836537718772888,
-0.015817908570170403,
-0.016702793538570404,
0.054785583168268204,
-0.02510301023721695,
-0.023663239553570747,
0.036174267530441284,
0.06194561347365379,
-0.04341621696949005,
0.1912917047739029,
0.21419264376163483,
-0.06583504378795624,
0.1693343073129654,
0.19337822496891022,
-0.10321111977100372,
-0.26140207052230835,
-0.10560834407806396,
-0.26465922594070435,
-0.057362694293260574,
0.015730958431959152,
-0.09019506722688675,
0.10281030833721161,
0.06161288172006607,
-0.06065663322806358,
0.10303568840026855,
-0.1927587389945984,
-0.0833919420838356,
0.17427276074886322,
0.006850479170680046,
0.4466777443885803,
-0.11010512709617615,
-0.10892701148986816,
-0.0715499222278595,
-0.31544384360313416,
0.1390911489725113,
0.01170412078499794,
0.06280244141817093,
0.005659661255776882,
0.03243190422654152,
-0.011283262632787228,
-0.09083623439073563,
0.1699528694152832,
0.04100855439901352,
0.09604855626821518,
-0.10260335355997086,
-0.03836453706026077,
0.12625710666179657,
-0.024303952232003212,
0.05286819487810135,
-0.022750768810510635,
0.0026038293726742268,
-0.07288365066051483,
-0.0303362924605608,
-0.038988471031188965,
0.07183273881673813,
0.0383397601544857,
-0.07058478891849518,
-0.08057092130184174,
-0.01989353820681572,
0.001332762185484171,
-0.041768766939640045,
0.3074043095111847,
-0.011225416325032711,
0.07555732876062393,
0.07765865325927734,
0.040809329599142075,
-0.22164766490459442,
-0.05184173583984375,
-0.06080624833703041,
-0.07609502971172333,
0.06010698527097702,
-0.12089499086141586,
0.034506525844335556,
0.1306813657283783,
-0.05096512287855148,
0.04862574487924576,
0.10833974927663803,
0.002823721384629607,
-0.01210818998515606,
0.13458308577537537,
-0.07687664031982422,
-0.1020217090845108,
0.029520081356167793,
0.0195936169475317,
0.1650485247373581,
0.09950199723243713,
0.06084277480840683,
0.016011033207178116,
0.02493877150118351,
-0.02177545428276062,
-0.011347830295562744,
-0.1176256611943245,
-0.023356638848781586,
0.022837575525045395,
0.022671209648251534,
-0.12695476412773132,
0.11090579628944397,
-0.028047438710927963,
-0.1868198961019516,
-0.04539026319980621,
-0.006214291788637638,
-0.15883769094944,
-0.07930715382099152,
-0.06621228158473969,
0.06088177114725113,
-0.23621153831481934,
-0.10582045465707779,
0.004924737382680178,
-0.1504209190607071,
0.04445761814713478,
0.1897026151418686,
0.09549246728420258,
0.16390490531921387,
-0.018952349200844765,
-0.05420618876814842,
0.010205043479800224,
-0.10310769081115723,
-0.1342017501592636,
0.04612753912806511,
-0.10283266752958298,
-0.059379372745752335,
-0.037001606076955795,
0.07612768560647964,
-0.06776773184537888,
-0.04270116612315178,
-0.1536036878824234,
0.0644519031047821,
-0.15866242349147797,
-0.05045023187994957,
-0.18172797560691833,
-0.03690320998430252,
0.07158847898244858,
-0.07992308586835861,
-0.045138292014598846,
-0.0035613696090877056,
-0.15054577589035034,
0.03674573451280594,
0.035782042890787125,
0.07148130238056183,
-0.06792403012514114,
-0.025344206020236015,
0.10251180827617645,
-0.0156801026314497,
0.04464089870452881,
0.08419246226549149,
-0.06949646025896072,
0.1070052832365036,
-0.16678263247013092,
-0.12073048949241638,
0.09304989129304886,
-0.01482305396348238,
0.06816183775663376,
0.0398549810051918,
0.0048990617506206036,
0.15186312794685364,
-0.028368789702653885,
0.04400613158941269,
-0.09614240378141403,
-0.13992895185947418,
-0.06502620875835419,
-0.027701361104846,
-0.11997546255588531,
-0.007219942752271891,
-0.11744488030672073,
0.21282869577407837,
0.003258321201428771,
0.18445704877376556,
0.020008884370326996,
0.038540951907634735,
0.02167636901140213,
-0.01884893886744976,
-0.006638044957071543,
-0.13908913731575012,
0.010326703079044819,
-0.08502413332462311,
-0.08857052028179169,
-0.0011280170874670148,
0.4042016565799713,
-0.0378500297665596,
-0.08463402092456818,
0.0812910869717598,
0.05607563629746437,
0.012813796289265156,
0.013001427985727787,
0.3775729835033417,
0.0928640216588974,
0.002864454174414277,
-0.13329575955867767,
0.09606242924928665,
-0.029512794688344002,
-0.15788118541240692,
0.05429530888795853,
0.15250936150550842,
-0.03619644045829773,
0.10762010514736176,
0.0593794509768486,
-0.009008173830807209,
-0.08153985440731049,
-0.15603986382484436,
0.05549846217036247,
0.02800697460770607,
0.012056254781782627,
0.06989599764347076,
0.1717097908258438,
-0.08264070004224777,
0.07306904345750809,
-0.015463351272046566,
-0.0029969571623951197,
-0.16188719868659973,
-0.13203975558280945,
-0.04261906445026398,
-0.1595379263162613,
0.054699137806892395,
-0.003594042966142297,
0.04855073243379593,
0.2312605082988739,
0.054622724652290344,
-0.0395946130156517,
0.0052439430728554726,
-0.08698530495166779,
-0.04385436326265335,
-0.03613222390413284,
-0.021224506199359894,
0.007238042075186968,
-0.01997082680463791,
-0.047083232551813126,
-0.1050414890050888,
-0.11533736437559128,
-0.05719510465860367,
0.052223995327949524,
0.013081417419016361,
0.01664070598781109,
-0.11732855439186096,
-0.04936828091740608,
-0.04963618516921997,
0.1027778685092926,
-0.0783032700419426,
0.10966919362545013,
-0.011639281176030636,
0.022141503170132637,
0.06210259348154068,
0.12768134474754333,
-0.06047586351633072,
-0.12646089494228363,
-0.004736498463898897,
0.16597305238246918,
0.1058296412229538,
0.13085420429706573,
-0.013894652016460896,
0.018051976338028908,
-0.04397199675440788,
0.24468928575515747,
0.27022770047187805,
0.034283097833395004,
0.024010369554162025,
0.007817702367901802,
0.022664496675133705,
0.10251918435096741,
0.13713014125823975,
0.03269977495074272,
0.23340855538845062,
-0.0711837187409401,
-0.009245558641850948,
-0.013298239558935165,
-0.012478376738727093,
-0.08897238224744797,
0.08758179843425751,
-0.01955956406891346,
-0.09181758761405945,
-0.0388382226228714,
0.1479298323392868,
-0.1340624839067459,
0.12190192192792892,
0.1479814350605011,
-0.07277914881706238,
0.03989909589290619,
-0.014535420574247837,
0.19124969840049744,
-0.02983047440648079,
0.06018022075295448,
-0.06520628929138184,
-0.08211013674736023,
0.06200389191508293,
0.029475033283233643,
-0.3275774419307709,
-0.048727355897426605,
0.0839366540312767,
0.08976014703512192,
0.05975737050175667,
-0.008390860632061958,
0.0410444401204586,
0.07853421568870544,
0.10083242505788803,
-0.07324299216270447,
0.12178882956504822,
0.03168053925037384,
-0.09428295493125916,
-0.05375528335571289,
-0.16014766693115234,
-0.021812807768583298,
-0.045484986156225204,
0.0024123983457684517,
-0.19933244585990906,
0.07427941262722015,
-0.010469919070601463,
-0.060787566006183624,
-0.04566085338592529,
-0.04054936021566391,
-0.07451232522726059,
0.06918832659721375,
-0.02475825697183609,
0.0046231928281486034,
-0.017298905178904533,
-0.015559262596070766,
0.018790673464536667,
0.09355712682008743,
-0.1538895070552826,
-0.0919928103685379,
0.039741162210702896,
-0.04647368565201759,
0.14885038137435913,
-0.014861306175589561,
-0.0795993059873581,
-0.03730698302388191,
-0.03896786645054817,
0.03764069452881813,
-0.10745073854923248,
0.046262409538030624,
0.12517572939395905,
0.053158119320869446,
-0.022111566737294197,
-0.17712417244911194,
0.032376598566770554,
0.03334508091211319,
-0.059317879378795624,
-0.12066152691841125
] |
null | null | null | Matalab Capsule to help enhance eyesight! Read Price & Reviews!
Matalab is capsule using natural ingredients which have shown to be beneficial in improve the overall health of the eye. Read More……..
Matalab Pills, Presyo, capsule,Tablets, Price, kapsula, reviews, Ingredients, Benefits, komposisyon!
Matalab Buy now!! Click the Link Below for more information and get 50% discount now !! hurry up !!
Read More: https://www.nutritioncrawler.com/MatalPhili
➢Product Name — Matalab
➢ used for: Eyes Health
➢Main Benefits — Improve Eye Sight
➢ Composition — Natural Organic Compound
➢ Side-Effects—NA
➢Final Rating: — 4.7
➢ Availability — Online
➢Offers & Discounts; SAVE TODAY! SHOP NOW TO BUY SPECIAL OFFER!!!
What Is Matalab?
For the individuals who are not comfortable, Matalab is a dream further developing dietary enhancement that has been drifting around the web for its case to assist with upgrading an individual's visual perception by handling the 3 driving reasons for debilitated vision. The essential explanation is openness to specific poisons that can genuinely harm the eyes.
Matalab Buy now!! Click the Link Below for more information and get 50% discount now !! hurry up !!
Read More: https://www.nutritioncrawler.com/MatalPhili
Matalab Matalab Pills Matalab capsule Matalab Tablets Matalab Price Matalab reviews Matalab Ingredients Matalab Benefits Matalab kapsula Matalab Mga tableta Matalab Presyo Matalab mga pagsusuri Matalab Mga sangkap Matalab Benepisyo Matalab Mga side effect Matalab presyo ng kapsula Matalab mga pagsusuri sa kapsula Matalab komposisyon Matalab reklamo Matalab Saan bibili Matalab Paano gamitin Matalab gastos Matalab gumagana Matalab forum Matalab orihinal Matalab parmasya
https://www.nutritioncrawler.com/MatalPhili
https://sites.google.com/view/matalab/home
https://healthtoned.blogspot.com/2023/11/matalab-capsule-to-help-enhance.html
https://www.q8101.com/bb/22274/matalab-capsule-to-help-enhance-eyesight-read-price-reviews
https://www.dibiz.com/matalabphilippines
https://www.weddingwire.com/website/matalab-and-philippines
https://medium.com/@healthytalk24x7/matalab-d4c80a7fef07
https://medium.com/@healthytalk24x7/matalab-capsule-to-help-enhance-eyesight-read-price-reviews-12ec236ff898
https://infogram.com/matalab-1hxj48pk997nq2v?live
https://softisenilspain.hashnode.dev/matalab-capsule-to-help-enhance-eyesight-read-price-reviews
https://soundcloud.com/matalab-philippines/matalab-capsule-to-help-enhance-eyesight-read-price-reviews?si=a000733e94c046ce85de98c62277098d&utm_source=clipboard&utm_medium=text&utm_campaign=social_sharing
https://www.deviantart.com/matalabcapsule/art/Matalab-capsule-993761904
| {} | null | Matalabcapsule/Matalabcapsule | [
"region:us"
] | 2023-11-11T09:06:43+00:00 | [] | [] | TAGS
#region-us
| Matalab Capsule to help enhance eyesight! Read Price & Reviews!
Matalab is capsule using natural ingredients which have shown to be beneficial in improve the overall health of the eye. Read More……..
Matalab Pills, Presyo, capsule,Tablets, Price, kapsula, reviews, Ingredients, Benefits, komposisyon!
Matalab Buy now!! Click the Link Below for more information and get 50% discount now !! hurry up !!
Read More: URL
Product Name — Matalab
used for: Eyes Health
Main Benefits — Improve Eye Sight
Composition — Natural Organic Compound
Side-Effects—NA
Final Rating: — 4.7
Availability — Online
Offers & Discounts; SAVE TODAY! SHOP NOW TO BUY SPECIAL OFFER!!!
What Is Matalab?
For the individuals who are not comfortable, Matalab is a dream further developing dietary enhancement that has been drifting around the web for its case to assist with upgrading an individual's visual perception by handling the 3 driving reasons for debilitated vision. The essential explanation is openness to specific poisons that can genuinely harm the eyes.
Matalab Buy now!! Click the Link Below for more information and get 50% discount now !! hurry up !!
Read More: URL
Matalab Matalab Pills Matalab capsule Matalab Tablets Matalab Price Matalab reviews Matalab Ingredients Matalab Benefits Matalab kapsula Matalab Mga tableta Matalab Presyo Matalab mga pagsusuri Matalab Mga sangkap Matalab Benepisyo Matalab Mga side effect Matalab presyo ng kapsula Matalab mga pagsusuri sa kapsula Matalab komposisyon Matalab reklamo Matalab Saan bibili Matalab Paano gamitin Matalab gastos Matalab gumagana Matalab forum Matalab orihinal Matalab parmasya
URL
URL
URL
URL
URL
URL
URL
URL
URL
URL
URL
URL
| [] | [
"TAGS\n#region-us \n"
] | [
6
] | [
"passage: TAGS\n#region-us \n"
] | [
0.024608636274933815,
-0.026205500587821007,
-0.009666500613093376,
-0.10395516455173492,
0.08638657629489899,
0.059816278517246246,
0.01882290467619896,
0.020661840215325356,
0.23975107073783875,
-0.005599027033895254,
0.1219947561621666,
0.0015615287702530622,
-0.037353623658418655,
0.03733762726187706,
-0.0035912662278860807,
-0.17583473026752472,
0.03876631706953049,
-0.018274923786520958,
0.01843859627842903,
0.026470553129911423,
-0.07776834815740585,
-0.07564429938793182,
0.015296397730708122,
-0.10247814655303955,
-0.083692267537117,
0.11002834886312485,
0.031466204673051834,
-0.019670886918902397,
0.10779199749231339,
-0.04243955761194229,
0.18699054419994354,
-0.011512263678014278,
-0.11213519424200058,
-0.2536850869655609,
0.021806683391332626,
-0.01765260472893715,
-0.08747660368680954,
0.01506110467016697,
0.0665089413523674,
-0.09014441072940826,
-0.0588928684592247,
0.0795099288225174,
-0.01132340170443058,
0.04246443510055542,
-0.27593839168548584,
-0.12684126198291779,
-0.05297930911183357,
-0.1421966552734375,
0.08651168644428253,
0.04035491496324539,
0.008764253929257393,
0.15506891906261444,
-0.20897391438484192,
0.004104613792151213,
0.08255259692668915,
-0.2538507878780365,
0.05591634660959244,
0.17671173810958862,
0.03623908758163452,
0.18037272989749908,
0.0060391901060938835,
0.11029672622680664,
0.0716743916273117,
-0.024263937026262283,
-0.17590197920799255,
-0.08127854019403458,
-0.04696211963891983,
0.16642488539218903,
-0.06727185100317001,
-0.14248386025428772,
0.34701237082481384,
0.00015008423360995948,
0.009657775051891804,
0.16921205818653107,
-0.059524230659008026,
-0.09972117841243744,
0.07259953022003174,
0.016484731808304787,
0.018492350354790688,
0.1471305936574936,
0.16307872533798218,
-0.0458691343665123,
-0.13837823271751404,
-0.018630273640155792,
-0.22798998653888702,
0.17510560154914856,
-0.03248048573732376,
0.13137903809547424,
-0.27447956800460815,
0.01684025302529335,
-0.2570667266845703,
0.0032130838371813297,
0.04178816080093384,
-0.06004921346902847,
-0.0226522795855999,
-0.013265985064208508,
-0.08018817007541656,
0.004899587947875261,
0.06192673370242119,
0.1266920566558838,
-0.06128726154565811,
0.06128238886594772,
-0.09319206327199936,
0.141696035861969,
0.07166698575019836,
0.07868369668722153,
0.13037432730197906,
0.041205424815416336,
-0.07187089323997498,
-0.21872246265411377,
-0.0026476888451725245,
-0.06275863200426102,
-0.09502086788415909,
-0.0020165652967989445,
-0.11606067419052124,
0.17244569957256317,
-0.030802514404058456,
-0.09825427830219269,
-0.11208184063434601,
0.09148659557104111,
-0.032992321997880936,
-0.03437839448451996,
-0.03552987426519394,
-0.020977836102247238,
0.019381176680326462,
0.04704452306032181,
-0.1548958420753479,
-0.005131472367793322,
0.07039852440357208,
0.11502562463283539,
-0.1346137970685959,
-0.003783059772104025,
-0.07908964157104492,
0.03039063885807991,
0.07654735445976257,
-0.16510222852230072,
0.03158547356724739,
-0.1124754324555397,
-0.07531405985355377,
0.002912673633545637,
-0.015710093080997467,
-0.016202643513679504,
0.166526660323143,
-0.0020451415330171585,
0.0714716836810112,
-0.026345307007431984,
-0.05890209600329399,
-0.11243434250354767,
-0.08489254862070084,
0.05390460044145584,
0.03670717030763626,
0.03266148269176483,
-0.2193479984998703,
0.014805203303694725,
-0.12762966752052307,
0.1360815018415451,
-0.10566820204257965,
-0.04705966264009476,
-0.022842247039079666,
0.20562705397605896,
0.037286072969436646,
0.08762791007757187,
-0.22171171009540558,
0.039756543934345245,
-0.05404696613550186,
0.18480908870697021,
-0.1502426266670227,
-0.0799463614821434,
0.20813211798667908,
-0.07964949309825897,
-0.10115210711956024,
0.021235812455415726,
0.020391687750816345,
0.026287272572517395,
0.0766737088561058,
0.4564172327518463,
-0.09766800701618195,
-0.09146861732006073,
0.10178250074386597,
0.17055274546146393,
-0.12427149713039398,
-0.1827561855316162,
0.06446871906518936,
-0.16666454076766968,
-0.1973118633031845,
0.0018917324487119913,
0.09222044050693512,
0.038269978016614914,
-0.07875611633062363,
-0.020746968686580658,
0.06325206160545349,
-0.0007678253459744155,
0.09095914661884308,
0.03755716234445572,
0.09034032374620438,
-0.08716782182455063,
0.11115926504135132,
-0.05017651244997978,
0.004037132486701012,
0.1343354731798172,
0.027325427159667015,
-0.03223329409956932,
0.08694463223218918,
-0.0485352948307991,
0.05295134335756302,
-0.1662379503250122,
-0.15068690478801727,
0.03398871049284935,
0.06283251196146011,
0.03186952322721481,
0.1280253529548645,
0.08141885697841644,
-0.10732853412628174,
0.022690722718834877,
-0.004228927195072174,
0.058398615568876266,
0.03891623765230179,
0.006107209715992212,
0.008764320984482765,
0.0961301177740097,
-0.10607069730758667,
-0.13589619100093842,
-0.07336436957120895,
-0.014715781435370445,
0.14371353387832642,
-0.0302802175283432,
0.07690227776765823,
-0.004240254405885935,
0.00013200697139836848,
0.06930823624134064,
0.08137880265712738,
0.016412746161222458,
0.08971183747053146,
-0.05237193778157234,
-0.05160155147314072,
0.10863113403320312,
-0.13533565402030945,
0.17837053537368774,
0.14053137600421906,
-0.20532016456127167,
0.029453208670020103,
-0.06838275492191315,
0.03670361638069153,
-0.008162540383636951,
0.0975119024515152,
-0.08272241055965424,
-0.02106042578816414,
0.013134466484189034,
0.0052274600602686405,
-0.013007243163883686,
0.017682146281003952,
-0.07295988500118256,
-0.07787393033504486,
-0.10233919322490692,
0.08436838537454605,
0.11562882363796234,
-0.10282530635595322,
0.14214380085468292,
0.4384984076023102,
0.11495281755924225,
0.21582984924316406,
-0.09581480920314789,
-0.0412987545132637,
0.007486371789127588,
0.0001535322517156601,
-0.04476691037416458,
0.08031861484050751,
-0.15973517298698425,
-0.038901735097169876,
0.027348900213837624,
0.07128690183162689,
0.11475157737731934,
-0.14959022402763367,
-0.09639324247837067,
-0.00793045200407505,
0.0022841424215584993,
-0.1249532699584961,
0.023905446752905846,
-0.03974650055170059,
0.04015624523162842,
0.07232289016246796,
-0.021535737439990044,
0.13939237594604492,
-0.04166141897439957,
-0.0639561116695404,
0.07585346698760986,
-0.2017085999250412,
-0.23179671168327332,
-0.12309670448303223,
-0.14680525660514832,
0.04366797208786011,
0.05154111236333847,
0.01726446859538555,
-0.17635835707187653,
-0.015074856579303741,
0.07706750929355621,
0.07820965349674225,
-0.20886357128620148,
-0.022814949974417686,
-0.004290030337870121,
0.0895976573228836,
-0.10227091610431671,
-0.0017130117630586028,
-0.04419664293527603,
-0.10150232166051865,
0.0017003051470965147,
0.07279510796070099,
-0.137485533952713,
0.13807645440101624,
0.21589438617229462,
0.07225540280342102,
0.07359948754310608,
-0.019093448296189308,
0.09936179965734482,
-0.10856141895055771,
-0.16549113392829895,
0.08348225057125092,
-0.06234746053814888,
0.047262318432331085,
0.17534415423870087,
0.03307317942380905,
-0.13904969394207,
-0.015682822093367577,
-0.0402069091796875,
-0.15603256225585938,
-0.238995760679245,
-0.09178274869918823,
-0.1182505264878273,
0.16442428529262543,
0.0009358620154671371,
0.06651917099952698,
0.08258313685655594,
-0.022042419761419296,
0.16447891294956207,
-0.07379321753978729,
-0.07578866183757782,
-0.006978808436542749,
0.12375060468912125,
-0.056660156697034836,
-0.03080669604241848,
-0.10566964000463486,
-0.008295975625514984,
0.1151021271944046,
0.15304014086723328,
0.12214863300323486,
0.2957419455051422,
0.08268889784812927,
0.026645636186003685,
0.08958091586828232,
0.17622539401054382,
0.09495089203119278,
0.07838419824838638,
-0.045413073152303696,
-0.014814783819019794,
0.014317171648144722,
-0.04022889584302902,
0.010141594335436821,
0.14683100581169128,
-0.2679629921913147,
-0.006678564939647913,
-0.2710230350494385,
0.0965198427438736,
-0.10913380235433578,
0.11837165057659149,
-0.01015760749578476,
0.10194015502929688,
0.11082887649536133,
0.03233652561903,
-0.03858073800802231,
0.16613617539405823,
0.08450309932231903,
-0.11277695000171661,
0.001758623169735074,
0.03737903758883476,
0.09715615212917328,
-0.02818971499800682,
0.12721189856529236,
-0.11048974841833115,
-0.1464834064245224,
0.013753619976341724,
0.07152791321277618,
-0.15373679995536804,
0.3138748109340668,
0.012069208547472954,
-0.13481520116329193,
-0.01481647603213787,
-0.09957809001207352,
-0.006440147757530212,
0.1254177987575531,
0.09333524852991104,
0.07935678958892822,
-0.2185502052307129,
-0.13339371979236603,
0.05872276425361633,
-0.00575496768578887,
0.22408108413219452,
-0.034034017473459244,
-0.11356475204229355,
-0.027013886719942093,
0.04241163283586502,
-0.06043251231312752,
0.08524788916110992,
0.023536119610071182,
-0.08113526552915573,
-0.032957352697849274,
0.05323701351881027,
0.012368366122245789,
0.00524376705288887,
0.09360801428556442,
0.020107939839363098,
-0.0009265501867048442,
0.01785753294825554,
0.047885000705718994,
-0.0675911232829094,
-0.1984109878540039,
0.09357594698667526,
-0.05215044692158699,
0.0015536568826064467,
-0.08013670891523361,
-0.15122665464878082,
-0.08837161958217621,
-0.16009655594825745,
0.12540200352668762,
-0.034406669437885284,
0.12700119614601135,
-0.06619787961244583,
0.17341409623622894,
-0.07871770113706589,
0.04481020197272301,
-0.047349292784929276,
0.050332702696323395,
-0.007268077693879604,
-0.07756082713603973,
0.16585899889469147,
-0.15564003586769104,
0.01809087023139,
0.19572502374649048,
-0.018915493041276932,
0.07177707552909851,
0.021322092041373253,
-0.0636206790804863,
0.23147478699684143,
0.3014698624610901,
0.008138049393892288,
0.1665448248386383,
0.3018903136253357,
-0.07466315478086472,
-0.2642788887023926,
-0.05505012720823288,
-0.2841376066207886,
-0.05371501296758652,
0.10716094076633453,
-0.22523896396160126,
0.06986407935619354,
0.14383509755134583,
-0.06471995264291763,
0.30228954553604126,
-0.21825523674488068,
0.012589273042976856,
0.15434536337852478,
-0.08868814259767532,
0.5515313148498535,
-0.1133413165807724,
-0.17677772045135498,
-0.008122089318931103,
-0.08741296827793121,
0.10602109134197235,
-0.0340677872300148,
0.06877441704273224,
0.013465235009789467,
0.04797380417585373,
0.048932258039712906,
-0.03111894056200981,
0.22701001167297363,
0.008710170164704323,
0.09015397727489471,
-0.07378865778446198,
-0.18624304234981537,
0.11639340221881866,
-0.04359482601284981,
-0.08891059458255768,
0.0849778801202774,
-0.05942516401410103,
-0.11078983545303345,
0.04663389176130295,
-0.07950539886951447,
-0.024862350896000862,
0.08423490077257156,
-0.04678233340382576,
-0.042606171220541,
-0.008054176345467567,
-0.1618063747882843,
-0.0002289071271661669,
0.31360217928886414,
-0.07096036523580551,
0.16695955395698547,
0.03677211329340935,
0.00038613268407061696,
-0.11027684062719345,
0.030288029462099075,
-0.05203165486454964,
-0.021576624363660812,
0.09578979015350342,
-0.11096979677677155,
0.03204701095819473,
0.14160704612731934,
-0.04864364117383957,
0.05846960097551346,
0.09256096184253693,
-0.0849417969584465,
0.007583672646433115,
0.17753590643405914,
-0.17537221312522888,
-0.1273445188999176,
-0.006135711446404457,
-0.09862716495990753,
0.14055661857128143,
0.04394126310944557,
0.05191568285226822,
0.16669964790344238,
0.03967129811644554,
-0.029474308714270592,
-0.02817419543862343,
-0.1153380498290062,
-0.0201893113553524,
0.040153320878744125,
0.00045633706031367183,
-0.08791285753250122,
0.2262638509273529,
0.06409153342247009,
-0.1328488290309906,
-0.051157206296920776,
0.2161225974559784,
-0.06805316358804703,
-0.04911920800805092,
-0.223562553524971,
0.10752306133508682,
-0.07112517952919006,
-0.0965060144662857,
0.05453834682703018,
-0.02270081453025341,
0.005106312222778797,
0.181985542178154,
0.03941008821129799,
0.11070270836353302,
0.03738937899470329,
-0.02448922023177147,
0.15798696875572205,
-0.142850860953331,
-0.14191335439682007,
-0.025354057550430298,
-0.08757315576076508,
-0.13844476640224457,
-0.026804137974977493,
0.1617041826248169,
-0.09177309274673462,
-0.14772607386112213,
-0.2621181011199951,
0.10968475043773651,
-0.16432365775108337,
-0.10192688554525375,
-0.03469514101743698,
-0.08968492597341537,
0.0696166530251503,
0.030301768332719803,
-0.03093348816037178,
-0.06706760823726654,
-0.18593791127204895,
0.0816768929362297,
0.06349513679742813,
0.045533183962106705,
-0.017847947776317596,
0.0067379772663116455,
0.1720137596130371,
0.025955144315958023,
0.10040043294429779,
0.16762186586856842,
0.011397695168852806,
0.2246655523777008,
-0.1671202927827835,
-0.11496317386627197,
0.1336962729692459,
-0.026543032377958298,
0.06762003898620605,
0.16792191565036774,
-0.0772583931684494,
0.015526676550507545,
-0.028136352077126503,
0.07066910713911057,
-0.11003983020782471,
-0.105624258518219,
0.007937257178127766,
0.02567129209637642,
-0.2755882740020752,
-0.005599735304713249,
-0.19717298448085785,
0.14788752794265747,
0.02579621411859989,
0.03297143429517746,
0.10257530212402344,
0.10404334217309952,
0.08312062919139862,
-0.0017710148822516203,
0.03226327523589134,
-0.1176818460226059,
0.02753005363047123,
-0.059239376336336136,
-0.020663779228925705,
0.017624232918024063,
0.36952024698257446,
-0.03603357449173927,
-0.046802736818790436,
0.003710439894348383,
0.1307835876941681,
-0.02139742486178875,
0.017395347356796265,
0.13209912180900574,
0.12607666850090027,
-0.08595693111419678,
-0.1504845917224884,
0.04888554662466049,
-0.04565655067563057,
-0.02836887165904045,
0.1464131623506546,
0.05905961990356445,
0.1050296202301979,
0.0908031314611435,
-0.014463032595813274,
-0.00318976235575974,
0.012856799177825451,
-0.15486004948616028,
0.06223496049642563,
-0.010558074340224266,
0.012565906159579754,
0.017934376373887062,
0.15238402783870697,
-0.005540105979889631,
0.07739730179309845,
-0.09889880567789078,
0.004208535887300968,
-0.13498884439468384,
-0.07913459837436676,
0.03617347031831741,
-0.13393273949623108,
0.04141177982091904,
-0.01871878281235695,
0.029611799865961075,
0.30386561155319214,
0.02558239921927452,
-0.020639164373278618,
0.12512871623039246,
-0.1214587539434433,
-0.12050267308950424,
-0.001594188273884356,
-0.029960084706544876,
0.0791488066315651,
-0.02633434161543846,
-0.0997740775346756,
-0.1001306027173996,
-0.15166029334068298,
-0.09759195148944855,
0.05182836204767227,
-0.04993441700935364,
-0.059362251311540604,
-0.17634081840515137,
-0.05707859992980957,
-0.05147340148687363,
0.14025864005088806,
-0.12263951450586319,
0.15159130096435547,
-0.014490418136119843,
0.004084470681846142,
0.04405883327126503,
0.1950942426919937,
-0.03644494712352753,
0.08714226633310318,
0.0154351145029068,
0.1522706001996994,
-0.05119588226079941,
0.14720745384693146,
-0.10931728035211563,
-0.04014137014746666,
-0.06710435450077057,
0.21513493359088898,
0.25630924105644226,
-0.06136954948306084,
-0.008937356993556023,
-0.012760217301547527,
0.058654606342315674,
0.1073930487036705,
0.16049085557460785,
0.002326392102986574,
0.2802925705909729,
-0.03133585304021835,
0.04815128445625305,
0.02901598811149597,
0.013607407920062542,
-0.06336209923028946,
0.03397751972079277,
0.07539387792348862,
-0.035039983689785004,
-0.1412304788827896,
0.15837742388248444,
-0.21980468928813934,
0.18157227337360382,
0.11640069633722305,
-0.19996967911720276,
-0.013728445395827293,
-0.04882071167230606,
0.1689416468143463,
-0.0856364443898201,
0.1637246012687683,
-0.0903693437576294,
-0.2108195722103119,
-0.2056000679731369,
0.03867346793413162,
-0.34623071551322937,
-0.254462867975235,
0.10422009229660034,
0.1488201916217804,
0.04015883058309555,
-0.018507536500692368,
-0.019967829808592796,
-0.018367022275924683,
0.04877542704343796,
-0.0067357709631323814,
0.06014643982052803,
0.031397558748722076,
-0.02988368645310402,
-0.24127542972564697,
-0.029804671183228493,
0.023964406922459602,
-0.07093082368373871,
0.07464958727359772,
-0.06874357163906097,
-0.022495782002806664,
0.08059766888618469,
-0.03066304884850979,
0.03298592567443848,
-0.035373736172914505,
-0.16326889395713806,
0.027529051527380943,
0.03900543600320816,
0.036012712866067886,
0.00634160777553916,
0.0008072225609794259,
-0.03455270454287529,
0.0644603744149208,
-0.16716794669628143,
-0.16015739738941193,
0.14140215516090393,
-0.06745140254497528,
0.2779497504234314,
-0.05812826007604599,
-0.0809100940823555,
0.04766704887151718,
-0.03426874056458473,
0.1807648241519928,
-0.07756473124027252,
0.047254521399736404,
0.12766779959201813,
0.011127962730824947,
0.03121316432952881,
-0.3092964291572571,
0.11082969605922699,
-0.000795336440205574,
-0.006093299947679043,
-0.07581598311662674
] |
null | null | ml-agents |
# **ppo** Agent playing **SnowballTarget**
This is a trained model of a **ppo** agent playing **SnowballTarget**
using the [Unity ML-Agents Library](https://github.com/Unity-Technologies/ml-agents).
## Usage (with ML-Agents)
The Documentation: https://unity-technologies.github.io/ml-agents/ML-Agents-Toolkit-Documentation/
We wrote a complete tutorial to learn to train your first agent using ML-Agents and publish it to the Hub:
- A *short tutorial* where you teach Huggy the Dog 🐶 to fetch the stick and then play with him directly in your
browser: https://huggingface.co/learn/deep-rl-course/unitbonus1/introduction
- A *longer tutorial* to understand how works ML-Agents:
https://huggingface.co/learn/deep-rl-course/unit5/introduction
### Resume the training
```bash
mlagents-learn <your_configuration_file_path.yaml> --run-id=<run_id> --resume
```
### Watch your Agent play
You can watch your agent **playing directly in your browser**
1. If the environment is part of ML-Agents official environments, go to https://huggingface.co/unity
2. Step 1: Find your model_id: nondevs/ppo-SnowballTarget
3. Step 2: Select your *.nn /*.onnx file
4. Click on Watch the agent play 👀
| {"library_name": "ml-agents", "tags": ["SnowballTarget", "deep-reinforcement-learning", "reinforcement-learning", "ML-Agents-SnowballTarget"]} | reinforcement-learning | nondevs/ppo-SnowballTarget | [
"ml-agents",
"tensorboard",
"onnx",
"SnowballTarget",
"deep-reinforcement-learning",
"reinforcement-learning",
"ML-Agents-SnowballTarget",
"region:us"
] | 2023-11-11T09:27:15+00:00 | [] | [] | TAGS
#ml-agents #tensorboard #onnx #SnowballTarget #deep-reinforcement-learning #reinforcement-learning #ML-Agents-SnowballTarget #region-us
|
# ppo Agent playing SnowballTarget
This is a trained model of a ppo agent playing SnowballTarget
using the Unity ML-Agents Library.
## Usage (with ML-Agents)
The Documentation: URL
We wrote a complete tutorial to learn to train your first agent using ML-Agents and publish it to the Hub:
- A *short tutorial* where you teach Huggy the Dog to fetch the stick and then play with him directly in your
browser: URL
- A *longer tutorial* to understand how works ML-Agents:
URL
### Resume the training
### Watch your Agent play
You can watch your agent playing directly in your browser
1. If the environment is part of ML-Agents official environments, go to URL
2. Step 1: Find your model_id: nondevs/ppo-SnowballTarget
3. Step 2: Select your *.nn /*.onnx file
4. Click on Watch the agent play
| [
"# ppo Agent playing SnowballTarget\n This is a trained model of a ppo agent playing SnowballTarget\n using the Unity ML-Agents Library.\n\n ## Usage (with ML-Agents)\n The Documentation: URL\n\n We wrote a complete tutorial to learn to train your first agent using ML-Agents and publish it to the Hub:\n - A *short tutorial* where you teach Huggy the Dog to fetch the stick and then play with him directly in your\n browser: URL\n - A *longer tutorial* to understand how works ML-Agents:\n URL\n\n ### Resume the training\n \n\n ### Watch your Agent play\n You can watch your agent playing directly in your browser\n\n 1. If the environment is part of ML-Agents official environments, go to URL\n 2. Step 1: Find your model_id: nondevs/ppo-SnowballTarget\n 3. Step 2: Select your *.nn /*.onnx file\n 4. Click on Watch the agent play"
] | [
"TAGS\n#ml-agents #tensorboard #onnx #SnowballTarget #deep-reinforcement-learning #reinforcement-learning #ML-Agents-SnowballTarget #region-us \n",
"# ppo Agent playing SnowballTarget\n This is a trained model of a ppo agent playing SnowballTarget\n using the Unity ML-Agents Library.\n\n ## Usage (with ML-Agents)\n The Documentation: URL\n\n We wrote a complete tutorial to learn to train your first agent using ML-Agents and publish it to the Hub:\n - A *short tutorial* where you teach Huggy the Dog to fetch the stick and then play with him directly in your\n browser: URL\n - A *longer tutorial* to understand how works ML-Agents:\n URL\n\n ### Resume the training\n \n\n ### Watch your Agent play\n You can watch your agent playing directly in your browser\n\n 1. If the environment is part of ML-Agents official environments, go to URL\n 2. Step 1: Find your model_id: nondevs/ppo-SnowballTarget\n 3. Step 2: Select your *.nn /*.onnx file\n 4. Click on Watch the agent play"
] | [
50,
206
] | [
"passage: TAGS\n#ml-agents #tensorboard #onnx #SnowballTarget #deep-reinforcement-learning #reinforcement-learning #ML-Agents-SnowballTarget #region-us \n# ppo Agent playing SnowballTarget\n This is a trained model of a ppo agent playing SnowballTarget\n using the Unity ML-Agents Library.\n\n ## Usage (with ML-Agents)\n The Documentation: URL\n\n We wrote a complete tutorial to learn to train your first agent using ML-Agents and publish it to the Hub:\n - A *short tutorial* where you teach Huggy the Dog to fetch the stick and then play with him directly in your\n browser: URL\n - A *longer tutorial* to understand how works ML-Agents:\n URL\n\n ### Resume the training\n \n\n ### Watch your Agent play\n You can watch your agent playing directly in your browser\n\n 1. If the environment is part of ML-Agents official environments, go to URL\n 2. Step 1: Find your model_id: nondevs/ppo-SnowballTarget\n 3. Step 2: Select your *.nn /*.onnx file\n 4. Click on Watch the agent play"
] | [
-0.051761507987976074,
0.0554082877933979,
-0.003925113473087549,
0.11161340028047562,
0.17730413377285004,
-0.0054625547491014,
0.12934748828411102,
0.09461290389299393,
0.11200027912855148,
0.061008039861917496,
0.05865409970283508,
0.08636472374200821,
0.03649839758872986,
0.11310412734746933,
0.07809625566005707,
-0.20216161012649536,
-0.05193273350596428,
-0.11583568900823593,
0.004649545531719923,
0.0836014673113823,
0.057860251516103745,
-0.037357985973358154,
0.01937475986778736,
0.0358283631503582,
0.007956698536872864,
-0.025202393531799316,
-0.08431480824947357,
-0.02663028985261917,
0.05632292106747627,
-0.03604888916015625,
0.008351652882993221,
-0.03673442453145981,
0.0925891250371933,
-0.1572730392217636,
0.014890952967107296,
0.053799159824848175,
-0.0063216243870556355,
-0.021249394863843918,
0.14228691160678864,
-0.0014803794911131263,
0.09887322038412094,
-0.1180974617600441,
0.09813594818115234,
0.08811759203672409,
-0.053315550088882446,
-0.026645034551620483,
-0.039362821727991104,
0.05889356508851051,
0.21656008064746857,
0.15952596068382263,
-0.008088427595794201,
0.10353612899780273,
-0.050581030547618866,
0.05503419041633606,
0.13736040890216827,
-0.2586696147918701,
-0.07160897552967072,
0.1478683054447174,
-0.0819699615240097,
0.04994926601648331,
-0.02735455147922039,
0.03408251702785492,
-0.011187087744474411,
0.022860394790768623,
-0.028849713504314423,
0.05684232339262962,
0.24540875852108002,
0.006246480625122786,
-0.06516285985708237,
-0.07433875650167465,
0.0038832747377455235,
0.011025342158973217,
-0.037287529557943344,
-0.163932204246521,
0.021215150132775307,
0.12031007558107376,
0.02335878647863865,
0.04274030774831772,
0.07170358300209045,
0.028631893917918205,
-0.0962841808795929,
-0.1459229290485382,
-0.047031838446855545,
-0.06506871432065964,
0.10295234620571136,
0.11151456832885742,
-0.02367311529815197,
-0.014100516214966774,
0.036911848932504654,
0.07434117048978806,
0.09490223973989487,
-0.05015959218144417,
-0.05305071175098419,
-0.03649084270000458,
-0.1482621133327484,
-0.0002599916188046336,
-0.047422438859939575,
0.014138542115688324,
0.042726222425699234,
0.14922656118869781,
0.15171200037002563,
0.029882801696658134,
0.027986858040094376,
0.0342024564743042,
0.005316351540386677,
0.0727996975183487,
0.06992372870445251,
-0.012232991866767406,
-0.008912704885005951,
-0.0148249426856637,
0.05034801363945007,
-0.09929794073104858,
-0.06959550827741623,
0.054731279611587524,
-0.018745766952633858,
0.1365024447441101,
0.18047548830509186,
-0.024154609069228172,
-0.03762264549732208,
-0.026792317628860474,
0.02042602002620697,
-0.13568885624408722,
0.06875913590192795,
0.06409098207950592,
-0.02631402760744095,
-0.04804140329360962,
-0.04893079772591591,
0.04319334402680397,
-0.07545377314090729,
0.042470742017030716,
0.005675539840012789,
0.07187376916408539,
0.008359481580555439,
-0.03835047036409378,
0.04133734852075577,
-0.10695327073335648,
-0.022958889603614807,
-0.17980781197547913,
-0.116447813808918,
-0.08005670458078384,
0.043129175901412964,
-0.05722040683031082,
-0.12035368382930756,
-0.09708312898874283,
0.023620836436748505,
-0.06529907137155533,
0.02642715536057949,
-0.024624871090054512,
-0.060463499277830124,
-0.014934349805116653,
-0.10168007016181946,
0.049987636506557465,
0.18187154829502106,
0.0038410855922847986,
-0.05960073694586754,
0.018296053633093834,
-0.151138037443161,
0.17696243524551392,
-0.17542919516563416,
0.12836140394210815,
-0.08252261579036713,
0.05259426310658455,
0.12309353053569794,
-0.02699596993625164,
0.04672790318727493,
0.19003528356552124,
-0.10589464753866196,
-0.06698118895292282,
0.0585043840110302,
-0.11981504410505295,
-0.09681107848882675,
0.05841923505067825,
0.029893580824136734,
0.047391198575496674,
0.06463190913200378,
0.19151698052883148,
0.0895116925239563,
-0.24664545059204102,
0.027156656607985497,
0.0258535947650671,
-0.09977804124355316,
0.005917937029153109,
0.12859107553958893,
-0.10673176497220993,
-0.02895495854318142,
-0.017291299998760223,
-0.1435472071170807,
0.0754016861319542,
-0.02184802107512951,
-0.0636860802769661,
0.013350552879273891,
-0.08137013763189316,
0.012973099946975708,
-0.0006951417308300734,
0.04962540790438652,
-0.049144893884658813,
-0.07763225585222244,
-0.0479743629693985,
0.023747464641928673,
-0.006766412872821093,
0.07507741451263428,
-0.017443114891648293,
0.11552286893129349,
-0.02473231963813305,
-0.00166024430654943,
-0.1321636438369751,
-0.1718331277370453,
-0.01079031452536583,
0.02006998099386692,
0.07637514919042587,
-0.08289895951747894,
0.0847528800368309,
0.08416109532117844,
0.013863001950085163,
-0.05032427981495857,
-0.04795543849468231,
0.02661898545920849,
-0.11229691654443741,
-0.11964168399572372,
-0.0535745695233345,
-0.05866580829024315,
0.10904715210199356,
-0.0843423530459404,
0.0630289688706398,
-0.0738716572523117,
0.11487429589033127,
-0.016484171152114868,
-0.07084959000349045,
0.0357518345117569,
-0.0008871350437402725,
0.03429296240210533,
-0.09767325967550278,
0.11224966496229172,
0.054356176406145096,
-0.13699670135974884,
0.02862253598868847,
0.048885948956012726,
-0.0855911523103714,
0.12709306180477142,
0.04547685757279396,
-0.016976768150925636,
-0.028969403356313705,
-0.054983362555503845,
-0.009502647444605827,
-0.06563633680343628,
0.014720472507178783,
0.2260996550321579,
0.12731118500232697,
0.08226227760314941,
-0.017950639128684998,
-0.048130009323358536,
-0.027548599988222122,
-0.051350489258766174,
-0.05700364336371422,
0.13164103031158447,
0.03715373948216438,
0.027650032192468643,
0.03777606412768364,
-0.0048415781930089,
0.07676619291305542,
0.11319995671510696,
-0.006033869925886393,
-0.11564699560403824,
0.016655629500746727,
0.03525472804903984,
0.07221951335668564,
-0.0038886836264282465,
0.029683060944080353,
-0.024320287629961967,
-0.0041270786896348,
-0.06360767781734467,
-0.004449100233614445,
-0.10019199550151825,
-0.04525330290198326,
0.06107555329799652,
0.0006003462476655841,
0.0027294049505144358,
-0.0784882977604866,
-0.04869910329580307,
0.03129523620009422,
0.06356143951416016,
0.022510964423418045,
0.05171546712517738,
-0.020708587020635605,
-0.12463933229446411,
0.048897601664066315,
-0.08821924030780792,
-0.2190667986869812,
-0.08657217025756836,
-0.03366561233997345,
-0.0857323706150055,
0.010904530063271523,
0.08684320002794266,
-0.1725408434867859,
-0.01183477882295847,
-0.08679909259080887,
0.00716794328764081,
-0.034059662371873856,
-0.043171826750040054,
0.1357179433107376,
0.11321644484996796,
-0.0011719478061422706,
-0.057604093104600906,
0.010076899081468582,
0.035399146378040314,
-0.08886811882257462,
0.01317617204040289,
0.06994245201349258,
0.0989287793636322,
0.05827946215867996,
0.05283057317137718,
0.032850153744220734,
-0.029739052057266235,
0.14833493530750275,
-0.041253771632909775,
0.01522769033908844,
0.06856683641672134,
-0.0029717835132032633,
0.07377304136753082,
0.00697743846103549,
0.016869451850652695,
0.007025539875030518,
0.0017384927487000823,
0.012657598592340946,
-0.084812231361866,
-0.21167276799678802,
-0.08938931673765182,
-0.009474290534853935,
0.162757009267807,
0.16677510738372803,
0.08818308264017105,
-0.09830674529075623,
0.0219709649682045,
0.0189535953104496,
-0.12094162404537201,
0.12432131916284561,
0.14702323079109192,
-0.049631230533123016,
-0.0019116674084216356,
0.06198667362332344,
-0.03339729085564613,
0.09754076600074768,
0.06393063068389893,
-0.052418410778045654,
0.10663025081157684,
0.013891566544771194,
-0.026343904435634613,
-0.021607525646686554,
-0.04657122865319252,
-0.04933280497789383,
0.11688464134931564,
0.07536932080984116,
0.04193989932537079,
0.013003671541810036,
-0.06986656785011292,
-0.07925005257129669,
0.1311873495578766,
0.18656152486801147,
-0.09968677908182144,
-0.0646004006266594,
0.0957062765955925,
0.0644979476928711,
0.16849136352539062,
-0.0007564839324913919,
-0.08280973136425018,
-0.08604542911052704,
-0.00812505092471838,
-0.09400395303964615,
0.011098125949501991,
0.05046001449227333,
-0.038159605115652084,
-0.1447683870792389,
0.05784029886126518,
0.006143963895738125,
0.11683211475610733,
0.019835278391838074,
-0.004915163386613131,
0.026315344497561455,
-0.006645491346716881,
-0.007552627939730883,
0.05849549174308777,
-0.16319173574447632,
0.02113599330186844,
-0.006265744566917419,
0.10995732247829437,
-0.06080465763807297,
0.013170923106372356,
0.08235502243041992,
-0.05666983127593994,
0.1770930141210556,
0.04157174378633499,
-0.015987396240234375,
-0.11976217478513718,
-0.19637563824653625,
-0.03913145139813423,
-0.03229283541440964,
-0.14522527158260345,
0.06344722211360931,
0.04008195176720619,
-0.013138722628355026,
-0.1009724885225296,
0.0540379099547863,
-0.08857239037752151,
-0.1374019831418991,
-0.03411908447742462,
-0.09778157621622086,
0.06418157368898392,
-0.05241738259792328,
-0.08255361765623093,
-0.10335766524076462,
0.2111331820487976,
0.05952475592494011,
-0.1281135231256485,
-0.11922507733106613,
-0.007470997516065836,
-0.037982046604156494,
-0.027091868221759796,
0.04871852695941925,
0.013605493120849133,
0.11916619539260864,
-0.11394982784986496,
-0.0544266551733017,
-0.03135573863983154,
-0.10562095791101456,
-0.1275051087141037,
0.01584916189312935,
0.14691215753555298,
0.048077698796987534,
0.08180808275938034,
-0.015310075134038925,
0.09862995147705078,
-0.007556003984063864,
-0.061419639736413956,
0.1116822361946106,
0.1420132964849472,
0.006282135844230652,
0.036447204649448395,
0.020717553794384003,
0.0491471029818058,
-0.12338019162416458,
-0.04120120406150818,
0.18347883224487305,
0.3346281945705414,
-0.07422741502523422,
0.21939335763454437,
0.038526833057403564,
-0.04537614807486534,
-0.1580408662557602,
-0.08796966820955276,
0.033237215131521225,
-0.056200187653303146,
0.12836463749408722,
-0.19454166293144226,
0.07576729357242584,
0.012924806214869022,
-0.01809803768992424,
0.0179649218916893,
-0.11401033401489258,
-0.09101873636245728,
0.01987171545624733,
0.08009827136993408,
-0.0589958056807518,
-0.10147330164909363,
-0.06582089513540268,
0.007800379302352667,
-0.09303484857082367,
0.05107918381690979,
-0.08307778090238571,
0.06624193489551544,
0.007145016919821501,
0.007141490932554007,
0.06289120018482208,
-0.0625215396285057,
0.15522396564483643,
-0.03459497168660164,
-0.06952768564224243,
-0.04850207641720772,
0.03371753543615341,
0.015575418248772621,
-0.09039850533008575,
0.03351585566997528,
-0.01638859137892723,
0.009184618480503559,
-0.1561623364686966,
-0.06708352267742157,
0.01841781474649906,
0.04059560224413872,
-0.0435495600104332,
-0.08032263070344925,
-0.024517852813005447,
0.06615191698074341,
0.10537092387676239,
0.020709063857793808,
0.11243850737810135,
-0.016378143802285194,
0.02346610277891159,
0.09000783413648605,
0.024661419913172722,
0.05784612149000168,
-0.15385319292545319,
-0.09320753812789917,
-0.0893818587064743,
0.01642407663166523,
-0.05809784308075905,
-0.012311074882745743,
0.05110570415854454,
0.06163622811436653,
-0.02477591671049595,
0.05695652961730957,
-0.06298375129699707,
-0.0026633336674422026,
0.0023919104132801294,
-0.06994253396987915,
-0.08511368930339813,
-0.08009202033281326,
-0.09843278676271439,
0.02822069823741913,
-0.08846884220838547,
0.1066962257027626,
-0.07036629319190979,
-0.0027514363173395395,
0.008724900893867016,
0.023223882541060448,
-0.000816160871181637,
0.03500029444694519,
-0.009787244722247124,
0.04716776683926582,
-0.07007365673780441,
0.1441943347454071,
0.016859469935297966,
-0.028055673465132713,
0.05853387713432312,
0.14282119274139404,
-0.06463250517845154,
-0.07660935819149017,
-0.04173414781689644,
0.07039981335401535,
0.05415472760796547,
-0.01897509954869747,
-0.016344722360372543,
-0.03697318211197853,
0.13189275562763214,
-0.1669500321149826,
0.0061715939082205296,
-0.10539412498474121,
0.002117201453074813,
0.04858579486608505,
-0.06512108445167542,
0.0557798370718956,
-0.008791985921561718,
-0.06395567953586578,
-0.12332280725240707,
0.0758296325802803,
0.03730182722210884,
0.06327617913484573,
-0.008219669573009014,
-0.04038086161017418,
-0.1424206644296646,
0.014396357350051403,
-0.04597075283527374,
0.023676635697484016,
-0.13115164637565613,
0.012999764643609524,
0.0054537332616746426,
0.03747512027621269,
0.03943813964724541,
0.06706967204809189,
-0.044234223663806915,
-0.11104633659124374,
-0.042562685906887054,
0.06919543445110321,
-0.09778057038784027,
-0.020207801833748817,
-0.026820247992873192,
-0.08307132869958878,
0.05619543418288231,
0.0790131464600563,
-0.02761087566614151,
-0.05725988373160362,
-0.10823915153741837,
0.020130382850766182,
-0.04295796900987625,
-0.04094166308641434,
0.0381474532186985,
-0.10245304554700851,
-0.0008224101038649678,
-0.059755224734544754,
-0.1167578399181366,
0.04201216995716095,
0.14757491648197174,
-0.06622445583343506,
0.02851581759750843,
0.05728631839156151,
-0.0730145201086998,
-0.04065271466970444,
-0.01913563348352909,
0.06718555092811584,
0.056911394000053406,
0.11307254433631897,
-0.08916199952363968,
0.1941038966178894,
-0.09497936069965363,
-0.02810603752732277,
0.014193600043654442,
0.07912614941596985,
0.04787164926528931,
-0.09761527180671692,
0.04623524099588394,
-0.027574656531214714,
0.06524346023797989,
0.06667846441268921,
0.056983884423971176,
0.04771409556269646,
0.04928875342011452,
0.1117391288280487,
0.009538496844470501,
0.09477027505636215,
-0.00200347020290792,
0.04733185097575188,
0.1291903406381607,
0.0016338848508894444,
0.05932984873652458,
-0.07247866690158844,
0.08413877338171005,
0.04790874198079109,
0.04386970028281212,
0.052009254693984985,
0.014561600983142853,
-0.11210232228040695,
-0.20071695744991302,
-0.02913760580122471,
0.05870968848466873,
0.04622923210263252,
-0.05710451677441597,
0.14329512417316437,
0.10937757790088654,
-0.18916134536266327,
0.014732707291841507,
-0.025895562022924423,
0.038839008659124374,
-0.0509372353553772,
-0.11582563072443008,
0.010725301690399647,
-0.12457868456840515,
0.1025308221578598,
-0.004839573986828327,
0.0028005088679492474,
-0.011121762916445732,
0.01707381010055542,
0.04175668954849243,
0.0214727520942688,
-0.06069614365696907,
0.0097819147631526,
0.047473400831222534,
-0.04605760797858238,
-0.014281838200986385,
-0.01966717839241028,
-0.08774834126234055,
-0.03919392079114914,
-0.041672948747873306,
-0.024446677416563034,
0.02471136674284935,
-0.003652147715911269,
0.05402388423681259,
0.027231935411691666,
-0.07189767807722092,
0.07609490305185318,
0.013786636292934418,
0.014547646977007389,
0.2472268044948578,
0.08955496549606323,
-0.05588264763355255,
-0.048077840358018875,
0.22752927243709564,
-0.03481053560972214,
-0.09684138000011444,
-0.08085006475448608,
0.13456812500953674,
-0.0696801170706749,
-0.05320189893245697,
-0.03234093636274338,
-0.16877439618110657,
-0.048952214419841766,
0.16222818195819855,
0.1256885528564453,
-0.027358170598745346,
0.011629274114966393,
-0.05892161652445793,
-0.005870597902685404,
0.0193035788834095,
0.10021170973777771,
0.047160081565380096,
0.06541532278060913,
-0.11238764971494675,
0.0182561706751585,
-0.06637335568666458,
-0.0857531800866127,
-0.21797581017017365,
0.08913908153772354,
0.0005560253630392253,
-0.039796024560928345,
-0.021941648796200752,
0.11246083676815033,
-0.11674126982688904,
-0.07836470752954483,
0.11812800168991089,
-0.04970596358180046,
-0.08220305293798447,
0.016581011936068535,
0.026009824126958847,
-0.004552165977656841,
0.09303716570138931,
0.07125342637300491,
0.0552690215408802,
0.0592106394469738,
-0.03025755099952221,
-0.07246318459510803,
0.04439474642276764,
0.025273114442825317,
-0.08547298610210419,
0.2340598702430725,
-0.02099544182419777,
0.023223696276545525,
0.09387092292308807,
0.0683189183473587,
-0.16264741122722626,
0.01796354539692402,
0.04991878196597099,
-0.17689639329910278,
0.049203138798475266,
0.08700332045555115,
-0.04818962514400482,
0.04030153527855873,
0.0733601525425911,
-0.039145875722169876,
0.004586813040077686,
0.22806771099567413,
0.02212093211710453,
-0.02662545256316662,
0.06933903694152832,
-0.14116759598255157,
0.09497985243797302,
0.07452106475830078,
-0.06107372045516968,
-0.011978638358414173,
-0.01877877674996853,
0.04386291280388832,
-0.038197364658117294,
-0.00801873579621315,
-0.02730439603328705,
-0.12277962267398834,
-0.021734489127993584,
0.0066218506544828415,
0.06561563909053802,
-0.2179776281118393,
-0.12639841437339783,
-0.040256068110466,
-0.08169321715831757,
-0.04353537783026695,
0.07659302651882172,
0.06115290895104408,
-0.0672883465886116,
0.009880351833999157,
-0.14805272221565247,
0.028391949832439423,
0.14389371871948242,
-0.06809433549642563,
0.002113864989951253
] |
null | null | transformers | # airoboros-2.2.1-y34b
Unofficial training of [Jon Durbin](https://huggingface.co/jondurbin)'s powerful airoboros 2.2.1 dataset on [Charles Goddard](https://huggingface.co/chargoddard)'s [Llama-fied Yi 34B model](https://huggingface.co/chargoddard/Yi-34B-Llama), aiming to bring the instruction-following capabilities of the airoboros dataset to the new Yi 34B foundational model.
As a 34B model with grouped-query attention, users will be able to conduct inference on the model with 4bit quantization on a single 24gb consumer GPU.
This Yi model is "Llama-fied", meaning the keys are renamed to match those used in Llama models, eliminating the need for remote code and ensuring compatibility with existing training and inference repositories. Architecturally this is similar to a Llama 2 34B model with an expanded vocab size of 64000.
This model is retrained thanks to compute provided by [alpin](https://huggingface.co/alpindale) with a monkeypatch to the trainer to resolve EOS token issues in the prompter. A smaller batch size and learning rate were used and training was extended by one epoch. 8-bit lora was also used instead of qlora.
## Usage:
The intended prompt format is the modified Vicuna 1.1 instruction format used by airoboros v2:
```
A chat.
USER: {prompt}
ASSISTANT:
```
## Training Details:
The model was trained using [axolotl](https://github.com/OpenAccess-AI-Collective/axolotl) as a lora adapter on 1x A100 80gb GPU for 4 epochs, before being fused to the base model with PEFT.
## License:
This model is built on the Yi 34B base model, which has its own custom license included in this repository.
Please refer to the [airoboros 2.2.1 dataset card](https://huggingface.co/datasets/jondurbin/airoboros-2.2.1) regarding the usage of gpt-4 API calls in creating the dataset. | {"language": ["en"], "license": "other", "library_name": "transformers", "tags": ["Yi", "llama", "llama 2"], "datasets": ["jondurbin/airoboros-2.2.1"], "inference": false, "pipeline_tag": "text-generation", "license_name": "yi-license", "license_link": "LICENSE"} | text-generation | LoneStriker/airoboros-2.2.1-y34b-5.0bpw-h6-exl2 | [
"transformers",
"safetensors",
"llama",
"text-generation",
"Yi",
"llama 2",
"en",
"dataset:jondurbin/airoboros-2.2.1",
"license:other",
"autotrain_compatible",
"text-generation-inference",
"region:us"
] | 2023-11-11T09:27:25+00:00 | [] | [
"en"
] | TAGS
#transformers #safetensors #llama #text-generation #Yi #llama 2 #en #dataset-jondurbin/airoboros-2.2.1 #license-other #autotrain_compatible #text-generation-inference #region-us
| # airoboros-2.2.1-y34b
Unofficial training of Jon Durbin's powerful airoboros 2.2.1 dataset on Charles Goddard's Llama-fied Yi 34B model, aiming to bring the instruction-following capabilities of the airoboros dataset to the new Yi 34B foundational model.
As a 34B model with grouped-query attention, users will be able to conduct inference on the model with 4bit quantization on a single 24gb consumer GPU.
This Yi model is "Llama-fied", meaning the keys are renamed to match those used in Llama models, eliminating the need for remote code and ensuring compatibility with existing training and inference repositories. Architecturally this is similar to a Llama 2 34B model with an expanded vocab size of 64000.
This model is retrained thanks to compute provided by alpin with a monkeypatch to the trainer to resolve EOS token issues in the prompter. A smaller batch size and learning rate were used and training was extended by one epoch. 8-bit lora was also used instead of qlora.
## Usage:
The intended prompt format is the modified Vicuna 1.1 instruction format used by airoboros v2:
## Training Details:
The model was trained using axolotl as a lora adapter on 1x A100 80gb GPU for 4 epochs, before being fused to the base model with PEFT.
## License:
This model is built on the Yi 34B base model, which has its own custom license included in this repository.
Please refer to the airoboros 2.2.1 dataset card regarding the usage of gpt-4 API calls in creating the dataset. | [
"# airoboros-2.2.1-y34b\n\nUnofficial training of Jon Durbin's powerful airoboros 2.2.1 dataset on Charles Goddard's Llama-fied Yi 34B model, aiming to bring the instruction-following capabilities of the airoboros dataset to the new Yi 34B foundational model.\n\nAs a 34B model with grouped-query attention, users will be able to conduct inference on the model with 4bit quantization on a single 24gb consumer GPU.\n\nThis Yi model is \"Llama-fied\", meaning the keys are renamed to match those used in Llama models, eliminating the need for remote code and ensuring compatibility with existing training and inference repositories. Architecturally this is similar to a Llama 2 34B model with an expanded vocab size of 64000.\n\nThis model is retrained thanks to compute provided by alpin with a monkeypatch to the trainer to resolve EOS token issues in the prompter. A smaller batch size and learning rate were used and training was extended by one epoch. 8-bit lora was also used instead of qlora.",
"## Usage:\n\nThe intended prompt format is the modified Vicuna 1.1 instruction format used by airoboros v2:",
"## Training Details:\n\nThe model was trained using axolotl as a lora adapter on 1x A100 80gb GPU for 4 epochs, before being fused to the base model with PEFT.",
"## License:\n\nThis model is built on the Yi 34B base model, which has its own custom license included in this repository.\n\nPlease refer to the airoboros 2.2.1 dataset card regarding the usage of gpt-4 API calls in creating the dataset."
] | [
"TAGS\n#transformers #safetensors #llama #text-generation #Yi #llama 2 #en #dataset-jondurbin/airoboros-2.2.1 #license-other #autotrain_compatible #text-generation-inference #region-us \n",
"# airoboros-2.2.1-y34b\n\nUnofficial training of Jon Durbin's powerful airoboros 2.2.1 dataset on Charles Goddard's Llama-fied Yi 34B model, aiming to bring the instruction-following capabilities of the airoboros dataset to the new Yi 34B foundational model.\n\nAs a 34B model with grouped-query attention, users will be able to conduct inference on the model with 4bit quantization on a single 24gb consumer GPU.\n\nThis Yi model is \"Llama-fied\", meaning the keys are renamed to match those used in Llama models, eliminating the need for remote code and ensuring compatibility with existing training and inference repositories. Architecturally this is similar to a Llama 2 34B model with an expanded vocab size of 64000.\n\nThis model is retrained thanks to compute provided by alpin with a monkeypatch to the trainer to resolve EOS token issues in the prompter. A smaller batch size and learning rate were used and training was extended by one epoch. 8-bit lora was also used instead of qlora.",
"## Usage:\n\nThe intended prompt format is the modified Vicuna 1.1 instruction format used by airoboros v2:",
"## Training Details:\n\nThe model was trained using axolotl as a lora adapter on 1x A100 80gb GPU for 4 epochs, before being fused to the base model with PEFT.",
"## License:\n\nThis model is built on the Yi 34B base model, which has its own custom license included in this repository.\n\nPlease refer to the airoboros 2.2.1 dataset card regarding the usage of gpt-4 API calls in creating the dataset."
] | [
67,
253,
26,
46,
56
] | [
"passage: TAGS\n#transformers #safetensors #llama #text-generation #Yi #llama 2 #en #dataset-jondurbin/airoboros-2.2.1 #license-other #autotrain_compatible #text-generation-inference #region-us \n# airoboros-2.2.1-y34b\n\nUnofficial training of Jon Durbin's powerful airoboros 2.2.1 dataset on Charles Goddard's Llama-fied Yi 34B model, aiming to bring the instruction-following capabilities of the airoboros dataset to the new Yi 34B foundational model.\n\nAs a 34B model with grouped-query attention, users will be able to conduct inference on the model with 4bit quantization on a single 24gb consumer GPU.\n\nThis Yi model is \"Llama-fied\", meaning the keys are renamed to match those used in Llama models, eliminating the need for remote code and ensuring compatibility with existing training and inference repositories. Architecturally this is similar to a Llama 2 34B model with an expanded vocab size of 64000.\n\nThis model is retrained thanks to compute provided by alpin with a monkeypatch to the trainer to resolve EOS token issues in the prompter. A smaller batch size and learning rate were used and training was extended by one epoch. 8-bit lora was also used instead of qlora.## Usage:\n\nThe intended prompt format is the modified Vicuna 1.1 instruction format used by airoboros v2:## Training Details:\n\nThe model was trained using axolotl as a lora adapter on 1x A100 80gb GPU for 4 epochs, before being fused to the base model with PEFT.## License:\n\nThis model is built on the Yi 34B base model, which has its own custom license included in this repository.\n\nPlease refer to the airoboros 2.2.1 dataset card regarding the usage of gpt-4 API calls in creating the dataset."
] | [
-0.08662984520196915,
0.0621708407998085,
-0.003103029914200306,
0.06006096675992012,
0.10708695650100708,
0.019222591072320938,
0.14084821939468384,
0.14281849563121796,
0.020915523171424866,
0.10535850375890732,
-0.04390526935458183,
0.03201090171933174,
0.11703190952539444,
0.13653433322906494,
-0.011841454543173313,
-0.1903853863477707,
0.045942217111587524,
0.0027673051226884127,
-0.06497853994369507,
-0.005730979610234499,
0.14187811315059662,
-0.060304295271635056,
0.1042328029870987,
0.027927178889513016,
-0.08868381381034851,
0.09587656706571579,
-0.022030077874660492,
-0.0947006419301033,
0.09141628444194794,
0.1065988540649414,
0.07956884801387787,
0.018947431817650795,
0.11070436239242554,
-0.14827141165733337,
0.0009211854776367545,
0.0941198468208313,
-0.008864287286996841,
0.025248128920793533,
0.05930793657898903,
-0.024884814396500587,
0.09861736744642258,
-0.03938186913728714,
0.07461078464984894,
0.02180636115372181,
-0.06256487965583801,
-0.09296227991580963,
-0.08655474334955215,
0.02083681896328926,
0.09467127919197083,
0.053392112255096436,
0.02625289373099804,
0.05552279204130173,
-0.01662635989487171,
0.00849643163383007,
0.1257614940404892,
-0.17427590489387512,
-0.0014002019306644797,
0.1600562483072281,
0.03452497348189354,
0.04713128134608269,
-0.0842430517077446,
-0.04705626890063286,
0.0994952842593193,
0.0273783840239048,
0.07248422503471375,
-0.013405955396592617,
0.07778055965900421,
-0.018555857241153717,
-0.09321440011262894,
-0.0782262310385704,
0.18166577816009521,
0.05541647598147392,
-0.09917358309030533,
-0.07386603206396103,
-0.10158723592758179,
0.0668930783867836,
0.05037379264831543,
-0.07319816201925278,
0.050986163318157196,
0.0008399668149650097,
0.07900805026292801,
-0.10810676962137222,
-0.09988844394683838,
-0.04503629356622696,
-0.10622557252645493,
0.17315927147865295,
0.07373838126659393,
0.0952739343047142,
-0.06068819388747215,
0.09543098509311676,
-0.06308651715517044,
-0.07357775419950485,
-0.0875132828950882,
-0.02455516718327999,
-0.10391590744256973,
0.002611584961414337,
-0.04102523252367973,
-0.08848521113395691,
-0.01601475477218628,
0.220454141497612,
-0.06073746830224991,
0.011405983939766884,
0.07845836132764816,
0.024097861722111702,
0.02338932827115059,
0.13509367406368256,
0.0037604321260005236,
-0.08331330120563507,
0.058457013219594955,
0.07930757850408554,
-0.0007954849279485643,
-0.012675243429839611,
-0.0915500670671463,
-0.06905706971883774,
0.03005828522145748,
-0.02465786412358284,
-0.0320562869310379,
-0.011907604523003101,
-0.007556983269751072,
-0.03856277838349342,
0.1180616095662117,
-0.13968707621097565,
0.005210231989622116,
-0.02513790689408779,
-0.12405043095350266,
0.06779894977807999,
0.07375795394182205,
-0.009320779703557491,
-0.0607222318649292,
-0.004170096945017576,
-0.05709145963191986,
-0.09962338209152222,
-0.1208108514547348,
-0.07180248200893402,
-0.002761951880529523,
-0.08770883083343506,
0.038265109062194824,
-0.15872541069984436,
-0.2896882891654968,
-0.053301852196455,
-0.003366823773831129,
-0.0077204471454024315,
-0.04928238317370415,
-0.08605080097913742,
-0.020303579047322273,
-0.052647173404693604,
-0.009261555038392544,
0.04736768454313278,
-0.028591446578502655,
0.002204742282629013,
-0.030725808814167976,
0.09767881780862808,
-0.07761106640100479,
0.026039177551865578,
-0.039862748235464096,
0.02782670594751835,
-0.05476116016507149,
0.09525328129529953,
-0.0014736172743141651,
-0.11928097903728485,
-0.030587436631321907,
-0.012789610773324966,
-0.05628746375441551,
0.04521496593952179,
0.033093973994255066,
0.059104278683662415,
-0.1314769983291626,
-0.07219108939170837,
0.09283320605754852,
-0.14370539784431458,
-0.010716368444263935,
0.06816790997982025,
-0.0316670797765255,
0.08567652106285095,
0.07481800019741058,
0.09288254380226135,
0.08067989349365234,
-0.06259144097566605,
-0.11404483020305634,
-0.03757582604885101,
-0.01973387785255909,
-0.002363720675930381,
0.03179888427257538,
0.0473664328455925,
0.07019805908203125,
0.03601836785674095,
0.04178735241293907,
0.003812019480392337,
-0.005414955317974091,
-0.011969003826379776,
-0.0340149886906147,
-0.0716257095336914,
-0.07752761989831924,
-0.046609148383140564,
0.021138900890946388,
-0.03505650907754898,
-0.0960598960518837,
0.025767968967556953,
0.18637843430042267,
-0.07515805214643478,
-0.01033844519406557,
-0.08562202751636505,
0.09806464612483978,
-0.07920617610216141,
-0.018461471423506737,
-0.11324790865182877,
-0.04828294366598129,
0.08509930968284607,
-0.13486328721046448,
-0.008768163621425629,
0.09635838121175766,
0.04371248558163643,
0.06956940144300461,
-0.038855668157339096,
-0.044622767716646194,
-0.08971279114484787,
-0.044973913580179214,
-0.03334151953458786,
-0.02637929469347,
-0.05734087899327278,
-0.0655522570014,
0.08374998718500137,
-0.09353785216808319,
0.07148650288581848,
-0.061319079250097275,
0.16745373606681824,
0.02990472875535488,
-0.03555469587445259,
-0.027746226638555527,
-0.030627034604549408,
-0.06166541948914528,
-0.1043417677283287,
-0.039156850427389145,
0.02434813790023327,
-0.008075295016169548,
0.057502083480358124,
-0.1666623055934906,
-0.06328136473894119,
0.07729122787714005,
0.16273874044418335,
-0.016146378591656685,
-0.06941783428192139,
-0.056219298392534256,
-0.03381573408842087,
-0.11154630035161972,
-0.0969688668847084,
0.22481507062911987,
-0.04203147813677788,
0.11424368619918823,
-0.11709389090538025,
-0.04701141640543938,
-0.020198427140712738,
-0.006676724646240473,
-0.030487241223454475,
-0.015072018839418888,
0.062459688633680344,
-0.07511114329099655,
0.09651099890470505,
-0.0074554202146828175,
-0.01929767057299614,
0.13760699331760406,
0.028514103963971138,
-0.1186404749751091,
-0.008154608309268951,
-0.03361691161990166,
0.0008633952238596976,
0.12325813621282578,
0.044758785516023636,
0.054452698677778244,
0.03462153673171997,
0.06357333064079285,
0.10222256928682327,
-0.115162692964077,
0.07108253985643387,
0.04901433363556862,
-0.05421607568860054,
0.07282562553882599,
0.028347887098789215,
0.024854807183146477,
0.08611255139112473,
-0.05710286647081375,
-0.032189201563596725,
-0.0025702465791255236,
-0.026964878663420677,
-0.05143195390701294,
0.1464645117521286,
-0.06783313304185867,
-0.16446055471897125,
-0.19235645234584808,
0.11377362161874771,
-0.06587127596139908,
0.042516034096479416,
0.03318410366773605,
0.0012906709453091025,
-0.07703579217195511,
-0.10035853832960129,
0.09695977717638016,
0.019964341074228287,
0.010899610817432404,
-0.008935839869081974,
0.02279266156256199,
0.002510317135602236,
-0.1610105186700821,
-0.03155384212732315,
-0.020408164709806442,
-0.13654811680316925,
0.012098784558475018,
-0.02448733150959015,
0.05150868743658066,
0.0417286679148674,
-0.0867747887969017,
-0.03227732703089714,
-0.03351368382573128,
0.14495138823986053,
-0.018023507669568062,
0.12105191498994827,
0.22839845716953278,
0.025782473385334015,
0.08029649406671524,
0.009126345627009869,
-0.0707557424902916,
-0.09099335968494415,
0.04206984117627144,
0.049589529633522034,
-0.03474568948149681,
-0.22807982563972473,
0.016264569014310837,
-0.027268730103969574,
-0.047453366219997406,
0.1040225401520729,
0.04142555221915245,
0.054278891533613205,
0.09804964065551758,
-0.06825770437717438,
0.10575612634420395,
0.014245934784412384,
0.06707799434661865,
0.026287946850061417,
0.02910369075834751,
0.05078766867518425,
-0.034030526876449585,
-0.00010625791765050963,
0.09290534257888794,
0.17956183850765228,
0.2234453409910202,
-0.10701656341552734,
0.013141583651304245,
0.011671389453113079,
0.02603837475180626,
0.031106416136026382,
0.11328408122062683,
-0.03946581855416298,
0.04708945006132126,
-0.08572139590978622,
0.004500894341617823,
-0.034576285630464554,
0.11876101791858673,
0.007995691150426865,
0.08967184275388718,
-0.0823267474770546,
0.06817451864480972,
-0.02480289526283741,
0.18556396663188934,
0.020896874368190765,
-0.27982908487319946,
-0.054289646446704865,
0.05866851285099983,
-0.047872770577669144,
-0.07243863493204117,
0.037693895399570465,
0.2244676798582077,
-0.08789659291505814,
0.017445091158151627,
0.010379564948379993,
0.07383554428815842,
-0.08137624710798264,
-0.0384514257311821,
-0.06811423599720001,
0.20809359848499298,
-0.015904037281870842,
0.06686222553253174,
-0.13569137454032898,
0.02418200857937336,
0.00031392835080623627,
0.10128675401210785,
-0.07996581494808197,
0.08580614626407623,
0.0560394749045372,
-0.03281336650252342,
0.060512639582157135,
-0.023115044459700584,
-0.16221433877944946,
-0.04773211479187012,
-0.11547249555587769,
0.07557489722967148,
-0.00941938254982233,
-0.07266315817832947,
0.08677602559328079,
-0.024163177236914635,
0.042773667722940445,
0.00102167425211519,
-0.01583831012248993,
-0.08252479135990143,
-0.1971258819103241,
-0.03840888664126396,
0.04007458686828613,
-0.05392571911215782,
-0.1471662074327469,
-0.03394816443324089,
0.006105495151132345,
0.03896654024720192,
0.0354885496199131,
-0.07641807943582535,
-0.10012192279100418,
0.05341264605522156,
0.10241709649562836,
-0.06416168063879013,
0.058061543852090836,
0.06247672066092491,
0.1577252894639969,
-0.05224728584289551,
-0.07906031608581543,
-0.01023855246603489,
-0.06874553859233856,
-0.08901369571685791,
-0.03708016499876976,
0.01667025312781334,
0.04553016275167465,
0.04658571258187294,
0.03509834036231041,
-0.054188989102840424,
0.0049971044063568115,
-0.042898811399936676,
-0.0017819112399592996,
0.22558262944221497,
0.015859534963965416,
0.13136038184165955,
-0.08798679709434509,
-0.1139518991112709,
-0.03596959263086319,
0.010061204433441162,
0.033999089151620865,
0.25458037853240967,
-0.023392342031002045,
0.02032899297773838,
0.09613905847072601,
-0.10007891058921814,
-0.1332501620054245,
-0.0010162662947550416,
0.04676032438874245,
0.12340463697910309,
-0.051229655742645264,
-0.10039355605840683,
0.0038095712661743164,
0.10931675136089325,
0.023791352286934853,
0.10045047104358673,
-0.2699452042579651,
-0.06874983012676239,
0.045970093458890915,
0.06570014357566833,
0.15846268832683563,
-0.017715198919177055,
0.018830152228474617,
-0.0030856409575790167,
-0.05266685038805008,
0.034041788429021835,
-0.004694005474448204,
0.11265872418880463,
-0.051123347133398056,
0.05233265087008476,
0.04028524458408356,
-0.01576850190758705,
0.15130198001861572,
0.0027692022267729044,
0.10156669467687607,
-0.041078805923461914,
0.08693063259124756,
0.07383817434310913,
-0.07315507531166077,
0.10485182702541351,
-0.06071293726563454,
0.04840549826622009,
-0.07163311541080475,
-0.0885394960641861,
-0.013313096016645432,
0.08385494351387024,
-0.0021903894376009703,
-0.09019958227872849,
-0.06880255788564682,
0.047714147716760635,
0.07393572479486465,
0.0148758664727211,
-0.09893188625574112,
0.015216370113193989,
-0.02870016172528267,
0.110978864133358,
0.06163065880537033,
-0.03076516091823578,
-0.09202203154563904,
0.0067678471095860004,
0.03838164731860161,
0.11076179891824722,
-0.13356561958789825,
0.016621073707938194,
0.10589143633842468,
-0.04055396094918251,
0.1208353266119957,
0.06547649949789047,
-0.14396530389785767,
0.058197081089019775,
0.03164171800017357,
-0.017054973170161247,
-0.057758089154958725,
-0.020463157445192337,
0.03872966393828392,
-0.07986300438642502,
-0.02076718397438526,
0.13364528119564056,
-0.06601822376251221,
-0.01651160605251789,
-0.05057668685913086,
0.016352705657482147,
-0.0025844485498964787,
0.10481924563646317,
0.031160244718194008,
0.005220972932875156,
0.0019309164490550756,
0.1896074414253235,
0.06302417069673538,
-0.11433403939008713,
0.03736374154686928,
-0.0335809551179409,
-0.04012685641646385,
0.00003350226324982941,
-0.07032772153615952,
0.14312800765037537,
-0.10366685688495636,
-0.09172849357128143,
-0.13492712378501892,
-0.06099148467183113,
0.035359036177396774,
0.02917494997382164,
0.016030268743634224,
0.011049406602978706,
-0.022661712020635605,
0.05188262090086937,
-0.11827417463064194,
0.035395000129938126,
0.06545433402061462,
0.10332926362752914,
-0.10066049546003342,
0.017742643132805824,
-0.0051520816050469875,
0.00330023979768157,
0.0017602590378373861,
-0.0025655122008174658,
-0.08929907530546188,
-0.027456002309918404,
-0.14230559766292572,
0.03729994595050812,
-0.007471915800124407,
-0.027120111510157585,
0.02903807908296585,
-0.04317798838019371,
-0.0450776144862175,
0.08183249831199646,
-0.04775939881801605,
-0.060047805309295654,
-0.0005904237041249871,
0.0863855630159378,
-0.03063337318599224,
-0.062383003532886505,
0.029879078269004822,
-0.11793141067028046,
0.0736546665430069,
0.021805599331855774,
-0.008263806812465191,
-0.025281159207224846,
-0.08326702564954758,
-0.008923922665417194,
0.033481910824775696,
0.08177368342876434,
0.0649615228176117,
-0.05834777280688286,
0.07488888502120972,
0.0036791011225432158,
-0.06191254407167435,
-0.07149651646614075,
-0.01569523848593235,
-0.050221480429172516,
0.02925063669681549,
-0.04570931941270828,
-0.034497689455747604,
-0.0758291706442833,
-0.025629734620451927,
0.09567005187273026,
0.06243632361292839,
0.10983327031135559,
-0.015812011435627937,
0.022086739540100098,
-0.1899895966053009,
0.008562344126403332,
0.021360132843255997,
0.007408421952277422,
0.07919273525476456,
-0.05686695873737335,
0.045745234936475754,
0.01089715026319027,
0.13759230077266693,
-0.009342407807707787,
-0.0003376135427970439,
-0.011868327856063843,
-0.06384116411209106,
0.031793124973773956,
0.015261022374033928,
0.08157533407211304,
0.03632228448987007,
0.024089016020298004,
0.025493910536170006,
-0.0001973943435586989,
0.09332971274852753,
-0.03659394383430481,
0.07640496641397476,
0.07891417294740677,
0.026338661089539528,
0.16652058064937592,
0.0576777458190918,
-0.060049135237932205,
-0.05820359289646149,
0.0074661532416939735,
0.008919726125895977,
-0.03423786908388138,
0.00961736124008894,
0.041059307754039764,
0.1559373140335083,
-0.1814340502023697,
0.08712051808834076,
0.033293332904577255,
-0.04173843935132027,
-0.09506779909133911,
-0.10548514872789383,
-0.06129536032676697,
-0.07363376766443253,
0.021695736795663834,
-0.09507636725902557,
0.0029434440657496452,
0.06340257078409195,
-0.011134929023683071,
-0.010606604628264904,
0.02501273714005947,
-0.11066709458827972,
-0.05318691208958626,
-0.03700333088636398,
0.01840587519109249,
0.0406314991414547,
0.015909358859062195,
-0.08692921698093414,
0.050925370305776596,
0.08162444084882736,
0.05759700760245323,
-0.039798758924007416,
0.16286389529705048,
0.06082959473133087,
0.03241083770990372,
0.03957607224583626,
-0.013074476271867752,
-0.062345828860998154,
-0.020868608728051186,
0.06487580388784409,
0.07807517051696777,
-0.015233540907502174,
0.031194888055324554,
0.1638394147157669,
-0.0364031121134758,
-0.09228775650262833,
-0.1568448692560196,
0.02674342505633831,
0.0675424337387085,
0.06086781248450279,
0.04727712646126747,
-0.13189294934272766,
-0.08171015232801437,
0.13864809274673462,
0.07204161584377289,
-0.010568760335445404,
-0.04588809981942177,
-0.01725665293633938,
-0.024533778429031372,
-0.05664537847042084,
0.07327831536531448,
0.10068956017494202,
0.14085343480110168,
-0.015216332860291004,
0.059209227561950684,
0.01455356553196907,
0.05160602927207947,
-0.004258085507899523,
0.13081109523773193,
-0.10160933434963226,
0.027975555509328842,
-0.012505046091973782,
-0.05638815090060234,
0.05007329210639,
-0.24789604544639587,
0.052244484424591064,
-0.06355530023574829,
-0.09749242663383484,
0.009901945479214191,
0.012105925008654594,
-0.0498659648001194,
0.08413877338171005,
-0.02270328626036644,
0.018696272745728493,
0.15484800934791565,
-0.04295525327324867,
-0.11348021030426025,
-0.055211760103702545,
0.03861197084188461,
-0.08441899716854095,
0.23385553061962128,
-0.004599365871399641,
0.06703537702560425,
0.07249698042869568,
0.029550623148679733,
-0.1120232567191124,
0.03985252231359482,
-0.032559219747781754,
-0.002298654755577445,
0.01788724772632122,
0.11647694557905197,
-0.05622204393148422,
0.10460567474365234,
0.02367520146071911,
-0.060689087957143784,
0.0013843284687027335,
0.016468072310090065,
-0.014274480752646923,
-0.07029924541711807,
0.027080561965703964,
-0.07816773653030396,
0.1320045292377472,
0.09524790942668915,
-0.0027379579842090607,
-0.010632697492837906,
-0.03431893512606621,
0.08104332536458969,
0.07853078097105026,
0.07912872731685638,
0.020229576155543327,
-0.09935589134693146,
-0.026873892173171043,
-0.12549147009849548,
-0.000978869036771357,
-0.19236701726913452,
-0.09516928344964981,
-0.03559013083577156,
-0.11868893355131149,
-0.0465523935854435,
0.0794944018125534,
0.06942232698202133,
0.06319834291934967,
-0.08160360157489777,
-0.11705666035413742,
-0.06671486049890518,
0.07371608912944794,
-0.10350318253040314,
-0.10531782358884811
] |
null | null | transformers | # Severus Snape DialoGPT Model
| {"tags": ["conversational"]} | text-generation | Neutrophil/DialoGPT-medium-severussnape | [
"transformers",
"safetensors",
"gpt2",
"text-generation",
"conversational",
"autotrain_compatible",
"endpoints_compatible",
"text-generation-inference",
"region:us"
] | 2023-11-11T09:27:28+00:00 | [] | [] | TAGS
#transformers #safetensors #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us
| # Severus Snape DialoGPT Model
| [
"# Severus Snape DialoGPT Model"
] | [
"TAGS\n#transformers #safetensors #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n",
"# Severus Snape DialoGPT Model"
] | [
52,
10
] | [
"passage: TAGS\n#transformers #safetensors #gpt2 #text-generation #conversational #autotrain_compatible #endpoints_compatible #text-generation-inference #region-us \n# Severus Snape DialoGPT Model"
] | [
-0.02611629292368889,
0.014690766111016273,
-0.005821083672344685,
-0.010773304849863052,
0.08967702090740204,
-0.03775901347398758,
0.16603444516658783,
0.10159973800182343,
0.01845097914338112,
-0.00620102696120739,
0.09911082684993744,
0.15469016134738922,
0.0035818181931972504,
0.12237954884767532,
-0.08122503757476807,
-0.2155916541814804,
0.12652306258678436,
-0.02722550742328167,
-0.009243622422218323,
0.08207632601261139,
0.10723618417978287,
-0.025824232026934624,
0.07910261303186417,
-0.01600988395512104,
-0.10781372338533401,
0.0402601957321167,
0.03845018893480301,
-0.09663110971450806,
0.14092127978801727,
0.08447936177253723,
0.040481168776750565,
0.0573219358921051,
-0.02810591831803322,
-0.19806598126888275,
0.025601111352443695,
-0.0034275827929377556,
-0.04849175363779068,
-0.008214871399104595,
0.00917484238743782,
-0.10461240261793137,
-0.02601286768913269,
0.015297791920602322,
0.033338963985443115,
0.039671510457992554,
-0.11225491017103195,
0.115048348903656,
-0.005136571824550629,
-0.02620251663029194,
0.14427430927753448,
0.07263238728046417,
-0.027548862621188164,
0.07795964181423187,
-0.061691123992204666,
0.12221820652484894,
0.10507314652204514,
-0.2951364815235138,
-0.010085059329867363,
0.04492374137043953,
0.014985321089625359,
0.08489763736724854,
-0.02952539175748825,
0.08183698356151581,
0.05455140396952629,
-0.05023711919784546,
-0.05451659858226776,
-0.05655266344547272,
-0.07025094330310822,
-0.004910789430141449,
-0.11217641830444336,
-0.015423005446791649,
0.2750655710697174,
-0.019104519858956337,
0.02482733130455017,
-0.07494651526212692,
-0.12290307134389877,
-0.01421434711664915,
-0.05314601957798004,
-0.045528095215559006,
-0.04148654267191887,
0.07160036265850067,
0.05313761532306671,
-0.05420621484518051,
-0.11554457247257233,
-0.09290776401758194,
-0.1352756768465042,
0.17846591770648956,
0.04769676923751831,
0.03454839438199997,
-0.19290782511234283,
0.04811050742864609,
-0.050208769738674164,
-0.03427235782146454,
0.01723298244178295,
-0.054949697107076645,
-0.07898597419261932,
0.02781134471297264,
-0.059467755258083344,
-0.13564106822013855,
0.12449990212917328,
0.2284063845872879,
-0.01206227671355009,
0.06516405194997787,
0.011465497314929962,
0.030931953340768814,
0.01872888393700123,
0.0429147444665432,
0.0424749031662941,
-0.06053273379802704,
0.052840281277894974,
-0.11233033239841461,
0.0336146354675293,
-0.06127283722162247,
-0.1612716019153595,
-0.038771696388721466,
0.08269188553094864,
0.04772183299064636,
-0.02125358395278454,
0.1104087233543396,
-0.016726186498999596,
0.009671960957348347,
0.024364298209547997,
-0.06693414598703384,
-0.03660875931382179,
-0.022840971127152443,
0.056500114500522614,
0.0665370300412178,
0.031148545444011688,
0.05583178624510765,
-0.09326479583978653,
0.008904713205993176,
-0.04438120871782303,
-0.04998141527175903,
0.01185398455709219,
-0.04151683300733566,
-0.010118246078491211,
-0.07479874044656754,
0.027372077107429504,
-0.19072893261909485,
-0.25704705715179443,
-0.02316223829984665,
-0.053651176393032074,
-0.022391321137547493,
-0.09259304404258728,
-0.12586475908756256,
-0.009367533028125763,
0.0474788062274456,
-0.05469594895839691,
-0.10279522091150284,
-0.06396810710430145,
0.03731417655944824,
-0.020337069407105446,
0.07193654775619507,
-0.11790049076080322,
0.02469337172806263,
-0.1038859412074089,
0.007536265067756176,
-0.005902488250285387,
0.13522808253765106,
-0.05115624517202377,
0.11690028011798859,
-0.010815044865012169,
0.03857084736227989,
-0.11422208696603775,
0.09414661675691605,
-0.026920214295387268,
0.2712954878807068,
-0.19866108894348145,
-0.09617047756910324,
0.3184448480606079,
-0.15635548532009125,
-0.1594606339931488,
0.15903115272521973,
0.0014630346558988094,
0.06132800504565239,
0.13483405113220215,
0.2876499593257904,
0.041495781391859055,
0.026215743273496628,
0.05961235985159874,
0.07580626010894775,
-0.09800110757350922,
0.009770327247679234,
-0.000824951333925128,
-0.016108721494674683,
-0.12013190984725952,
0.03857410326600075,
0.08014023303985596,
0.037812747061252594,
-0.01309553999453783,
-0.021687384694814682,
-0.03766578808426857,
-0.03709493204951286,
0.07076799869537354,
-0.08879013359546661,
0.0937562808394432,
-0.09670919924974442,
-0.01978960633277893,
0.06334365904331207,
0.026033099740743637,
-0.050787609070539474,
0.035717543214559555,
-0.1074591875076294,
0.04186291992664337,
0.034832920879125595,
0.07185257226228714,
-0.06557049602270126,
-0.12680649757385254,
-0.03342152386903763,
0.13383735716342926,
0.04684107005596161,
0.028610140085220337,
0.08216951787471771,
-0.021803397685289383,
0.017774613574147224,
-0.0013462041970342398,
0.16645756363868713,
0.034651149064302444,
-0.0794120505452156,
-0.08382880687713623,
0.12852314114570618,
-0.04752354323863983,
0.1107846051454544,
-0.030278824269771576,
0.05007930472493172,
0.08913253247737885,
0.11749062687158585,
0.005486685317009687,
0.0003359168767929077,
-0.016805045306682587,
-0.03472168371081352,
-0.0611538290977478,
0.01947394758462906,
0.04170219227671623,
0.00628691865131259,
-0.0846315547823906,
0.18685685098171234,
-0.22277748584747314,
0.15490883588790894,
0.15170611441135406,
-0.16909907758235931,
-0.02841814048588276,
-0.1284177452325821,
-0.0036759597714990377,
-0.0018972293473780155,
0.029899174347519875,
-0.11462292075157166,
0.1025223508477211,
-0.028966128826141357,
0.1352394074201584,
-0.04909023270010948,
-0.025569558143615723,
-0.014308035373687744,
-0.08826547116041183,
-0.003709063632413745,
0.08934029191732407,
0.032614566385746,
-0.0641726404428482,
0.14936043322086334,
0.09396115690469742,
-0.007973709143698215,
0.1405085325241089,
0.006441337522119284,
0.031914763152599335,
0.0650506466627121,
0.057028792798519135,
-0.01681617833673954,
-0.06647683680057526,
-0.3323047161102295,
-0.05651481822133064,
0.02685733698308468,
0.06470836699008942,
0.09814130514860153,
-0.10803855955600739,
-0.021787500008940697,
0.036751385778188705,
-0.03551827371120453,
0.11678633093833923,
0.07837576419115067,
-0.01413265522569418,
0.11051027476787567,
-0.06183277443051338,
-0.08152789622545242,
0.06773339211940765,
-0.013513335958123207,
-0.11164017766714096,
0.17503829300403595,
-0.1476491093635559,
-0.2907332479953766,
-0.137736514210701,
-0.08808818459510803,
-0.07145685702562332,
0.08473348617553711,
0.12082395702600479,
-0.14458775520324707,
-0.03605279326438904,
-0.05881232023239136,
0.06155750900506973,
-0.007167065516114235,
0.08553874492645264,
-0.03230781853199005,
0.0013297247933223844,
-0.08116807788610458,
-0.061753418296575546,
-0.04887932538986206,
-0.01957850344479084,
-0.07176206260919571,
0.08728117495775223,
-0.14105133712291718,
0.10052042454481125,
0.22033905982971191,
0.01938503608107567,
0.019555633887648582,
-0.044728200882673264,
0.23040257394313812,
-0.06472241878509521,
-0.006376796402037144,
0.17417040467262268,
-0.0746428444981575,
0.03127717226743698,
0.1512538492679596,
-0.0360407792031765,
-0.10983270406723022,
0.059842467308044434,
0.013126528821885586,
-0.08801060169935226,
-0.18751117587089539,
-0.11923669278621674,
-0.06511528044939041,
0.1646919995546341,
-0.008876974694430828,
0.06137758493423462,
0.12131063640117645,
0.08748183399438858,
-0.02562056854367256,
0.021333638578653336,
0.15655875205993652,
0.09468139708042145,
0.22632095217704773,
-0.07284770905971527,
0.14601802825927734,
-0.006666276603937149,
-0.15508918464183807,
0.0819363072514534,
0.10118190944194794,
-0.002381835365667939,
0.0823911800980568,
0.13369546830654144,
0.009935452602803707,
0.03611656650900841,
0.106947161257267,
0.0591549277305603,
0.04640139639377594,
-0.046460166573524475,
-0.017682470381259918,
-0.02543417550623417,
-0.07353521883487701,
0.08861647546291351,
-0.05213075876235962,
-0.13389413058757782,
-0.06129101663827896,
0.04959898442029953,
0.12439882755279541,
0.03679440915584564,
0.07276110351085663,
-0.15456290543079376,
-0.041837263852357864,
0.11442733556032181,
-0.045766860246658325,
-0.07267870754003525,
0.13727237284183502,
0.062101464718580246,
-0.06270591169595718,
0.053289011120796204,
0.00448846397921443,
0.08566619455814362,
-0.07598428428173065,
0.08341336250305176,
-0.14707837998867035,
-0.06581392884254456,
-0.021593185141682625,
0.08953028917312622,
-0.20840756595134735,
0.15183542668819427,
-0.023718560114502907,
-0.04629351198673248,
-0.06292189657688141,
0.0046821897849440575,
-0.020718231797218323,
0.14522571861743927,
0.17160029709339142,
-0.018392128869891167,
-0.09628034383058548,
0.012927261181175709,
-0.04186240956187248,
0.02355654537677765,
0.1224684864282608,
-0.04048537462949753,
-0.002147772116586566,
-0.07175704091787338,
0.00035791477421298623,
0.007032007910311222,
-0.06441831588745117,
-0.005348519422113895,
-0.19020503759384155,
0.050950389355421066,
0.08811579644680023,
0.10504868626594543,
-0.011882416903972626,
0.013990016654133797,
-0.11960484832525253,
0.3034239709377289,
-0.1099095568060875,
-0.08007315546274185,
-0.09881167858839035,
-0.1098133772611618,
0.007063024677336216,
-0.042423587292432785,
0.04937700927257538,
-0.006566004827618599,
0.07570662349462509,
-0.0841156393289566,
-0.14497628808021545,
0.11656007170677185,
-0.1108546331524849,
-0.05445173382759094,
-0.04438508674502373,
0.18892373144626617,
-0.050960738211870193,
-0.02940821461379528,
0.06209900975227356,
-0.005957284476608038,
-0.05062500759959221,
-0.10487218201160431,
0.023318501189351082,
0.0798444077372551,
-0.11989814788103104,
0.07154250144958496,
-0.007347387261688709,
-0.10388090461492538,
-0.019285472109913826,
-0.03675904497504234,
0.26411622762680054,
0.2512816786766052,
-0.024582011625170708,
0.16716374456882477,
0.10369063913822174,
-0.0795535147190094,
-0.30416083335876465,
-0.10634230077266693,
-0.09837694466114044,
-0.054949939250946045,
-0.03400789573788643,
-0.06087535247206688,
0.07501570135354996,
0.035630956292152405,
-0.030251378193497658,
-0.0447206124663353,
-0.29872727394104004,
-0.14461858570575714,
0.18481208384037018,
0.029122520238161087,
0.43179139494895935,
-0.12910515069961548,
-0.11272581666707993,
-0.12938469648361206,
-0.07346931099891663,
0.1583298295736313,
-0.08670129626989365,
0.05124548077583313,
0.04327517747879028,
0.12378126382827759,
0.06274360418319702,
0.0016148090362548828,
0.11137058585882187,
0.006281474605202675,
0.006945544853806496,
-0.08732262253761292,
0.005944504868239164,
-0.05962503328919411,
-0.0010933575686067343,
0.06378927826881409,
-0.0666607990860939,
0.046442460268735886,
-0.03369161859154701,
-0.06213727220892906,
-0.025488337501883507,
0.05496900528669357,
0.03720498085021973,
-0.05253874510526657,
-0.000620153034105897,
-0.09266132861375809,
0.029604671522974968,
0.01034887321293354,
0.20338024199008942,
-0.07869046926498413,
0.09461290389299393,
0.13979925215244293,
0.13525743782520294,
-0.12303086370229721,
0.009037121199071407,
-0.010076205246150494,
-0.06893324851989746,
0.03901425376534462,
-0.008543726056814194,
0.07638789713382721,
0.07911620289087296,
-0.028299635276198387,
0.11503062397241592,
0.09479203075170517,
-0.007067573722451925,
0.010305134579539299,
0.10335341095924377,
-0.26587414741516113,
-0.13836073875427246,
-0.07147732377052307,
0.04365381971001625,
0.06505395472049713,
0.1553022414445877,
0.2316826581954956,
-0.03192511945962906,
0.0013773965183645487,
-0.014704394154250622,
0.06376918405294418,
-0.023910081014037132,
0.1195366233587265,
-0.014435346238315105,
0.0023532994091510773,
-0.11826080828905106,
0.10265087336301804,
-0.023530013859272003,
-0.10630440711975098,
0.06411566585302353,
0.11731848120689392,
-0.12188225239515305,
-0.10444145649671555,
-0.05708930268883705,
0.07865973562002182,
-0.18237735331058502,
-0.05131116509437561,
-0.086434006690979,
-0.15876910090446472,
0.023556863889098167,
0.1850740909576416,
0.04748789966106415,
0.10145644098520279,
-0.010184099897742271,
0.002814073581248522,
-0.009857643395662308,
0.0414445735514164,
0.06631974130868912,
0.028896784409880638,
-0.10310544073581696,
0.047938182950019836,
-0.07353273779153824,
0.06024919077754021,
-0.09288067370653152,
-0.05189542472362518,
-0.20083403587341309,
0.017462879419326782,
-0.16401232779026031,
-0.008172344416379929,
-0.0760263204574585,
-0.017689524218440056,
0.036701641976833344,
0.02021198719739914,
-0.014424518682062626,
-0.04299873858690262,
-0.08726263046264648,
0.038640134036540985,
-0.044410139322280884,
0.00759971234947443,
-0.09949738532304764,
0.01342572271823883,
0.09089284390211105,
-0.04296685382723808,
0.13152489066123962,
0.11703995615243912,
-0.08166708052158356,
0.12144041061401367,
-0.21306639909744263,
-0.019808072596788406,
0.12671765685081482,
0.0008683712803758681,
0.016684450209140778,
0.08601634949445724,
-0.033824123442173004,
0.07787363976240158,
-0.008597022853791714,
0.033834055066108704,
0.04329231008887291,
-0.0571993812918663,
0.06377074122428894,
-0.02640206180512905,
-0.1181059256196022,
-0.045225463807582855,
-0.06955227255821228,
0.03328046202659607,
0.029374442994594574,
0.08081774413585663,
-0.10578899085521698,
0.04687561094760895,
-0.04567164182662964,
0.03989538550376892,
0.05910882353782654,
-0.14325375854969025,
-0.08180369436740875,
-0.06803666800260544,
0.038039203733205795,
0.005644790828227997,
0.2102803736925125,
0.006174813024699688,
0.04370554909110069,
0.0406690277159214,
0.005336824804544449,
0.1033172607421875,
0.058232855051755905,
0.22595064342021942,
0.08552749454975128,
-0.03468126803636551,
-0.14584742486476898,
0.02651054970920086,
0.06151305511593819,
-0.07941293716430664,
0.06902150064706802,
-0.060010142624378204,
-0.18652276694774628,
0.14812876284122467,
-0.011075704358518124,
0.04086075723171234,
-0.06498159468173981,
-0.10245811939239502,
-0.08491535484790802,
0.008063916116952896,
-0.05738918110728264,
0.12329435348510742,
0.17413444817066193,
-0.015224377624690533,
0.010477364994585514,
0.005965740419924259,
-0.08923786133527756,
-0.22538457810878754,
-0.20967316627502441,
-0.1132575199007988,
-0.17614881694316864,
0.001540319062769413,
-0.15481829643249512,
0.020817581564188004,
-0.01494178269058466,
0.07427827268838882,
-0.011365438811480999,
0.12488795816898346,
-0.03694421425461769,
-0.048685576766729355,
0.01752650924026966,
-0.04498664289712906,
0.05156886577606201,
0.013918659649789333,
-0.07724892348051071,
-0.019734350964426994,
0.05360379442572594,
-0.0439719595015049,
0.027773015201091766,
-0.004177513532340527,
0.006457201670855284,
-0.07082416862249374,
-0.04248993843793869,
-0.04621291160583496,
0.04476374015212059,
-0.05068208649754524,
0.06977228075265884,
0.06956861913204193,
-0.06762523949146271,
0.03692813590168953,
0.26745137572288513,
-0.07396465539932251,
-0.06942038238048553,
-0.07576034963130951,
0.12408532202243805,
0.022974591702222824,
0.1873876005411148,
-0.034837543964385986,
-0.05639328435063362,
-0.04257495328783989,
0.28732308745384216,
0.1985338032245636,
-0.07300471514463425,
0.041573863476514816,
-0.05072213336825371,
0.0470246896147728,
0.0933268591761589,
0.06113032251596451,
0.04084962233901024,
0.24100032448768616,
-0.005796961020678282,
0.01967419683933258,
0.04954242706298828,
-0.042700428515672684,
-0.08333665132522583,
0.05235356092453003,
0.0025172897148877382,
-0.02357443980872631,
-0.0357053168118,
0.11869855970144272,
-0.22846701741218567,
0.010883388109505177,
-0.1339917629957199,
-0.13779398798942566,
-0.03487754240632057,
0.020550677552819252,
0.12459687143564224,
-0.0002328940900042653,
0.06346499174833298,
-0.0012451736256480217,
-0.08286581188440323,
0.055067285895347595,
0.035746313631534576,
-0.20255282521247864,
-0.0429888553917408,
0.02273702435195446,
0.001685017836280167,
0.014858401380479336,
-0.018240824341773987,
0.04522468522191048,
0.04262198880314827,
0.042621076107025146,
-0.011877456679940224,
0.07541079074144363,
-0.01793183945119381,
-0.0585380457341671,
0.013738411478698254,
0.07152030616998672,
-0.0085684759542346,
0.006095294840633869,
0.07558271288871765,
-0.19207730889320374,
0.011394152417778969,
0.03678053990006447,
-0.062313903123140335,
-0.02038899064064026,
0.04487794265151024,
-0.09657436609268188,
0.06401820480823517,
0.057642560452222824,
-0.021750397980213165,
0.0386926606297493,
-0.008191511034965515,
0.0112782446667552,
-0.0459679551422596,
-0.06706473976373672,
-0.019106311723589897,
-0.19672846794128418,
-0.09418558329343796,
0.13936516642570496,
0.012547512538731098,
-0.1369955986738205,
-0.030028987675905228,
-0.14590469002723694,
0.10832275450229645,
-0.12481945008039474,
0.11925986409187317,
0.17400269210338593,
0.01935810223221779,
-0.025207897648215294,
-0.04210619628429413,
0.07347141206264496,
0.12171027064323425,
-0.042778220027685165,
-0.12247076630592346
] |
null | null | transformers |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
should probably proofread and complete it, then remove this comment. -->
# rubert-base-cased-conversational_ner-v3
This model is a fine-tuned version of [DeepPavlov/rubert-base-cased-conversational](https://huggingface.co/DeepPavlov/rubert-base-cased-conversational) on an unknown dataset.
It achieves the following results on the evaluation set:
- Loss: 0.1204
- Precision: 0.7484
- Recall: 0.7987
- F1: 0.7727
- Accuracy: 0.9242
## Model description
More information needed
## Intended uses & limitations
More information needed
## Training and evaluation data
More information needed
## Training procedure
### Training hyperparameters
The following hyperparameters were used during training:
- learning_rate: 2e-05
- train_batch_size: 8
- eval_batch_size: 8
- seed: 42
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
- lr_scheduler_type: linear
- num_epochs: 3
### Training results
| Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 | Accuracy |
|:-------------:|:-----:|:----:|:---------------:|:---------:|:------:|:------:|:--------:|
| No log | 1.0 | 75 | 0.2186 | 0.4860 | 0.5839 | 0.5305 | 0.8634 |
| No log | 2.0 | 150 | 0.1380 | 0.6886 | 0.7718 | 0.7278 | 0.9200 |
| No log | 3.0 | 225 | 0.1204 | 0.7484 | 0.7987 | 0.7727 | 0.9242 |
### Framework versions
- Transformers 4.33.1
- Pytorch 2.0.1
- Datasets 2.14.4
- Tokenizers 0.13.3
| {"tags": ["generated_from_trainer"], "metrics": ["precision", "recall", "f1", "accuracy"], "base_model": "DeepPavlov/rubert-base-cased-conversational", "model-index": [{"name": "rubert-base-cased-conversational_ner-v3", "results": []}]} | token-classification | Data-Lab/rubert-base-cased-conversational_ner-v3 | [
"transformers",
"pytorch",
"bert",
"token-classification",
"generated_from_trainer",
"base_model:DeepPavlov/rubert-base-cased-conversational",
"autotrain_compatible",
"endpoints_compatible",
"region:us"
] | 2023-11-11T09:28:06+00:00 | [] | [] | TAGS
#transformers #pytorch #bert #token-classification #generated_from_trainer #base_model-DeepPavlov/rubert-base-cased-conversational #autotrain_compatible #endpoints_compatible #region-us
| rubert-base-cased-conversational\_ner-v3
========================================
This model is a fine-tuned version of DeepPavlov/rubert-base-cased-conversational on an unknown dataset.
It achieves the following results on the evaluation set:
* Loss: 0.1204
* Precision: 0.7484
* Recall: 0.7987
* F1: 0.7727
* Accuracy: 0.9242
Model description
-----------------
More information needed
Intended uses & limitations
---------------------------
More information needed
Training and evaluation data
----------------------------
More information needed
Training procedure
------------------
### Training hyperparameters
The following hyperparameters were used during training:
* learning\_rate: 2e-05
* train\_batch\_size: 8
* eval\_batch\_size: 8
* seed: 42
* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
* lr\_scheduler\_type: linear
* num\_epochs: 3
### Training results
### Framework versions
* Transformers 4.33.1
* Pytorch 2.0.1
* Datasets 2.14.4
* Tokenizers 0.13.3
| [
"### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 8\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3",
"### Training results",
"### Framework versions\n\n\n* Transformers 4.33.1\n* Pytorch 2.0.1\n* Datasets 2.14.4\n* Tokenizers 0.13.3"
] | [
"TAGS\n#transformers #pytorch #bert #token-classification #generated_from_trainer #base_model-DeepPavlov/rubert-base-cased-conversational #autotrain_compatible #endpoints_compatible #region-us \n",
"### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 8\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3",
"### Training results",
"### Framework versions\n\n\n* Transformers 4.33.1\n* Pytorch 2.0.1\n* Datasets 2.14.4\n* Tokenizers 0.13.3"
] | [
66,
98,
4,
30
] | [
"passage: TAGS\n#transformers #pytorch #bert #token-classification #generated_from_trainer #base_model-DeepPavlov/rubert-base-cased-conversational #autotrain_compatible #endpoints_compatible #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 2e-05\n* train\\_batch\\_size: 8\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 3### Training results### Framework versions\n\n\n* Transformers 4.33.1\n* Pytorch 2.0.1\n* Datasets 2.14.4\n* Tokenizers 0.13.3"
] | [
-0.08190195262432098,
0.05447586625814438,
-0.002440686570480466,
0.11628147214651108,
0.1679374724626541,
0.03263964504003525,
0.11883806437253952,
0.11486274003982544,
-0.1055937111377716,
0.030039727687835693,
0.12778346240520477,
0.15249764919281006,
-0.006460582837462425,
0.11173378676176071,
-0.04227202758193016,
-0.29539909958839417,
-0.005523716099560261,
0.03802454471588135,
-0.0671694353222847,
0.12148032337427139,
0.10230392217636108,
-0.14841149747371674,
0.08552346378564835,
-0.004317214712500572,
-0.19304189085960388,
0.03820689395070076,
0.007086546625941992,
-0.05417211353778839,
0.1372523009777069,
0.017597882077097893,
0.13056688010692596,
0.000335004209773615,
0.09059111773967743,
-0.17891065776348114,
0.011375571601092815,
0.03699098899960518,
0.009460831061005592,
0.08073046803474426,
0.03615424036979675,
-0.010756987147033215,
0.12332963198423386,
-0.09133995324373245,
0.0642009824514389,
0.0058524892665445805,
-0.13174498081207275,
-0.2082662135362625,
-0.050582099705934525,
0.04703356325626373,
0.09424256533384323,
0.08747419714927673,
-0.014123248867690563,
0.13623949885368347,
-0.09386764466762543,
0.09679849445819855,
0.23674744367599487,
-0.30457696318626404,
-0.07792535424232483,
0.03502902388572693,
-0.026609156280755997,
0.07483144104480743,
-0.10787166655063629,
-0.02130235731601715,
0.055642642080783844,
0.031485415995121,
0.10381965339183807,
-0.03767560049891472,
-0.07839597761631012,
0.029269203543663025,
-0.15161794424057007,
-0.016561927273869514,
0.1426319181919098,
0.047783490270376205,
-0.02643023058772087,
-0.027858607470989227,
-0.06453907489776611,
-0.1681758463382721,
-0.036265984177589417,
-0.03302863612771034,
0.029969949275255203,
-0.042089611291885376,
-0.09186121076345444,
0.005692014005035162,
-0.09616530686616898,
-0.0738358274102211,
-0.047102224081754684,
0.19662198424339294,
0.04284754395484924,
0.010409286245703697,
-0.006920735817402601,
0.10853229463100433,
-0.02409372851252556,
-0.1351018249988556,
0.024189678952097893,
0.00660328334197402,
-0.009996552020311356,
-0.05868782103061676,
-0.06898079067468643,
-0.020573053508996964,
0.0013836818980053067,
0.13782913982868195,
-0.008364783599972725,
0.055346474051475525,
0.05409958213567734,
0.017265981063246727,
-0.07485803216695786,
0.1826404184103012,
-0.03530357778072357,
-0.030228612944483757,
-0.010178975760936737,
0.04291863366961479,
0.003774036653339863,
-0.0017802726943045855,
-0.13832417130470276,
-0.0013669426552951336,
0.10872811079025269,
0.002305113011971116,
-0.10154122114181519,
0.07683222740888596,
-0.04488220065832138,
-0.04488546773791313,
-0.0389786995947361,
-0.08824938535690308,
0.033460572361946106,
0.005005298648029566,
-0.087801493704319,
-0.01525473315268755,
-0.007287180982530117,
0.02491997554898262,
0.0002750716812442988,
0.10675269365310669,
-0.07802823185920715,
0.031915850937366486,
-0.09992306679487228,
-0.12481383234262466,
-0.00751744257286191,
-0.07268504798412323,
0.04660893976688385,
-0.10386638343334198,
-0.1511378437280655,
-0.006436092779040337,
0.05125701054930687,
-0.04018388316035271,
-0.047490037977695465,
-0.07484562695026398,
-0.053609270602464676,
0.005067473277449608,
-0.008832773193717003,
0.09597285091876984,
-0.060764703899621964,
0.08356527984142303,
0.05947573110461235,
0.08508872985839844,
-0.013843071646988392,
0.04926324263215065,
-0.09975823760032654,
0.008363367058336735,
-0.19121597707271576,
0.0516861230134964,
-0.05759407952427864,
0.058826908469200134,
-0.08233162760734558,
-0.11209140717983246,
0.0017935812938958406,
0.005003920756280422,
0.07651627063751221,
0.10235932469367981,
-0.14399103820323944,
-0.09662594646215439,
0.13732177019119263,
-0.06301393359899521,
-0.10383276641368866,
0.12315202504396439,
-0.08311209827661514,
0.05235428735613823,
0.0711912214756012,
0.1680837869644165,
0.07789289206266403,
-0.04736941307783127,
0.028540469706058502,
-0.01070091687142849,
0.055788617581129074,
-0.003901430405676365,
0.06977001577615738,
0.01974780298769474,
-0.012361954897642136,
0.01984284445643425,
-0.021988743916153908,
0.04313533008098602,
-0.11445770412683487,
-0.09202288836240768,
-0.016298562288284302,
-0.09187133610248566,
0.08995385468006134,
0.05100521445274353,
0.09783263504505157,
-0.12475454062223434,
-0.08215194940567017,
0.06917242705821991,
0.08690626919269562,
-0.05874346196651459,
0.02051645703613758,
-0.07554326206445694,
0.05480649322271347,
-0.0473666749894619,
-0.030151760205626488,
-0.1663397252559662,
-0.017071083188056946,
0.01762446202337742,
0.06006598845124245,
0.03246039152145386,
0.03500493988394737,
0.08390205353498459,
0.06658782809972763,
-0.05550964176654816,
-0.029479997232556343,
-0.04854980856180191,
0.00024239539925474674,
-0.1256459355354309,
-0.19936420023441315,
-0.048703357577323914,
-0.022638898342847824,
0.12336260080337524,
-0.20727574825286865,
0.024876942858099937,
-0.024354880675673485,
0.09232619404792786,
0.017621034756302834,
-0.0025261668488383293,
-0.051388226449489594,
0.08460351079702377,
-0.0386924184858799,
-0.037137579172849655,
0.06572272628545761,
-0.015546263195574284,
-0.08484335243701935,
-0.08615109324455261,
-0.09483518451452255,
0.17122261226177216,
0.11425600200891495,
-0.16076843440532684,
-0.08998693525791168,
-0.023701440542936325,
-0.051679354161024094,
-0.022750316187739372,
-0.017873490229249,
0.030712613835930824,
0.2144494503736496,
-0.03191206604242325,
0.13188394904136658,
-0.06043648347258568,
-0.022497816011309624,
0.01242046244442463,
-0.046267081052064896,
0.021741650998592377,
0.13015449047088623,
0.10410192608833313,
-0.11251924186944962,
0.13643696904182434,
0.13471589982509613,
-0.09567409753799438,
0.15319877862930298,
-0.02524104155600071,
-0.0778174102306366,
-0.025368554517626762,
-0.02880057878792286,
-0.014992130920290947,
0.09022927284240723,
-0.19407440721988678,
-0.03482869639992714,
0.017628181725740433,
0.015609635971486568,
0.015169313177466393,
-0.1995605230331421,
-0.0340191088616848,
0.061978984624147415,
-0.020503342151641846,
0.006415533367544413,
-0.014437740668654442,
0.006141326855868101,
0.10521061718463898,
0.022614430636167526,
-0.09748883545398712,
0.02874850668013096,
-0.005709274206310511,
-0.0761827901005745,
0.1963021457195282,
-0.08025840669870377,
-0.11670438945293427,
-0.10948856174945831,
-0.10781038552522659,
-0.06786744296550751,
0.03397778794169426,
0.05957634001970291,
-0.11369805037975311,
-0.019407961517572403,
-0.05379067361354828,
0.053041309118270874,
-0.007536178920418024,
0.05349118262529373,
0.03627312555909157,
-0.005408966448158026,
0.049366746097803116,
-0.0854964628815651,
-0.01381395198404789,
-0.07239893078804016,
-0.07282933592796326,
0.041930049657821655,
0.01915931887924671,
0.10623268038034439,
0.1488683521747589,
-0.02335665188729763,
0.025856032967567444,
-0.03521856293082237,
0.24775484204292297,
-0.06000528484582901,
-0.04747046157717705,
0.1301591843366623,
-0.025957059115171432,
0.024466445669531822,
0.11773446202278137,
0.06383867561817169,
-0.08548596501350403,
0.020411096513271332,
0.03900904580950737,
-0.03195144236087799,
-0.1812882423400879,
-0.049429263919591904,
-0.05529558286070824,
-0.011881573125720024,
0.10259784013032913,
0.005529044661670923,
0.017484335228800774,
0.06997977942228317,
0.04338904470205307,
0.05553677678108215,
-0.03905220329761505,
0.07324078679084778,
0.12405981868505478,
0.03837820142507553,
0.13074705004692078,
-0.025707775726914406,
-0.0955367386341095,
0.02971273846924305,
-0.03344827517867088,
0.20538395643234253,
0.02908152900636196,
0.10866887122392654,
0.042703598737716675,
0.17524679005146027,
0.0033947632182389498,
0.07041186094284058,
-0.004457014612853527,
-0.05983184278011322,
-0.015718670561909676,
-0.04038344323635101,
-0.05275464057922363,
0.03872526064515114,
-0.039168041199445724,
0.07245269417762756,
-0.13833411037921906,
0.017932510003447533,
0.05922266095876694,
0.251191645860672,
0.05983440577983856,
-0.31210267543792725,
-0.10868941992521286,
0.009421958588063717,
-0.041982825845479965,
-0.008424820378422737,
0.026612037792801857,
0.08871429413557053,
-0.09281183034181595,
0.011295952834188938,
-0.05189993232488632,
0.08417047560214996,
-0.039981525391340256,
0.06260889768600464,
0.05175028741359711,
0.09088225662708282,
-0.0029028928838670254,
0.08489805459976196,
-0.2692480683326721,
0.2772454023361206,
0.0006022904999554157,
0.049814775586128235,
-0.06872783601284027,
-0.00859436672180891,
0.02871200256049633,
0.06405022740364075,
0.04465200752019882,
-0.01715453341603279,
-0.03573431074619293,
-0.21197395026683807,
-0.041048530489206314,
0.033697258681058884,
0.1164267286658287,
-0.06739306449890137,
0.11587607115507126,
-0.024310266599059105,
0.005748579278588295,
0.07978055626153946,
0.011561278253793716,
-0.05623805522918701,
-0.07698240876197815,
-0.019611801952123642,
0.00006482884055003524,
-0.026254231110215187,
-0.054749391973018646,
-0.11747655272483826,
-0.1056840643286705,
0.16806283593177795,
0.00477885827422142,
-0.01987900584936142,
-0.10737571865320206,
0.0991763100028038,
0.06324852257966995,
-0.08507969230413437,
0.04483821988105774,
0.027406251057982445,
0.08248405158519745,
0.047733426094055176,
-0.0700763389468193,
0.12597474455833435,
-0.0699014961719513,
-0.1608259081840515,
-0.05224830284714699,
0.1233845129609108,
0.04570460692048073,
0.06402764469385147,
-0.013638525269925594,
0.005421459674835205,
-0.028393680229783058,
-0.07500230520963669,
0.03221125900745392,
-0.01231951080262661,
0.050709497183561325,
0.03779212757945061,
-0.06125183030962944,
0.04928216338157654,
-0.0767090767621994,
0.00003709658994921483,
0.21528661251068115,
0.2552542984485626,
-0.09784939140081406,
0.0009546502842567861,
0.00696446793153882,
-0.053113240748643875,
-0.17933389544487,
0.055489178746938705,
0.07964292168617249,
0.01865292340517044,
0.022302046418190002,
-0.19221733510494232,
0.12483297288417816,
0.08445875346660614,
0.002429539803415537,
0.06633327901363373,
-0.29777345061302185,
-0.12710356712341309,
0.14694668352603912,
0.12483961135149002,
0.1472674310207367,
-0.11160305142402649,
-0.0024387536104768515,
-0.02187129110097885,
-0.1052493155002594,
0.07439135015010834,
-0.06962323188781738,
0.12793637812137604,
-0.017249274998903275,
0.10269954800605774,
0.020041678100824356,
-0.038360197097063065,
0.10880842804908752,
0.009859341196715832,
0.10490390658378601,
-0.05860837921500206,
-0.054051246494054794,
0.0010768702486529946,
-0.040050506591796875,
-0.004600516986101866,
-0.03677082061767578,
0.025423895567655563,
-0.11590025573968887,
-0.03238300606608391,
-0.06663894653320312,
0.028028834611177444,
-0.02070591226220131,
-0.08917516469955444,
-0.03299437835812569,
0.02180486172437668,
0.04842726141214371,
-0.004841417074203491,
0.15231281518936157,
0.0006346578011289239,
0.15109601616859436,
0.09815532714128494,
0.08967388421297073,
-0.0652989000082016,
-0.043273087590932846,
-0.003274571383371949,
-0.008686420507729053,
0.06620658934116364,
-0.11893116682767868,
0.03337334841489792,
0.1432551145553589,
0.017522014677524567,
0.13904808461666107,
0.09154439717531204,
-0.009099852293729782,
0.011664832942187786,
0.056286267936229706,
-0.17539747059345245,
-0.06191791966557503,
-0.025700975209474564,
-0.06564562022686005,
-0.11083304136991501,
0.07131979614496231,
0.10789477080106735,
-0.07861106842756271,
-0.013720374554395676,
-0.011862323619425297,
-0.014032747596502304,
-0.077423095703125,
0.18214525282382965,
0.05926639586687088,
0.047252047806978226,
-0.0934324637055397,
0.06525751948356628,
0.020920846611261368,
-0.03864532336592674,
0.015978535637259483,
0.06319563090801239,
-0.07456392794847488,
-0.040160760283470154,
0.06114807724952698,
0.2129012942314148,
-0.046973370015621185,
-0.01793195679783821,
-0.14948610961437225,
-0.11970643699169159,
0.07346980273723602,
0.15347431600093842,
0.12450402230024338,
-0.007251107133924961,
-0.07364115118980408,
0.03962366655468941,
-0.11166713386774063,
0.08283331245183945,
0.05616050213575363,
0.06642534583806992,
-0.15660180151462555,
0.1685485690832138,
-0.023730402812361717,
0.04141519218683243,
-0.033573634922504425,
0.0018929815851151943,
-0.12339584529399872,
0.023517848923802376,
-0.12665219604969025,
-0.06797590851783752,
-0.022773660719394684,
0.010739893652498722,
0.016708584502339363,
-0.0635688379406929,
-0.06592348217964172,
0.008702847175300121,
-0.12341725081205368,
-0.006306534633040428,
0.034561946988105774,
0.048439688980579376,
-0.09266918897628784,
-0.03070651926100254,
0.021169230341911316,
-0.06662753224372864,
0.07585742324590683,
0.07430699467658997,
0.03268229588866234,
0.058887504041194916,
-0.13697710633277893,
0.001352441031485796,
0.0743921622633934,
0.010852052830159664,
0.0773802250623703,
-0.07731568068265915,
-0.00612944969907403,
-0.020948879420757294,
0.06222027912735939,
0.014056243002414703,
0.08129046112298965,
-0.1167202964425087,
0.006600827444344759,
-0.026618439704179764,
-0.09380824118852615,
-0.055837761610746384,
0.023355955258011818,
0.07218752056360245,
0.019183745607733727,
0.18560294806957245,
-0.0927790105342865,
0.05352408438920975,
-0.20408369600772858,
-0.007211667485535145,
-0.007252225186675787,
-0.10336494445800781,
-0.11167540401220322,
-0.086428202688694,
0.06687033921480179,
-0.058758191764354706,
0.12649807333946228,
0.02935049496591091,
0.03614232689142227,
0.025548279285430908,
-0.05148879438638687,
0.06811730563640594,
0.03758624196052551,
0.21519522368907928,
0.05714227259159088,
-0.04707631468772888,
0.049672093242406845,
0.06856215745210648,
0.12938927114009857,
0.13153250515460968,
0.17421148717403412,
0.15102578699588776,
-0.027006713673472404,
0.08798180520534515,
0.05516279861330986,
-0.05136692151427269,
-0.15208888053894043,
0.010543162003159523,
-0.024224011227488518,
0.08629798889160156,
-0.029076704755425453,
0.20364847779273987,
0.08002472668886185,
-0.16114400327205658,
0.02556850202381611,
-0.05247238278388977,
-0.08938677608966827,
-0.11347340792417526,
-0.041069164872169495,
-0.09471763670444489,
-0.18116697669029236,
0.012181799858808517,
-0.12530121207237244,
0.0008925576694309711,
0.09249138087034225,
0.022203052416443825,
-0.020594753324985504,
0.1752358227968216,
0.01455666497349739,
0.03074038028717041,
0.06333969533443451,
-0.005276286043226719,
-0.028950383886694908,
-0.09696881473064423,
-0.08308552950620651,
-0.022130513563752174,
-0.03438780456781387,
0.02329403907060623,
-0.07673180848360062,
-0.06953373551368713,
0.013563987798988819,
-0.0088594239205122,
-0.11374892294406891,
0.01821196638047695,
0.007872510701417923,
0.053823672235012054,
0.04874645546078682,
0.0005749405827373266,
0.002930818125605583,
-0.02470848709344864,
0.23255418241024017,
-0.09180621802806854,
-0.04470079392194748,
-0.10902994126081467,
0.26850050687789917,
0.04608124867081642,
0.03941782936453819,
0.011178771033883095,
-0.06966008991003036,
-0.0015513971447944641,
0.22675549983978271,
0.2116154283285141,
-0.08971070498228073,
0.0013126368867233396,
0.008371671661734581,
-0.0023941006511449814,
-0.022105228155851364,
0.09833008050918579,
0.12607859075069427,
0.0014191913651302457,
-0.09323406964540482,
-0.04712700471282005,
-0.04122393578290939,
-0.005217273719608784,
-0.045115016400814056,
0.05421142652630806,
0.0827547237277031,
0.00989935640245676,
-0.05215158313512802,
0.049829497933387756,
-0.07469704747200012,
-0.0801507979631424,
0.055555377155542374,
-0.22061359882354736,
-0.16565369069576263,
-0.015996867790818214,
0.0913049578666687,
0.02575862966477871,
0.09800075739622116,
-0.03783738613128662,
-0.018565315753221512,
0.05836862698197365,
-0.0012639042688533664,
-0.07101722061634064,
-0.109811931848526,
0.12235846370458603,
-0.0975845456123352,
0.18064312636852264,
-0.05172501504421234,
0.06180107966065407,
0.12808692455291748,
0.05934745445847511,
-0.04546032100915909,
0.05086575075984001,
0.05093273147940636,
-0.09784616529941559,
0.00322239613160491,
0.10015995055437088,
-0.03966321051120758,
0.10683360695838928,
0.05164952203631401,
-0.1845652461051941,
0.008831529878079891,
-0.06013009697198868,
-0.049194980412721634,
-0.03990262746810913,
-0.0332675538957119,
-0.06211179122328758,
0.1282070279121399,
0.22979764640331268,
-0.0365724079310894,
-0.002357647754251957,
-0.05900104343891144,
0.02137194201350212,
0.07040923833847046,
0.04616151750087738,
-0.07658663392066956,
-0.24620702862739563,
0.003934520296752453,
0.06657172739505768,
-0.03316867724061012,
-0.2186877578496933,
-0.10232356935739517,
0.010035146027803421,
-0.05124272406101227,
-0.07723511010408401,
0.08411557227373123,
0.07541771233081818,
0.05696278437972069,
-0.055649224668741226,
-0.10101325809955597,
-0.0665498748421669,
0.15502455830574036,
-0.1473942995071411,
-0.09887029975652695
] |
null | null | transformers |
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
should probably proofread and complete it, then remove this comment. -->
# detr-r50-mist1-bg-2ah-6l
This model is a fine-tuned version of [facebook/detr-resnet-50](https://huggingface.co/facebook/detr-resnet-50) on an unknown dataset.
It achieves the following results on the evaluation set:
- Loss: 3.9051
## Model description
More information needed
## Intended uses & limitations
More information needed
## Training and evaluation data
More information needed
## Training procedure
### Training hyperparameters
The following hyperparameters were used during training:
- learning_rate: 1e-05
- train_batch_size: 4
- eval_batch_size: 8
- seed: 42
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
- lr_scheduler_type: linear
- num_epochs: 25
- mixed_precision_training: Native AMP
### Training results
| Training Loss | Epoch | Step | Validation Loss |
|:-------------:|:-----:|:----:|:---------------:|
| 4.6721 | 1.0 | 115 | 5.0032 |
| 4.4438 | 2.0 | 230 | 4.6797 |
| 4.2953 | 3.0 | 345 | 4.7027 |
| 4.3899 | 4.0 | 460 | 5.4316 |
| 4.3184 | 5.0 | 575 | 4.4125 |
| 4.2749 | 6.0 | 690 | 4.1611 |
| 4.2153 | 7.0 | 805 | 4.6723 |
| 4.0788 | 8.0 | 920 | 4.1266 |
| 4.0752 | 9.0 | 1035 | 4.0529 |
| 4.0073 | 10.0 | 1150 | 4.4483 |
| 4.011 | 11.0 | 1265 | 4.2002 |
| 3.9993 | 12.0 | 1380 | 4.2450 |
| 4.0028 | 13.0 | 1495 | 4.1703 |
| 3.9572 | 14.0 | 1610 | 4.1861 |
| 3.9009 | 15.0 | 1725 | 4.0285 |
| 3.9173 | 16.0 | 1840 | 4.0673 |
| 3.8884 | 17.0 | 1955 | 3.9875 |
| 3.8415 | 18.0 | 2070 | 4.1062 |
| 3.8132 | 19.0 | 2185 | 4.0494 |
| 3.8297 | 20.0 | 2300 | 4.0119 |
| 3.8262 | 21.0 | 2415 | 3.9538 |
| 3.8045 | 22.0 | 2530 | 3.9500 |
| 3.8067 | 23.0 | 2645 | 3.9264 |
| 3.7651 | 24.0 | 2760 | 3.8820 |
| 3.756 | 25.0 | 2875 | 3.9051 |
### Framework versions
- Transformers 4.35.0
- Pytorch 2.0.0
- Datasets 2.1.0
- Tokenizers 0.14.1
| {"license": "apache-2.0", "tags": ["generated_from_trainer"], "base_model": "facebook/detr-resnet-50", "model-index": [{"name": "detr-r50-mist1-bg-2ah-6l", "results": []}]} | object-detection | polejowska/detr-r50-mist1-bg-2ah-6l | [
"transformers",
"tensorboard",
"safetensors",
"detr",
"object-detection",
"generated_from_trainer",
"base_model:facebook/detr-resnet-50",
"license:apache-2.0",
"endpoints_compatible",
"region:us"
] | 2023-11-11T09:34:10+00:00 | [] | [] | TAGS
#transformers #tensorboard #safetensors #detr #object-detection #generated_from_trainer #base_model-facebook/detr-resnet-50 #license-apache-2.0 #endpoints_compatible #region-us
| detr-r50-mist1-bg-2ah-6l
========================
This model is a fine-tuned version of facebook/detr-resnet-50 on an unknown dataset.
It achieves the following results on the evaluation set:
* Loss: 3.9051
Model description
-----------------
More information needed
Intended uses & limitations
---------------------------
More information needed
Training and evaluation data
----------------------------
More information needed
Training procedure
------------------
### Training hyperparameters
The following hyperparameters were used during training:
* learning\_rate: 1e-05
* train\_batch\_size: 4
* eval\_batch\_size: 8
* seed: 42
* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
* lr\_scheduler\_type: linear
* num\_epochs: 25
* mixed\_precision\_training: Native AMP
### Training results
### Framework versions
* Transformers 4.35.0
* Pytorch 2.0.0
* Datasets 2.1.0
* Tokenizers 0.14.1
| [
"### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 1e-05\n* train\\_batch\\_size: 4\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 25\n* mixed\\_precision\\_training: Native AMP",
"### Training results",
"### Framework versions\n\n\n* Transformers 4.35.0\n* Pytorch 2.0.0\n* Datasets 2.1.0\n* Tokenizers 0.14.1"
] | [
"TAGS\n#transformers #tensorboard #safetensors #detr #object-detection #generated_from_trainer #base_model-facebook/detr-resnet-50 #license-apache-2.0 #endpoints_compatible #region-us \n",
"### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 1e-05\n* train\\_batch\\_size: 4\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 25\n* mixed\\_precision\\_training: Native AMP",
"### Training results",
"### Framework versions\n\n\n* Transformers 4.35.0\n* Pytorch 2.0.0\n* Datasets 2.1.0\n* Tokenizers 0.14.1"
] | [
62,
113,
4,
30
] | [
"passage: TAGS\n#transformers #tensorboard #safetensors #detr #object-detection #generated_from_trainer #base_model-facebook/detr-resnet-50 #license-apache-2.0 #endpoints_compatible #region-us \n### Training hyperparameters\n\n\nThe following hyperparameters were used during training:\n\n\n* learning\\_rate: 1e-05\n* train\\_batch\\_size: 4\n* eval\\_batch\\_size: 8\n* seed: 42\n* optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08\n* lr\\_scheduler\\_type: linear\n* num\\_epochs: 25\n* mixed\\_precision\\_training: Native AMP### Training results### Framework versions\n\n\n* Transformers 4.35.0\n* Pytorch 2.0.0\n* Datasets 2.1.0\n* Tokenizers 0.14.1"
] | [
-0.10766308009624481,
0.06781864911317825,
-0.0023063495755195618,
0.08277326077222824,
0.1359662562608719,
-0.018529871478676796,
0.118031345307827,
0.1002747043967247,
-0.06290078163146973,
0.049676474183797836,
0.11621057242155075,
0.10211821645498276,
0.021908843889832497,
0.12072243541479111,
-0.05408109351992607,
-0.18698842823505402,
0.028373820707201958,
0.025653544813394547,
-0.09537002444267273,
0.12059669941663742,
0.09394725412130356,
-0.12682801485061646,
0.09481850266456604,
-0.00016383569163735956,
-0.16843311488628387,
0.04070224612951279,
0.01633843034505844,
-0.05356370285153389,
0.13579696416854858,
0.028989138081669807,
0.13350214064121246,
0.022775327786803246,
0.08293259143829346,
-0.21878501772880554,
0.01561820600181818,
0.09345318377017975,
-0.013779687695205212,
0.06552539765834808,
0.07351858168840408,
-0.01068735122680664,
0.1170910894870758,
-0.10688231885433197,
0.053041670471429825,
0.023787565529346466,
-0.11480213701725006,
-0.2535163164138794,
-0.08501565456390381,
0.06089944392442703,
0.08838777244091034,
0.11499781906604767,
-0.01575102098286152,
0.13734227418899536,
-0.05138692632317543,
0.09300243854522705,
0.2410566806793213,
-0.3014010787010193,
-0.062241412699222565,
0.05127536505460739,
0.04721212014555931,
0.07567209005355835,
-0.10163750499486923,
-0.022020701318979263,
0.05191885679960251,
0.04867183417081833,
0.1311749666929245,
-0.027484150603413582,
-0.030900586396455765,
0.007262543309479952,
-0.16083058714866638,
-0.016480183228850365,
0.13470089435577393,
0.08493135869503021,
-0.03380090743303299,
-0.0303029902279377,
-0.07654279470443726,
-0.11551624536514282,
-0.04146399721503258,
-0.04195767268538475,
0.05016154795885086,
-0.008662375621497631,
-0.10037519037723541,
-0.01752486079931259,
-0.10644032061100006,
-0.07238836586475372,
-0.057907912880182266,
0.09070875495672226,
0.041783690452575684,
0.009451431222259998,
-0.04074807092547417,
0.08476626127958298,
-0.015869079157710075,
-0.11937607824802399,
0.008070863783359528,
0.015102613717317581,
-0.025386596098542213,
-0.051561448723077774,
-0.05972885340452194,
-0.0940992459654808,
0.04745678976178169,
0.13188065588474274,
-0.10625599324703217,
0.06521055847406387,
-0.021500468254089355,
0.0549640916287899,
-0.10827239602804184,
0.13820567727088928,
-0.09323206543922424,
-0.02206595428287983,
0.0011005594860762358,
0.05878355726599693,
0.030737195163965225,
0.009686201810836792,
-0.08089100569486618,
0.03084951639175415,
0.13323284685611725,
0.00869736261665821,
-0.04801873490214348,
0.06354466080665588,
-0.032593030482530594,
-0.0059133670292794704,
-0.006716061383485794,
-0.08491387963294983,
0.012458342127501965,
0.019497808068990707,
-0.06717491894960403,
-0.04920139163732529,
0.026143798604607582,
0.016375210136175156,
-0.004759005270898342,
0.06177407130599022,
-0.08431513607501984,
0.016017667949199677,
-0.07100622355937958,
-0.12548071146011353,
0.027333736419677734,
-0.047800056636333466,
0.018371885642409325,
-0.13714897632598877,
-0.164652481675148,
-0.02357831783592701,
0.05719520151615143,
-0.027282828465104103,
-0.002288958290591836,
-0.04930032417178154,
-0.09185229986906052,
-0.0014436859637498856,
-0.021694881841540337,
0.08678168058395386,
-0.07257258147001266,
0.08238966017961502,
0.025304527953267097,
0.05913492292165756,
-0.03958694264292717,
0.034775830805301666,
-0.10908015072345734,
0.04423728212714195,
-0.17728014290332794,
0.05255088210105896,
-0.0787896066904068,
0.0803413912653923,
-0.12263387441635132,
-0.07300259917974472,
-0.02918710745871067,
-0.0012791408225893974,
0.09211723506450653,
0.10256904363632202,
-0.17731651663780212,
-0.06754878163337708,
0.16947540640830994,
-0.09939353913068771,
-0.14042894542217255,
0.10784433037042618,
-0.054416950792074203,
0.026936501264572144,
0.06215353682637215,
0.22314587235450745,
0.03602924570441246,
-0.10233955085277557,
-0.007477757520973682,
0.0023254060652107,
0.016631649807095528,
-0.05016350373625755,
0.05663113296031952,
-0.0010226244339719415,
0.002370526548475027,
-0.0003219785576220602,
-0.06176227331161499,
0.09305186569690704,
-0.08798205852508545,
-0.07909282296895981,
-0.05375562980771065,
-0.1098279282450676,
0.009549048729240894,
0.05629982426762581,
0.06157396361231804,
-0.10470845550298691,
-0.0828828290104866,
0.06725728511810303,
0.07867921888828278,
-0.06916941702365875,
0.031430989503860474,
-0.08918798714876175,
0.08460324257612228,
-0.06087542697787285,
-0.01355285756289959,
-0.18255667388439178,
-0.05992065742611885,
-0.005136373918503523,
-0.04252350702881813,
-0.0026957308873534203,
0.007333782035857439,
0.08136670291423798,
0.04973863810300827,
-0.05525590479373932,
-0.04504444822669029,
-0.028510097414255142,
0.025767454877495766,
-0.10865741968154907,
-0.2082042098045349,
-0.013311048969626427,
-0.03276456892490387,
0.0907176285982132,
-0.23706014454364777,
0.0443766713142395,
0.028496557846665382,
0.11670804023742676,
0.03898966312408447,
-0.006308534648269415,
-0.04567461460828781,
0.053212735801935196,
-0.027568934485316277,
-0.07888394594192505,
0.05272744223475456,
0.019088927656412125,
-0.10215582698583603,
-0.018946582451462746,
-0.10762286186218262,
0.1893874853849411,
0.13278819620609283,
-0.10261201858520508,
-0.08072090148925781,
0.025460081174969673,
-0.05524217337369919,
-0.03341459482908249,
-0.028584958985447884,
0.020617591217160225,
0.1306515783071518,
0.005315614398568869,
0.1326257288455963,
-0.07421528548002243,
-0.01712382771074772,
0.02738974057137966,
-0.03910353034734726,
-0.0014310763217508793,
0.11753558367490768,
0.09184499084949493,
-0.1413080245256424,
0.14632882177829742,
0.17755548655986786,
-0.07451245933771133,
0.08940663188695908,
-0.056968431919813156,
-0.07499979436397552,
-0.018299074843525887,
0.026607219129800797,
-0.0012515401467680931,
0.12697188556194305,
-0.10296008735895157,
0.012432502582669258,
-0.0061985705979168415,
0.021369168534874916,
0.027509234845638275,
-0.20026829838752747,
-0.029618781059980392,
0.03110686130821705,
-0.04581291973590851,
-0.0125821428373456,
-0.018777472898364067,
0.00307191233150661,
0.09546244889497757,
0.0031770654022693634,
-0.11004173010587692,
0.033585257828235626,
-0.013358968310058117,
-0.08903992176055908,
0.21911367774009705,
-0.07679075747728348,
-0.17282474040985107,
-0.08726014941930771,
-0.029483841732144356,
-0.03617069125175476,
0.005988767836242914,
0.06457986682653427,
-0.10041476786136627,
-0.025364842265844345,
-0.1125175878405571,
0.022765373811125755,
0.020557422190904617,
0.023450667038559914,
0.018025973811745644,
0.02158685214817524,
0.12084697186946869,
-0.09714356064796448,
0.00010445888619869947,
-0.05328475311398506,
-0.061338379979133606,
0.015390264801681042,
0.033732153475284576,
0.1136787086725235,
0.1342882513999939,
-0.010692926123738289,
0.0034820260480046272,
-0.02135036326944828,
0.22705449163913727,
-0.06796760857105255,
-0.025966022163629532,
0.12172432988882065,
0.00345014501363039,
0.042559076100587845,
0.13083435595035553,
0.05001232028007507,
-0.10141566395759583,
0.019534535706043243,
0.0726674497127533,
-0.023733342066407204,
-0.21195633709430695,
-0.04218987748026848,
-0.02686482109129429,
-0.005672778002917767,
0.08724132925271988,
0.0439726747572422,
0.029967600479722023,
0.05174284428358078,
0.045873235911130905,
0.016296979039907455,
-0.010431096889078617,
0.06291559338569641,
0.09986141324043274,
0.0344192273914814,
0.12513931095600128,
-0.057572707533836365,
-0.05238855257630348,
0.02537759207189083,
-0.018825717270374298,
0.2379375547170639,
0.008753233589231968,
0.07896512746810913,
0.07777762413024902,
0.18584735691547394,
-0.01077354233711958,
0.03304719924926758,
-0.0017701018368825316,
-0.058006104081869125,
0.0008672467083670199,
-0.040733978152275085,
-0.0070494418032467365,
0.034104593098163605,
-0.0789639949798584,
0.04939456284046173,
-0.11015170812606812,
0.010624915361404419,
0.06530439853668213,
0.2757117748260498,
0.05644599720835686,
-0.3245369493961334,
-0.0889277309179306,
0.001067117671482265,
-0.04165787622332573,
-0.014294820837676525,
0.0430714450776577,
0.14181287586688995,
-0.04766257852315903,
0.03803985193371773,
-0.07846034318208694,
0.08878907561302185,
-0.01788308657705784,
0.05288449674844742,
0.06883160024881363,
0.07846339792013168,
-0.002697570249438286,
0.0515022911131382,
-0.28851866722106934,
0.289354532957077,
0.007645527366548777,
0.07189285755157471,
-0.03315256908535957,
-0.018942033872008324,
0.03141937032341957,
0.0909869447350502,
0.0970458984375,
-0.011795048601925373,
-0.1125335618853569,
-0.1748148649930954,
-0.04239920899271965,
0.0412721149623394,
0.0813683271408081,
-0.011528868228197098,
0.09619148820638657,
-0.02340536378324032,
0.008323593065142632,
0.09243672341108322,
0.008972209878265858,
-0.1243119165301323,
-0.07700001448392868,
-0.04828597232699394,
0.03728422895073891,
-0.029218457639217377,
-0.09969490021467209,
-0.08815142512321472,
-0.09546161442995071,
0.13762611150741577,
-0.04515227675437927,
-0.009584086947143078,
-0.09432969242334366,
0.08992564678192139,
0.05934371426701546,
-0.07817882299423218,
0.034845877438783646,
0.027826763689517975,
0.07373328506946564,
0.03863915055990219,
-0.08961982280015945,
0.1402861624956131,
-0.08385732024908066,
-0.13992170989513397,
-0.05153607577085495,
0.09662232547998428,
0.063479945063591,
0.03560226410627365,
-0.00038951338501647115,
0.007313915528357029,
-0.009910719469189644,
-0.06716493517160416,
0.042577311396598816,
-0.017239784821867943,
0.0363653264939785,
0.02131054177880287,
-0.032190728932619095,
-0.012801249511539936,
-0.06500469893217087,
-0.02077852189540863,
0.146804541349411,
0.24451994895935059,
-0.07935453206300735,
-0.00601543765515089,
0.06273087114095688,
-0.056276869028806686,
-0.20154094696044922,
0.07964256405830383,
0.022617734968662262,
-0.007095574401319027,
0.06624354422092438,
-0.15505194664001465,
0.11311722546815872,
0.10095500200986862,
-0.023455247282981873,
0.0906086266040802,
-0.3222257196903229,
-0.1192869022488594,
0.15266531705856323,
0.14416560530662537,
0.1007787212729454,
-0.15475031733512878,
-0.03691371530294418,
-0.029601391404867172,
-0.09711677581071854,
0.09304414689540863,
-0.1838284581899643,
0.08813422173261642,
0.005914515815675259,
0.041932981461286545,
0.001037625945173204,
-0.06031212955713272,
0.11693218350410461,
0.004346939269453287,
0.1317465603351593,
-0.05938498303294182,
0.02567313425242901,
0.05609552934765816,
-0.055168554186820984,
0.012667171657085419,
-0.07446721196174622,
0.05056450888514519,
-0.014481394551694393,
-0.025777237489819527,
-0.08750102669000626,
0.059262119233608246,
-0.015676390379667282,
-0.052920494228601456,
-0.0642441138625145,
0.05447981879115105,
0.053603339940309525,
-0.004208787344396114,
0.18524722754955292,
0.004828336648643017,
0.16255304217338562,
0.1264379471540451,
0.04932107403874397,
-0.05740417167544365,
-0.06406663358211517,
-0.0020775343291461468,
-0.032340142875909805,
0.06861961632966995,
-0.14792250096797943,
0.04566235840320587,
0.12129194289445877,
0.002218213863670826,
0.13603097200393677,
0.07160386443138123,
-0.0613027960062027,
0.01333893183618784,
0.057680707424879074,
-0.12990668416023254,
-0.1608521193265915,
-0.000018505830666981637,
-0.018617568537592888,
-0.08154187351465225,
0.08832353353500366,
0.12989741563796997,
-0.08235257863998413,
0.01282444130629301,
-0.01687791384756565,
0.02877478115260601,
-0.07193462550640106,
0.17936469614505768,
0.07429596036672592,
0.038980815559625626,
-0.08073440939188004,
0.11595053225755692,
0.03649015724658966,
-0.10925331711769104,
0.03032088652253151,
0.03373126685619354,
-0.08787066489458084,
-0.05006104335188866,
0.04915519803762436,
0.19493773579597473,
-0.0503729023039341,
-0.08299916237592697,
-0.15077537298202515,
-0.12708711624145508,
0.07377687096595764,
0.1949770450592041,
0.08986613154411316,
0.018821345642209053,
-0.01404758170247078,
0.003693819511681795,
-0.1071256697177887,
0.09118428081274033,
0.03168482705950737,
0.06221780180931091,
-0.17296728491783142,
0.11329816281795502,
0.013761772774159908,
0.02090439386665821,
-0.025624558329582214,
0.04197058826684952,
-0.12244795262813568,
0.011471322737634182,
-0.1978752315044403,
-0.015333377756178379,
-0.046833500266075134,
-0.00015159572649281472,
0.009234695695340633,
-0.054575856775045395,
-0.08349718153476715,
0.03380770981311798,
-0.1001250371336937,
-0.02578732930123806,
0.04231434687972069,
0.04676064848899841,
-0.14575743675231934,
-0.035537559539079666,
0.017375152558088303,
-0.05678197741508484,
0.06117941811680794,
0.03285132348537445,
0.017266934737563133,
0.0618586391210556,
-0.19168932735919952,
0.006632185075432062,
0.06527413427829742,
0.001690302393399179,
0.043853819370269775,
-0.08625978231430054,
-0.008052760735154152,
0.004172181710600853,
0.03257434815168381,
0.006535650230944157,
0.06278207153081894,
-0.11369875073432922,
-0.016502385959029198,
-0.04099775478243828,
-0.03921709954738617,
-0.05354190617799759,
0.024393519386649132,
0.08458062261343002,
0.04203326627612114,
0.19074057042598724,
-0.10647501796483994,
0.010444359853863716,
-0.20635394752025604,
0.003844405524432659,
-0.00340629112906754,
-0.08341989666223526,
-0.05102720856666565,
-0.04625504091382027,
0.0651707649230957,
-0.06738551706075668,
0.14450132846832275,
-0.004887583199888468,
0.03290436416864395,
0.05291638523340225,
-0.07175175100564957,
0.04187356308102608,
0.04216895252466202,
0.22115376591682434,
0.009825609624385834,
-0.043234825134277344,
0.04596235975623131,
0.03216385096311569,
0.11865943670272827,
0.1085924357175827,
0.1857672780752182,
0.22921065986156464,
-0.03882172331213951,
0.10447093844413757,
0.06343219429254532,
-0.0791187733411789,
-0.0865856260061264,
0.07556083053350449,
-0.04535726457834244,
0.0930216833949089,
-0.021940061822533607,
0.20531566441059113,
0.1202566847205162,
-0.15123428404331207,
0.026601368561387062,
-0.0629238411784172,
-0.06743231415748596,
-0.0924672782421112,
-0.04903563857078552,
-0.09116369485855103,
-0.18024246394634247,
-0.0058557321317493916,
-0.09500966966152191,
-0.008992322720587254,
0.10898932069540024,
0.01364309061318636,
-0.02398458682000637,
0.1791563481092453,
0.0357782207429409,
0.01343538612127304,
0.059613652527332306,
0.004427300300449133,
-0.06666845083236694,
-0.05878870561718941,
-0.07957154512405396,
0.043313972651958466,
-0.018562069162726402,
0.012566757388412952,
-0.05122320353984833,
-0.04943745583295822,
0.06635531038045883,
-0.012633544392883778,
-0.0917767882347107,
0.012514756061136723,
0.026203453540802002,
0.02386927790939808,
0.04267560690641403,
0.03704742342233658,
-0.00029853571322746575,
-0.008594748564064503,
0.2576434910297394,
-0.07971680164337158,
-0.048764973878860474,
-0.11125769466161728,
0.19736774265766144,
0.036844197660684586,
0.016504045575857162,
-0.007932844571769238,
-0.10546336323022842,
0.013635838404297829,
0.19556429982185364,
0.1849740892648697,
-0.09153542667627335,
0.0032765723299235106,
-0.016759539023041725,
-0.013380172662436962,
-0.0653071179986,
0.06900098919868469,
0.1309661567211151,
0.027884794399142265,
-0.08720892667770386,
-0.05231061205267906,
-0.04609844833612442,
-0.00012234771565999836,
-0.03686448559165001,
0.05422762408852577,
0.042709775269031525,
0.022214645519852638,
-0.05615486949682236,
0.08112803101539612,
-0.05927001312375069,
-0.12321140617132187,
0.05624645948410034,
-0.16084502637386322,
-0.14639726281166077,
-0.027735020965337753,
0.0958528146147728,
0.004306714050471783,
0.054334111511707306,
-0.03445803001523018,
0.01709028147161007,
0.059606991708278656,
-0.014456207863986492,
-0.06538919359445572,
-0.11993047595024109,
0.06342731416225433,
-0.07458699494600296,
0.2295452356338501,
-0.043904054909944534,
0.018557576462626457,
0.1416466385126114,
0.048434045165777206,
-0.08669806271791458,
0.08868538588285446,
0.0408167764544487,
-0.06183859705924988,
0.00980593916028738,
0.07648757100105286,
-0.03463544324040413,
0.14272993803024292,
0.06852022558450699,
-0.1394290328025818,
0.012063227593898773,
-0.08205077797174454,
-0.06619229167699814,
-0.07169081270694733,
-0.04427432641386986,
-0.06243225187063217,
0.11053448170423508,
0.17166613042354584,
-0.042894430458545685,
0.030321909114718437,
-0.06277276575565338,
0.030627842992544174,
0.06259915232658386,
0.05290945619344711,
-0.012760760262608528,
-0.230027973651886,
0.04947889596223831,
0.0470426082611084,
-0.004622625652700663,
-0.263639897108078,
-0.09064938127994537,
0.017812533304095268,
-0.06395132094621658,
-0.06448479741811752,
0.08217081427574158,
0.10521327704191208,
0.06223049759864807,
-0.06167982518672943,
-0.07581017911434174,
-0.061470795422792435,
0.1702016443014145,
-0.11150837689638138,
-0.09083874523639679
] |
Subsets and Splits